[vulkan] Fixed secondary surface reset

This commit is contained in:
Roman Kuznetsov 2019-05-01 21:51:15 +03:00 committed by Arsentiy Milchakov
parent d86512248d
commit 2dac1c6be8

View file

@ -348,11 +348,13 @@ bool AndroidVulkanContextFactory::QuerySurfaceSize()
void AndroidVulkanContextFactory::ResetSurface(bool allowPipelineDump)
{
CHECK(m_nativeWindow != nullptr, ());
ResetVulkanSurface(allowPipelineDump);
ANativeWindow_release(m_nativeWindow);
m_nativeWindow = nullptr;
if (m_nativeWindow != nullptr)
{
ANativeWindow_release(m_nativeWindow);
m_nativeWindow = nullptr;
}
}
void AndroidVulkanContextFactory::ResetVulkanSurface(bool allowPipelineDump)