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 …

  2. c++ - How to get mouse events to work properly with multiple …

    Oct 2, 2022 · What you want to do is create two different ImGui contexts (call ImGui::CreateContext() two times), and also initialize the backend two times for those …

  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 …

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

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

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

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

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

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

  8. c++ - ImGui custom shader using vulkan - Stack Overflow

    Sep 9, 2024 · Im making gui in imgui, using example from official repository (example_glfw_vulkan), and i encountered a problem, that i cant apply shader to my popup`s …

  9. Strange rendering issues with manual DrawList modification in …

    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 …

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