Created
March 20, 2018 00:52
-
-
Save luctrudeau/458e879941d6b6ae1633bfd9d11e8591 to your computer and use it in GitHub Desktop.
Hi Color Avg No Rounding
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
uint16_t hicolor_avg(uint16_t a, uint16_t b) { | |
const uint16_t s = a ^ b; | |
return ((s & 0xF7DEU) >> 1) + (a & b); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment