Skip to content
Merged
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 source/frontends/sdl/imgui/imgui
Submodule imgui updated 68 files
+3 −4 .gitignore
+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
+53 −44 backends/imgui_impl_dx9.cpp
+12 −1 backends/imgui_impl_glfw.cpp
+83 −53 backends/imgui_impl_metal.mm
+61 −34 backends/imgui_impl_opengl2.cpp
+1 −0 backends/imgui_impl_opengl2.h
+181 −136 backends/imgui_impl_opengl3.cpp
+8 −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 −38 backends/imgui_impl_sdlrenderer2.cpp
+2 −0 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
+73 −36 backends/imgui_impl_wgpu.cpp
+3 −3 backends/imgui_impl_win32.cpp
+3 −2 backends/vulkan/glsl_shader.frag
+2 −2 docs/BACKENDS.md
+191 −0 docs/CHANGELOG.txt
+17 −0 docs/SECURITY.md
+13 −29 docs/TODO.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
+23 −0 examples/example_glfw_wgpu/CMakeLists.txt
+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
+23 −0 examples/example_sdl2_wgpu/CMakeLists.txt
+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
+23 −0 examples/example_sdl3_wgpu/CMakeLists.txt
+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
+2 −2 examples/imgui_examples.sln
+171 −80 imgui.cpp
+46 −29 imgui.h
+155 −47 imgui_demo.cpp
+107 −72 imgui_draw.cpp
+22 −6 imgui_internal.h
+50 −27 imgui_tables.cpp
+256 −104 imgui_widgets.cpp
+24 −13 misc/freetype/imgui_freetype.cpp
Loading