mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
[vulkan] Adjust shutdown order slightly
It makes more sense to shutdown the render passes before textures.
This commit is contained in:
parent
a886b9432c
commit
7b15caee04
1 changed files with 2 additions and 1 deletions
|
@ -775,9 +775,10 @@ vulkan_vid_render_shutdown (void)
|
|||
Vulkan_Scene_Shutdown (vulkan_ctx);
|
||||
Vulkan_Matrix_Shutdown (vulkan_ctx);
|
||||
|
||||
Vulkan_DestroyRenderPasses (vulkan_ctx);
|
||||
|
||||
Vulkan_Palette_Shutdown (vulkan_ctx);
|
||||
Vulkan_Texture_Shutdown (vulkan_ctx);
|
||||
Vulkan_DestroyRenderPasses (vulkan_ctx);
|
||||
|
||||
QFV_DestroyStagingBuffer (vulkan_ctx->staging);
|
||||
df->vkDestroyCommandPool (dev, vulkan_ctx->cmdpool, 0);
|
||||
|
|
Loading…
Reference in a new issue