mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Further optimize our SDL_Renderer for 8-bit by making the SDL_Texture SDL_TEXTUREACCESS_STATIC, saving some RAM without any loss of functionality.
git-svn-id: https://svn.eduke32.com/eduke32@4341 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
2aa167af01
commit
d67e977fb1
1 changed files with 1 additions and 1 deletions
|
@ -1510,7 +1510,7 @@ int32_t setvideomode(int32_t x, int32_t y, int32_t c, int32_t fs)
|
|||
else
|
||||
{
|
||||
sdl_texture = SDL_CreateTexture(sdl_renderer, SDL_PIXELFORMAT_ARGB8888,
|
||||
SDL_TEXTUREACCESS_STREAMING, x, y);
|
||||
SDL_TEXTUREACCESS_STATIC, x, y);
|
||||
if (!sdl_texture)
|
||||
{
|
||||
initprintf("Falling back to SDL_GetWindowSurface: SDL_CreateTexture failed: %s\n",
|
||||
|
|
Loading…
Reference in a new issue