diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2019-12-26 01:53:35 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2019-12-26 01:53:35 +0000 |
| commit | 75ef73514df1278ed11ec17ff35313ba6f656a38 (patch) | |
| tree | daffac0f603c2aa3aafa6a51b0449c9d6914dba4 /Imgui/src/ImGuiImplDiligent.cpp | |
| parent | Native app: added gloden image processing (diff) | |
| download | DiligentTools-75ef73514df1278ed11ec17ff35313ba6f656a38.tar.gz DiligentTools-75ef73514df1278ed11ec17ff35313ba6f656a38.zip | |
ImGuiImplDiligent: added missing call to ImGui::EndFrame
Diffstat (limited to 'Imgui/src/ImGuiImplDiligent.cpp')
| -rw-r--r-- | Imgui/src/ImGuiImplDiligent.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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()); } |
