mirror of
https://github.com/FunKey-Project/picofe-irixxxx.git
synced 2026-02-06 06:55:58 +01:00
add SDL SWSURFACE support
This commit is contained in:
parent
ebcff59309
commit
2ca02b4d73
@ -123,7 +123,9 @@ int plat_sdl_change_video_mode(int w, int h, int force)
|
||||
if (plat_target.vout_method == 0) {
|
||||
SDL_PumpEvents();
|
||||
|
||||
#if defined(SDL_TRIPLEBUF) && defined(SDL_BUFFER_3X)
|
||||
#if defined SDL_SURFACE_SW
|
||||
plat_sdl_screen = SDL_SetVideoMode(w, h, 16, SDL_SWSURFACE);
|
||||
#elif defined(SDL_TRIPLEBUF) && defined(SDL_BUFFER_3X)
|
||||
plat_sdl_screen = SDL_SetVideoMode(w, h, 16, SDL_HWSURFACE | SDL_TRIPLEBUF);
|
||||
#else
|
||||
plat_sdl_screen = SDL_SetVideoMode(w, h, 16, SDL_HWSURFACE | SDL_DOUBLEBUF);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user