mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-28 02:50:06 +00:00
Examples: Vulkan: Fix 7b968b098e
This commit is contained in:
parent
7b968b098e
commit
e0f283cfcb
2 changed files with 4 additions and 4 deletions
|
|
@ -528,8 +528,6 @@ static void frame_present()
|
|||
info.pImageIndices = &fd->BackbufferIndex;
|
||||
err = vkQueuePresentKHR(g_Queue, &info);
|
||||
check_vk_result(err);
|
||||
|
||||
g_FrameIndex = (g_FrameIndex + 1) % IMGUI_VK_QUEUED_FRAMES;
|
||||
}
|
||||
|
||||
int main(int, char**)
|
||||
|
|
@ -699,6 +697,7 @@ int main(int, char**)
|
|||
frame_present();
|
||||
#endif
|
||||
swap_chain_has_at_least_one_image = true;
|
||||
g_FrameIndex = (g_FrameIndex + 1) % IMGUI_VK_QUEUED_FRAMES;
|
||||
}
|
||||
|
||||
// Cleanup
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue