Vulkan Win32 fixes

This commit is contained in:
Jack Andersen
2017-02-15 13:10:30 -10:00
parent c6d5015612
commit 9af8ec3d23
3 changed files with 56 additions and 50 deletions

View File

@@ -450,7 +450,8 @@ public:
if (m_vsyncRunning)
{
m_vsyncRunning = false;
m_vsyncThread.join();
if (m_vsyncThread.joinable())
m_vsyncThread.join();
}
m_ctx->m_windows.erase(m_parentWindow);