GPU D3D12: Fix command buffer leak

This commit is contained in:
cosmonaut 2024-08-30 10:29:56 -07:00
parent b602c449e5
commit 906044569d
1 changed files with 1 additions and 0 deletions

View File

@ -1230,6 +1230,7 @@ static void D3D12_INTERNAL_DestroyCommandBuffer(D3D12CommandBuffer *commandBuffe
SDL_free(commandBuffer->usedGraphicsPipelines);
SDL_free(commandBuffer->usedComputePipelines);
SDL_free(commandBuffer->usedUniformBuffers);
SDL_free(commandBuffer->textureDownloads);
SDL_free(commandBuffer);
}