1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-20 08:52:22 +01:00

[d3d9] Properly destroy format conversion set and pipeline layouts

This commit is contained in:
Philip Rebohle 2024-11-03 10:53:05 +01:00 committed by Philip Rebohle
parent 54c45ef3fa
commit 778b04f39a

View File

@ -23,6 +23,9 @@ namespace dxvk {
for (auto& p : m_pipelines) for (auto& p : m_pipelines)
vk->vkDestroyPipeline(vk->device(), p, nullptr); vk->vkDestroyPipeline(vk->device(), p, nullptr);
vk->vkDestroyDescriptorSetLayout(vk->device(), m_setLayout, nullptr);
vk->vkDestroyPipelineLayout(vk->device(), m_pipelineLayout, nullptr);
} }