From 75ef73514df1278ed11ec17ff35313ba6f656a38 Mon Sep 17 00:00:00 2001 From: assiduous Date: Wed, 25 Dec 2019 17:53:35 -0800 Subject: ImGuiImplDiligent: added missing call to ImGui::EndFrame --- Imgui/src/ImGuiImplDiligent.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Imgui/src/ImGuiImplDiligent.cpp') diff --git a/Imgui/src/ImGuiImplDiligent.cpp b/Imgui/src/ImGuiImplDiligent.cpp index 03e3e76..26de09b 100644 --- a/Imgui/src/ImGuiImplDiligent.cpp +++ b/Imgui/src/ImGuiImplDiligent.cpp @@ -448,6 +448,7 @@ void ImGuiImplDiligent::NewFrame() void ImGuiImplDiligent::Render(IDeviceContext* pCtx) { + ImGui::EndFrame(); ImGui::Render(); m_pImpl->RenderDrawData(pCtx, ImGui::GetDrawData()); } -- cgit v1.2.3