Skip to content

Instantly share code, notes, and snippets.

@ziggi
Last active October 5, 2018 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziggi/36150912f5e48025b1e43d5f3f80d248 to your computer and use it in GitHub Desktop.
Save ziggi/36150912f5e48025b1e43d5f3f80d248 to your computer and use it in GitHub Desktop.
stock rgba2bgra(color)
{
return
(color & 0xFF)
| ((color & 0xFF00) << 16)
| (color & 0xFF0000)
| ((color >> 16) & 0xFF00);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment