add some missing frees

updatetemplate
cosmonaut 2022-03-03 17:30:26 -08:00
parent 5fe4c8dbf3
commit 6302603b08
1 changed files with 3 additions and 0 deletions

View File

@ -2939,6 +2939,9 @@ static void VULKAN_INTERNAL_DestroyCommandPool(
SDL_free(commandBuffer->boundDescriptorSetDatas);
SDL_free(commandBuffer->usedBuffers);
SDL_free(commandBuffer->usedTextures);
SDL_free(commandBuffer->usedSamplers);
SDL_free(commandBuffer->usedGraphicsPipelines);
SDL_free(commandBuffer->usedComputePipelines);
SDL_free(commandBuffer);
}