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

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

  4. 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 texture in a struct …

  5. Trouble Including ImGui in C++ Project with CMake

    Mar 25, 2024 · The path imgui/imgui.h which you use in #include statement is valid when it is evaluated relative to the root directory of your project, That is, you need to add root directory as include one. …

  6. How do I properly draw an ImPlots plot into a imgui-node-editor node?

    Feb 19, 2025 · How do I properly draw an ImPlots plot into a imgui-node-editor node? Asked 11 months ago Modified 11 months ago Viewed 440 times

  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 vcvars32.bat or …

  8. Are there any basic immediate mode gui tutorials?

    Aug 3, 2018 · The Dear ImGui readme has a couple of references: The Immediate Mode GUI paradigm may at first appear unusual to some users. This is mainly because "Retained Mode" GUIs have been …

  9. 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) and only …

  10. Strange rendering issues with manual DrawList modification in ImGUI

    Nov 11, 2024 · ImGui.Begin("StoryGraph", ref _open); _canvas.Begin(); ImGui.Button("Example Button!"); _canvas.End(); ImGui.End(); I'm fairly sure the issue isn't with my clipping rect's bounds. …