forked from organicmaps/organicmaps-tmp
[vulkan] Fixed secondary surface reset
This commit is contained in:
parent
d86512248d
commit
2dac1c6be8
1 changed files with 5 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue