Vulkan: Fix crash when device creation fails
This commit is contained in:
parent
1d4b5e22cb
commit
da180a1c4f
|
@ -39,7 +39,9 @@ Context::Context(VkInstance instance, VkPhysicalDevice physical_device, bool own
|
|||
|
||||
Context::~Context()
|
||||
{
|
||||
WaitForGPUIdle();
|
||||
if (m_device != VK_NULL_HANDLE)
|
||||
WaitForGPUIdle();
|
||||
|
||||
DestroyRenderPassCache();
|
||||
DestroyGlobalDescriptorPool();
|
||||
DestroyCommandBuffers();
|
||||
|
|
Loading…
Reference in New Issue