约 50 个结果
在新选项卡中打开链接
  1. How to right align text in ImGui Columns? - Stack Overflow

    2019年9月22日 · How to right align text in ImGui Columns? Asked 6 years, 6 months ago Modified 3 years, 1 month ago Viewed 20k times

  2. c++ - How to correctly Install ImGui? - Stack Overflow

    2020年9月17日 · 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, …

  3. GLFW & ImGui: Creating ImGui controls from thread other than main

    2019年8月1日 · 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 …

  4. c++ - ImGui is not being displayed - Stack Overflow

    2017年7月21日 · 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.

  5. Installing Dear ImGui with vcpkg on Windows 10 - Stack Overflow

    2021年12月7日 · 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 …

  6. c++ - How to get mouse events to work properly with multiple ImGui ...

    2022年10月2日 · This question shows research effort; it is useful and clear

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

    2021年9月3日 · 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:

  8. c++ - ImGui custom shader using vulkan - Stack Overflow

    2024年9月9日 · 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 …

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

    2022年3月19日 · 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 …

  10. ImGUI Popup not showing up but executing the code

    2022年9月14日 · 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 …