About 50 results
Open links in new tab
  1. 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 are just letting the compiler …

  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 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 3 years, 1 month ago Modified 1 year, 9 months ago Viewed 3k times

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

  5. How do you compile ImGui on Windows vscode MinGW?

    Sep 4, 2021 · If you're using Make to build, then the VSCode task file is the wrong place to look. In your Makefile, you'll need to add ImGui's header path as an include path to your compile commands, and …

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

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

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

  9. How to correctly handle Window resizing when using ImGui?

    I am using ImGui with the aim of creating a Windows Application. One thing I have noticed and is troubling me a lot is when resizing the Window, it doesn't update the contents (buffers?) correctly,...

  10. How do I make a dockable window fill up the remaining dockspace ...

    Mar 2, 2023 · I have a simple application with 2 dockable windows in a dockspace. One is sidebar and the other is the content. I am using the docking branch of imgui How do I make the content window …