Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ThirdParty/UI/imgui
Submodule imgui updated 61 files
+10 −4 backends/imgui_impl_allegro5.cpp
+1 −0 backends/imgui_impl_allegro5.h
+13 −7 backends/imgui_impl_dx10.cpp
+2 −2 backends/imgui_impl_dx10.h
+15 −8 backends/imgui_impl_dx11.cpp
+2 −2 backends/imgui_impl_dx11.h
+21 −12 backends/imgui_impl_dx12.cpp
+56 −48 backends/imgui_impl_dx9.cpp
+12 −1 backends/imgui_impl_glfw.cpp
+2 −0 backends/imgui_impl_metal.h
+51 −43 backends/imgui_impl_metal.mm
+64 −38 backends/imgui_impl_opengl2.cpp
+1 −0 backends/imgui_impl_opengl2.h
+185 −140 backends/imgui_impl_opengl3.cpp
+2 −2 backends/imgui_impl_sdl2.cpp
+3 −3 backends/imgui_impl_sdl3.cpp
+28 −14 backends/imgui_impl_sdlgpu3.cpp
+0 −3 backends/imgui_impl_sdlgpu3.h
+47 −39 backends/imgui_impl_sdlrenderer2.cpp
+2 −1 backends/imgui_impl_sdlrenderer2.h
+53 −38 backends/imgui_impl_sdlrenderer3.cpp
+1 −1 backends/imgui_impl_sdlrenderer3.h
+189 −105 backends/imgui_impl_vulkan.cpp
+11 −8 backends/imgui_impl_vulkan.h
+51 −34 backends/imgui_impl_wgpu.cpp
+3 −3 backends/imgui_impl_win32.cpp
+3 −2 backends/vulkan/glsl_shader.frag
+2 −2 docs/BACKENDS.md
+77 −1 docs/CHANGELOG.txt
+4 −4 examples/example_allegro5/example_allegro5.vcxproj
+4 −4 examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj
+4 −4 examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj
+4 −4 examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj
+2 −1 examples/example_glfw_vulkan/main.cpp
+4 −4 examples/example_glut_opengl2/example_glut_opengl2.vcxproj
+5 −4 examples/example_null/example_null.vcxproj
+4 −4 examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj
+4 −4 examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj
+4 −4 examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj
+5 −5 examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj
+5 −5 examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj
+2 −1 examples/example_sdl2_vulkan/main.cpp
+4 −4 examples/example_sdl3_directx11/example_sdl3_directx11.vcxproj
+4 −4 examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj
+5 −5 examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj
+4 −4 examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj
+4 −4 examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj
+2 −1 examples/example_sdl3_vulkan/main.cpp
+4 −4 examples/example_win32_directx10/example_win32_directx10.vcxproj
+5 −4 examples/example_win32_directx11/example_win32_directx11.vcxproj
+4 −4 examples/example_win32_directx9/example_win32_directx9.vcxproj
+4 −4 examples/example_win32_opengl3/example_win32_opengl3.vcxproj
+5 −4 examples/example_win32_vulkan/example_win32_vulkan.vcxproj
+2 −1 examples/example_win32_vulkan/main.cpp
+37 −17 imgui.cpp
+14 −11 imgui.h
+10 −3 imgui_demo.cpp
+6 −1 imgui_draw.cpp
+8 −1 imgui_internal.h
+5 −0 imgui_tables.cpp
+93 −34 imgui_widgets.cpp
Loading