mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
GNAP: Simplify transparency handling on BE systems
This commit is contained in:
parent
39cbfbb03f
commit
a7bd346f2d
@ -249,11 +249,7 @@ void GameSys::drawSpriteToBackground(int x, int y, int resourceId) {
|
||||
Graphics::Surface *GameSys::allocSurface(int width, int height) {
|
||||
Graphics::Surface *surface = new Graphics::Surface();
|
||||
surface->create(width, height, _backgroundSurface->format);
|
||||
#if defined(SCUMM_BIG_ENDIAN)
|
||||
surface->fillRect(Common::Rect(0, 0, surface->w, surface->h), 0x00FFFFFF);
|
||||
#else
|
||||
surface->fillRect(Common::Rect(0, 0, surface->w, surface->h), 0xFFFFFF00);
|
||||
#endif
|
||||
return surface;
|
||||
}
|
||||
|
||||
@ -646,9 +642,9 @@ void GameSys::blitSurface32(Graphics::Surface *destSurface, int x, int y, Graphi
|
||||
byte *rsrc = src;
|
||||
byte *rdst = dst;
|
||||
for (int xc = 0; xc < width; ++xc) {
|
||||
uint32 pixel = READ_LE_UINT32(rsrc);
|
||||
uint32 pixel = READ_UINT32(rsrc);
|
||||
if (!transparent || pixel != 0xFFFFFF00)
|
||||
WRITE_LE_UINT32(rdst, pixel);
|
||||
WRITE_UINT32(rdst, pixel);
|
||||
rsrc += 4;
|
||||
rdst += 4;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user