ocornut / imgui

Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
MIT License
59.75k stars 10.17k forks source link

where is imgui_impl_glfw_gl3.cpp in the latest version #7910

Closed sagoishandsome closed 1 month ago

sagoishandsome commented 1 month ago

Version/Branch of Dear ImGui:

1.91.0

Back-ends:

imgui_impl_XXX.cpp + imgui_impl_XXX.cpp

Compiler, OS:

windows11+msvc2022

Full config/build information:

No response

Details:

My Issue/Question:

XXX (please provide as much context as possible)

Screenshots/Video:

No response

Minimal, Complete and Verifiable Example code:

// Here's some code anyone can copy and paste to reproduce your issue
ImGui::Begin("Example Bug");
MoreCodeToExplainMyIssue();
ImGui::End();
ocornut commented 1 month ago

As stated in v1.62 release notes and Changelog.

before: imgui_impl_glfw_gl3.cpp    --> after: imgui_impl_glfw.cpp + imgui_impl_opengl2.cpp

Backends were split into a Renderer part and a Platform part in June 2018.

Please read to examples to know how to use backends.