
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 …
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++ - How to get mouse events to work properly with multiple ImGui ...
Oct 2, 2022 · What you want to do is create two different ImGui contexts (call two times), and also initialize the backend two times for those contexts. You will need to handle the and for two separate …
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++ DearImGUI Drag and Drop with personalized data type
Jun 28, 2024 · I'm currently struggling with dragging and dropping textures from one ImGui window to another and rendering them there. I'm storing all necessary data to render my texture in a struct …
Strange rendering issues with manual DrawList modification in ImGUI
Nov 11, 2024 · ImGui.Begin("StoryGraph", ref _open); _canvas.Begin(); ImGui.Button("Example Button!"); _canvas.End(); ImGui.End(); I'm fairly sure the issue isn't with my clipping rect's bounds. …
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 Image Fill / Imgui::Image () vs ImGui ... - Stack Overflow
May 7, 2024 · Why can't the ImGui::Image () function fill the entire screen when it displays an image in the viewport, can the ImGui::GetWindowDrawList ()->AddImage () function fill the entire screen??
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 …
Can't find source for imgui_impl_glfw.h and imgui_impl_opengl3.h
Jun 13, 2023 · 0 I did a CMake project, using ImGui and GLFW libraries, and everything works fine and run correctly. But when I try to create a new one with the same CMakeLists.txt and same including of …