About 50 results
Open links in new tab
  1. c++ - How to correctly Install ImGui? - Stack Overflow

    Sep 17, 2020 · ImGui is a bizarre minimalist C++ windows library system that requires more than just a linker or compiler flag to sort out. Here is the github repository: I can't tell if you are using OpenGL, or …

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

  3. c++ - How to get mouse events to work properly with multiple ImGui ...

    Oct 2, 2022 · What you want to do is create two different ImGui contexts (call two times), and also initialize the backend two times for those contexts. You will need to handle the and for two separate …

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

  5. Is there a way to make the docks in imgui transparent?

    Mar 25, 2022 · When an imgui window is floating, I can make it transparent with ImGuiWindowFlags_NoBackground and render a translucent texture before the interface. However …

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

  7. What are the performance implications of using an immediate-mode …

    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, and …

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

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

  10. 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 background. expected result in this …