-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc9b754
commit 299ed15
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule imgui
updated
30 files
+2 −2 | .github/workflows/build.yml | |
+2 −1 | .gitignore | |
+21 −22 | backends/imgui_impl_opengl3.cpp | |
+3 −3 | backends/imgui_impl_opengl3.h | |
+7 −1 | backends/imgui_impl_sdl3.cpp | |
+1 −1 | backends/imgui_impl_sdl3.h | |
+8 −6 | backends/imgui_impl_vulkan.cpp | |
+9 −2 | backends/imgui_impl_vulkan.h | |
+1 −1 | backends/imgui_impl_wgpu.cpp | |
+36 −19 | backends/imgui_impl_win32.cpp | |
+2 −2 | docs/BACKENDS.md | |
+41 −0 | docs/CHANGELOG.txt | |
+2 −2 | docs/EXAMPLES.md | |
+2 −2 | docs/FAQ.md | |
+2 −2 | docs/README.md | |
+17 −7 | examples/example_glfw_vulkan/main.cpp | |
+100 −0 | examples/example_glfw_wgpu/CMakeLists.txt | |
+0 −0 | examples/example_glfw_wgpu/Makefile.emscripten | |
+2 −2 | examples/example_glfw_wgpu/README.md | |
+82 −18 | examples/example_glfw_wgpu/main.cpp | |
+5 −1 | examples/example_glfw_wgpu/web/index.html | |
+17 −7 | examples/example_sdl2_vulkan/main.cpp | |
+1 −1 | examples/example_sdl3_sdlrenderer3/main.cpp | |
+42 −20 | imgui.cpp | |
+4 −4 | imgui.h | |
+1 −1 | imgui_demo.cpp | |
+5 −3 | imgui_draw.cpp | |
+1 −1 | imgui_internal.h | |
+1 −1 | imgui_tables.cpp | |
+3 −3 | imgui_widgets.cpp |