Skip to content

Instantly share code, notes, and snippets.

@rahulg
Created September 9, 2012 14:02
Show Gist options
  • Save rahulg/3684510 to your computer and use it in GitHub Desktop.
Save rahulg/3684510 to your computer and use it in GitHub Desktop.
This nested stuff is ugly.
struct Pixel
{
union
{
struct {
uint8_t red, green, blue, alpha;
};
uint32_t raw;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment