About 166,000 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 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 …

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

    Dec 13, 2022 · I've directly used the source code of ImGui before to run the main.cpp successfully. It's my first time to use vcpkg and ImGui, but it seems that the lib missed something.

  4. How to right align text in ImGui Columns? - Stack Overflow

    Sep 22, 2019 · How to right align text in ImGui Columns? Asked 6 years, 3 months ago Modified 2 years, 10 months ago Viewed 20k times

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

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

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

  8. Why is there a difference of vertical offset between two ImGUI Text ...

    Jul 24, 2024 · I tried to display the current position of the player using ImGUI but there is a difference in the position of labels although they were all instanciated the same way and I don't …

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

  10. C++ DearImGUI Drag and Drop with personalized data type

    Jun 28, 2024 · I'm currently struggling with dragging and dropping textures from one ImGui window to another and rendering them there. I'm storing all necessary data to render my …