From c42aaf858fdb9f4836d312dec662cf4bb95d9f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Tassoux?= Date: Wed, 22 Oct 2025 23:40:53 +0200 Subject: [PATCH] Remove extra frame index incrementation --- backends/imgui_impl_dx12.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/backends/imgui_impl_dx12.cpp b/backends/imgui_impl_dx12.cpp index 502aaeace..9cf057ff9 100644 --- a/backends/imgui_impl_dx12.cpp +++ b/backends/imgui_impl_dx12.cpp @@ -1280,7 +1280,6 @@ static void ImGui_ImplDX12_SwapBuffers(ImGuiViewport* viewport, void*) ImGui_ImplDX12_ViewportData* vd = (ImGui_ImplDX12_ViewportData*)viewport->RendererUserData; vd->SwapChain->Present(0, bd->tearingSupport ? DXGI_PRESENT_ALLOW_TEARING : 0); - vd->FrameIndex++; } void ImGui_ImplDX12_InitMultiViewportSupport()