About 50 results
Open links in new tab
  1. How to right align text in ImGui Columns? - Stack Overflow

    Sep 22, 2019 · How to right align text in ImGui Columns? Ask Question Asked 6 years, 6 months ago Modified 3 years, 1 month ago

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

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

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

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

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

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

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

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

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