-
-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Closed
Description
Version/Branch of Dear ImGui:
Version: 1.87
Branch: master
Back-end/Renderer/Compiler/OS
Back-ends: imgui_impl_win32.cpp + imgui_impl_dx9.cpp
Operating System: Windows 10
My Issue/Question:
Upgrading ImGui from version 1.80 to 1.87 introduced my application to deadlock in some "external code: Category IO | Kernel"
I was not able to pinpoint what actualy causes it.
Downgrading back to 1.80 resolves this issue
Steps to reproduce:
Click into demo widget inputtext, write text, click somewhere else inside or outside the imgui window
Cant reproduce on example_win32_directx9 v1.87
ImGui testcode was simply:
ImGui_ImplDX9_NewFrame();
ImGui_ImplWin32_NewFrame();
ImGui::NewFrame();
bool bopen = true;
ImGui::ShowDemoWindow(&bopen);
ImGui::EndFrame();
ImGui::Render();
ImGui_ImplDX9_RenderDrawData(ImGui::GetDrawData());