About 50 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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

  4. 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 …

  5. 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 …

  6. How to compile imgui source files using gcc - Stack Overflow

    Mar 19, 2022 · How do you compile imgui source files with gcc According to build_win32 in one of the examples in the repo @REM Build for Visual Studio compiler. Run your copy of vcvars32.bat or …

  7. 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??

  8. Using std::string in ImGui::InputText (...) - Stack Overflow

    Sep 3, 2021 · The call to ImGui::InputText() takes a char array which I need to initialise from a std::string and then transfer the contents back to the std::string. In it's simplest form:

  9. 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 …

  10. 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