mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-01 07:28:30 +00:00
Fix LRU when destroying texture.
This commit is contained in:
@@ -534,7 +534,7 @@ PSP_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
||||
PSP_TextureData* psp_texture = (PSP_TextureData*) SDL_calloc(1, sizeof(*psp_texture));
|
||||
|
||||
if(!psp_texture)
|
||||
return -1;
|
||||
return SDL_OutOfMemory();
|
||||
|
||||
psp_texture->swizzled = SDL_FALSE;
|
||||
psp_texture->width = texture->w;
|
||||
@@ -1295,6 +1295,7 @@ PSP_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
||||
if(psp_texture == 0)
|
||||
return;
|
||||
|
||||
LRUTargetRemove(renderdata, psp_texture);
|
||||
TextureStorageFree(psp_texture->data);
|
||||
SDL_free(psp_texture);
|
||||
texture->driverdata = NULL;
|
||||
|
Reference in New Issue
Block a user