Since we define alpha value 255 to mean 'opaque', or T::kAlphaMask into the result of RGBToColor

svn-id: r21968
This commit is contained in:
Max Horn 2006-04-17 10:44:02 +00:00
parent fe9f60e219
commit d7944e839b

View File

@ -219,7 +219,8 @@ struct ColorMasks<8888> {
template<class T>
uint32 RGBToColor(uint8 r, uint8 g, uint8 b) {
return ((r << T::kRedShift) & T::kRedMask) |
return T::kAlphaMask |
((r << T::kRedShift) & T::kRedMask) |
((g << T::kGreenShift) & T::kGreenMask) |
((b << T::kBlueShift) & T::kBlueMask);
}