ocornut / imgui

Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
MIT License
58.87k stars 10.05k forks source link

Misbehaving GUI when i through libigl to use imgui #7606

Open WhyNot134 opened 3 months ago

WhyNot134 commented 3 months ago

Version/Branch of Dear ImGui:

Version 1.90, Branch: master (master/docking/etc.)

Back-ends:

imgui_impl_glfw.cpp + imgui_impl_opengl3.cpp

Compiler, OS:

Windows10 + MSVC2019

Full config/build information:

No response

Details:

Menu is drawn fine in the libigl EXAMPLE 106 but problem comes when I interact with the window.

Using latest versions of libigl, imgui etc.

Screenshots/Video:

https://github.com/ocornut/imgui/assets/105153489/7fa7821c-1b93-4478-8e1c-bebd23b8a892

https://github.com/ocornut/imgui/assets/105153489/8ce591ff-a476-484e-a5bb-64dbd7a66fc2

Minimal, Complete and Verifiable Example code:

// Here's some code anyone can copy and paste to reproduce your issue
ImGui::Begin("Example Bug");
MoreCodeToExplainMyIssue();
ImGui::End();
ocornut commented 3 months ago

I have no idea what igl is nor what the code looks like.

GamingMinds-DanielC commented 2 months ago

Since you didn't post any code, I have to assume that the problem occurs with unmodified example sources from the libigl project. I'm not familiar with libigl, but it looks like this issue would be better located in that projects issue section.

wenduof commented 1 month ago

It seems like I have the same issue as the details part described above. env: Ubuntu 22.04 + latest libigl + imgui 1.90.8. when I revert imgui version to 1.86, the issue disappears.