mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 14:43:20 +00:00
GPU: Fix memory leak in Vulkan command buffer
This commit is contained in:
parent
0a54fdb862
commit
aeb4309c0e
1 changed files with 2 additions and 0 deletions
|
|
@ -3179,7 +3179,9 @@ static void VULKAN_INTERNAL_DestroyCommandPool(
|
|||
SDL_free(commandBuffer->waitSemaphores);
|
||||
SDL_free(commandBuffer->signalSemaphores);
|
||||
SDL_free(commandBuffer->usedBuffers);
|
||||
SDL_free(commandBuffer->buffersUsedInPendingTransfers);
|
||||
SDL_free(commandBuffer->usedTextures);
|
||||
SDL_free(commandBuffer->texturesUsedInPendingTransfers);
|
||||
SDL_free(commandBuffer->usedSamplers);
|
||||
SDL_free(commandBuffer->usedGraphicsPipelines);
|
||||
SDL_free(commandBuffer->usedComputePipelines);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue