More work on pixel operations

This commit is contained in:
Joshua Granick
2015-07-21 10:08:29 -07:00
parent 07db467ab6
commit d6750818fc
5 changed files with 173 additions and 106 deletions

View File

@@ -189,6 +189,13 @@ namespace lime {
}
inline bool operator == (RGBA& rgba) {
return (a == rgba.a && r == rgba.r && g == rgba.g && b == rgba.b);
}
unsigned char r;
unsigned char g;
unsigned char b;