Skip to content

Commit 507cdba

Browse files
committed
Backends: Vulkan: vkQueuePresentKHR() returning VK_SUBOPTIMAL_KHR keeps moving forward. (ocornut#7825)
1 parent 015186a commit 507cdba

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

backends/imgui_impl_vulkan.cpp

+3-7
Original file line numberDiff line numberDiff line change
@@ -1968,15 +1968,11 @@ static void ImGui_ImplVulkan_SwapBuffers(ImGuiViewport* viewport, void*)
19681968
info.pImageIndices = &present_index;
19691969
err = vkQueuePresentKHR(v->Queue, &info);
19701970
if (err == VK_ERROR_OUT_OF_DATE_KHR || err == VK_SUBOPTIMAL_KHR)
1971-
{
19721971
vd->SwapChainNeedRebuild = true;
1973-
if (err == VK_ERROR_OUT_OF_DATE_KHR)
1974-
return;
1975-
}
1976-
else
1977-
{
1972+
if (err == VK_ERROR_OUT_OF_DATE_KHR)
1973+
return;
1974+
if (err != VK_SUBOPTIMAL_KHR)
19781975
check_vk_result(err);
1979-
}
19801976
wd->SemaphoreIndex = (wd->SemaphoreIndex + 1) % wd->SemaphoreCount; // Now we can use the next set of semaphores
19811977
}
19821978

0 commit comments

Comments
 (0)