Skip to content

Instantly share code, notes, and snippets.

@lgarczyn
Created August 10, 2016 08:39
Show Gist options
  • Save lgarczyn/74f06e180f9edd1117213a3a0541c6dc to your computer and use it in GitHub Desktop.
Save lgarczyn/74f06e180f9edd1117213a3a0541c6dc to your computer and use it in GitHub Desktop.
unsigned int color_average(unsigned int a, unsigned int b)
{
unsigned int r = ((a & 0xFF0000 + b & 0xFF0000) >> 1) & 0xFF0000;
unsigned int g = ((a & 0x00FF00 + b & 0x00FF00) >> 1) & 0x00FF00;
unsigned int b = ((a & 0x0000FF + b & 0x0000FF) >> 1) & 0x0000FF;
return r | g | b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment