About 184,000 results
Open links in new tab
  1. Using std::string in ImGui::InputText (...) - Stack Overflow

    Sep 3, 2021 · If you want to use InputText() with std::string or any custom dynamic string type, see misc/cpp/imgui_stdlib.h and comments in imgui_demo.cpp. misc/cpp/imgui_stdlib.h …

  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. Undefined reference to ImGui::InputText ()? - Stack Overflow

    ImGui::InputText is defined in imgui_widgets.cpp (which is one of the files you are supposed to add) so you must have made a mistake somewhere. The web site says add all the files in the …

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

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

  6. ImGUI Popup not showing up but executing the code

    Sep 14, 2022 · I am making a program using ImGui and I want to display a PopUp if the input on one window is bad after clicking the button "OK". It enter the IF statement and …

  7. How can I render a webpage with dear ImGui c++?

    Oct 31, 2022 · ImGUI doesn't include a control to render HTML, or anything like that. If you want to badly enough, you could download the page, use something like WebKit to render it to a …

  8. How can I render an OpenGL scene into an ImGui window?

    May 4, 2017 · The picture rapresents what i want to achieve. I read, somewhere on the Internet, that you can render the fbo and pass that fbo as a texture to render into the ImGui window. …

  9. c++ - ImGui, with SDL2 Renderer, what is the point of the three ...

    Nov 5, 2023 · ImGui and its backends are modular. ImGui::NewFrame(); is to be called regardless of the used backend. ImGui_ImplSDL2_NewFrame(); is for SDL2 backend, but SDL2 supports …

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