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

  2. c++ - How to use ImGui, GLFW and OpenGL with vcpkg, Clion and …

    Dec 13, 2022 · How to use ImGui, GLFW and OpenGL with vcpkg, Clion and CMake on Windows 11 Asked 2 years, 11 months ago Modified 1 year, 7 months ago Viewed 3k times

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

    Sep 17, 2020 · The problem seem to be a missing linking step, you need to tell your compilation/linking process to link to imgui library. When you include a header in C/C++ you …

  4. c++ - How to use vulkan with imgui? - Stack Overflow

    Jan 6, 2025 · I want to ues vulkan with imgui, but encounter some problems. The details are as follows. Use glfw. I create renderpass with two subpass to render 3d object and imGui. The …

  5. imgui - How to center align text horizontally? - Stack Overflow

    Nov 2, 2020 · 11 I am creating a text in ImGui. It automatically aligns right, how do I make just that one text align in the center? ImGui::Text("Example Text"); I don't believe there is a function to …

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

  7. Remove the parent default window in ImGui - Stack Overflow

    Dec 29, 2022 · I used one of the examples from ImGui source code (D3d11), I want to remove the ugly default host window that has the title "Dear ImGui DirectX11 Example" (image attached) …

  8. Undefined reference to ImGui::InputText ()? - Stack Overflow

    ImGui::InputText is defined in imgui_widgets.cpp (which is one of the files you are supposed to add) so you must have made a mistake somewhere. The web site says add all the files in the …

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

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