mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
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:
parent
fe9f60e219
commit
d7944e839b
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user