
c++ - How to correctly Install ImGui? - Stack Overflow
Sep 17, 2020 · ImGui is a bizarre minimalist C++ windows library system that requires more than just a linker or compiler flag to sort out. Here is the github repository: I can't tell if you are using OpenGL, or …
Installing Dear ImGui with vcpkg on Windows 10 - Stack Overflow
Dec 7, 2021 · I installed Dear ImGui on Windows 10 with this command: vcpkg install imgui:x64-windows which installs only: imgui[core]:x64-windows -> 1.85 I suspect that I need to add one or …
c++ - How to get mouse events to work properly with multiple ImGui ...
Oct 2, 2022 · This question shows research effort; it is useful and clear
GLFW & ImGui: Creating ImGui controls from thread other than main
Aug 1, 2019 · In the specific case of Dear ImGui, you can use the multi-viewport features in the 'docking' branch which natively support extracting any dear imgui windows outside the main viewport and …
ImGUI Popup not showing up but executing the code
Sep 14, 2022 · I am making a program using ImGui and I want to display a PopUp if the input on one window is bad after clicking the button "OK". It enter the IF statement and execute the code but the …
c++ - ImGui custom shader using vulkan - Stack Overflow
Sep 9, 2024 · Im making gui in imgui, using example from official repository (example_glfw_vulkan), and i encountered a problem, that i cant apply shader to my popup`s background. expected result in this …
ImGui sample code/basic initialisation not working (Windows and Linux)
Dec 28, 2020 · So now when I compile and run, it gets to the ImGui::Begin() and then crashes at that stage. I have tried it in a much smaller example where it is just the ImGui::Begin() and ImGui::End() …
c++ - ImGui is not being displayed - Stack Overflow
Jul 21, 2017 · The problem you're running into is that ImGui maintains a global state and that this state has to be kept somewhere. ImGui keeps it around in a module-local global symbol.
c++ - ImGui without Window? - Stack Overflow
Dec 18, 2021 · Is it possible to create an ImGui screen without a background or window? It would just be the ImGui window that can be dragged across the screen. It would looks something like this, but …
How do I handle mouse events in general in Imgui with glfw?
Mar 30, 2022 · How do I handle mouse events in general in Imgui with glfw? Asked 4 years ago Modified 2 years, 6 months ago Viewed 17k times