mirror of
https://github.com/libsdl-org/SDL.git
synced 2024-11-23 02:43:30 +08:00
test: Make blit_testExampleApplicationRender work on big endian
Changed image data pixel format to BGRA32.
This commit is contained in:
parent
c9ffa3f9e1
commit
e159bcf5de
@ -2374,7 +2374,7 @@ SDL_Surface *SDLTest_ImageBlendingBackground(void)
|
||||
SDL_Surface *surface = SDL_CreateSurfaceFrom(
|
||||
SDLTest_imageRainbowBackground.width,
|
||||
SDLTest_imageRainbowBackground.height,
|
||||
SDL_PIXELFORMAT_ARGB8888,
|
||||
SDL_PIXELFORMAT_BGRA32,
|
||||
(void *)SDLTest_imageRainbowBackground.pixel_data,
|
||||
SDLTest_imageRainbowBackground.width * SDLTest_imageRainbowBackground.bytes_per_pixel);
|
||||
return surface;
|
||||
@ -2548,7 +2548,7 @@ SDL_Surface *SDLTest_ImageBlendingSprite(void)
|
||||
SDL_Surface *surface = SDL_CreateSurfaceFrom(
|
||||
SDLTest_imageTransparentSprite.width,
|
||||
SDLTest_imageTransparentSprite.height,
|
||||
SDL_PIXELFORMAT_ARGB8888,
|
||||
SDL_PIXELFORMAT_BGRA32,
|
||||
(void *)SDLTest_imageTransparentSprite.pixel_data,
|
||||
SDLTest_imageTransparentSprite.width * SDLTest_imageTransparentSprite.bytes_per_pixel);
|
||||
return surface;
|
||||
|
Loading…
Reference in New Issue
Block a user