Created
August 10, 2016 08:39
-
-
Save lgarczyn/74f06e180f9edd1117213a3a0541c6dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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