Huge Vulkan refactor

This commit is contained in:
Jack Andersen
2018-05-21 21:48:13 -10:00
parent eaff1ba744
commit 721d10919b
7 changed files with 10064 additions and 820 deletions

View File

@@ -538,7 +538,13 @@ public:
}
m_callback.appQuitting(this);
clientThread.join();
if (clientThread.joinable())
clientThread.join();
#if BOO_HAS_VULKAN
g_VulkanContext.destroyDevice();
#endif
return clientReturn;
}