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

  2. imgui - How do you open a file explorer dialogue in C++ ... - Stack ...

    Jul 31, 2021 · I'm developing a desktop application with ImGui in C++, and I need the user to be able to search for a file on their machine with a file explorer. It was extremely easy to do with …

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

    Jul 21, 2017 · Comment from the ImGui code: // Default context storage + current context pointer. Implicitely used by all // ImGui functions. Always assumed to be != NULL. Change to a …

  4. Building imgui with cmake, vcpkg.json and glfw(linking error)

    Sep 4, 2023 · I have been trying to build imgui and glfw for my application using vcpkg and cmake. I am following an example available with sdl2 and imgui, I am getting linking errors …

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

  6. What are the performance implications of using an immediate …

    Nov 23, 2017 · Overall, imgui is a completely viable approach to creating a GUI that responds fast and does not drain the battery. I created a Spotify clone with about 50% of the UI elements, …

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

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

  9. How do I make a dockable window fill up the remaining …

    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 …

  10. Zoom in and out centered about the mouse cursor in 2D using …

    Jan 2, 2025 · I have a 2D canvas used in a ImGUI context, that requires Zoom and Pan functionality. Currently the Pan functionality works fine. However the zoom functionality does …