We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381daf0 commit 9705e62Copy full SHA for 9705e62
guide/src/rendering/dynamic_rendering.md
@@ -175,8 +175,7 @@ void App::submit_and_present() {
175
// framebuffer size does not match the Swapchain image size, check it
176
// explicitly.
177
auto const fb_size_changed = m_framebuffer_size != m_swapchain->get_size();
178
- auto const out_of_date =
179
- !m_swapchain->present(m_queue, *render_sync.present);
+ auto const out_of_date = !m_swapchain->present(m_queue);
180
if (fb_size_changed || out_of_date) {
181
m_swapchain->recreate(m_framebuffer_size);
182
}
0 commit comments