Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump third_party/imgui/repo from 3c435c0 to 29cff2b #251

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 third_party/imgui/repo
Submodule repo updated 92 files
+1 −1 .github/FUNDING.yml
+65 −5 .github/workflows/build.yml
+12 −0 .github/workflows/manual.yml
+1 −1 .github/workflows/static-analysis.yml
+3 −1 .gitignore
+16 −10 backends/imgui_impl_allegro5.cpp
+1 −0 backends/imgui_impl_allegro5.h
+2 −0 backends/imgui_impl_android.cpp
+1 −0 backends/imgui_impl_android.h
+2 −1 backends/imgui_impl_dx10.cpp
+1 −0 backends/imgui_impl_dx10.h
+2 −1 backends/imgui_impl_dx11.cpp
+1 −0 backends/imgui_impl_dx11.h
+2 −1 backends/imgui_impl_dx12.cpp
+2 −0 backends/imgui_impl_dx12.h
+2 −1 backends/imgui_impl_dx9.cpp
+1 −0 backends/imgui_impl_dx9.h
+112 −42 backends/imgui_impl_glfw.cpp
+7 −2 backends/imgui_impl_glfw.h
+1 −0 backends/imgui_impl_glut.cpp
+1 −0 backends/imgui_impl_glut.h
+2 −0 backends/imgui_impl_metal.h
+5 −3 backends/imgui_impl_metal.mm
+5 −1 backends/imgui_impl_opengl2.cpp
+1 −0 backends/imgui_impl_opengl2.h
+29 −24 backends/imgui_impl_opengl3.cpp
+4 −4 backends/imgui_impl_opengl3.h
+110 −16 backends/imgui_impl_opengl3_loader.h
+2 −0 backends/imgui_impl_osx.h
+23 −9 backends/imgui_impl_osx.mm
+74 −20 backends/imgui_impl_sdl2.cpp
+1 −0 backends/imgui_impl_sdl2.h
+178 −104 backends/imgui_impl_sdl3.cpp
+3 −3 backends/imgui_impl_sdl3.h
+21 −23 backends/imgui_impl_sdlrenderer2.cpp
+2 −1 backends/imgui_impl_sdlrenderer2.h
+47 −24 backends/imgui_impl_sdlrenderer3.cpp
+4 −1 backends/imgui_impl_sdlrenderer3.h
+12 −9 backends/imgui_impl_vulkan.cpp
+10 −3 backends/imgui_impl_vulkan.h
+35 −3 backends/imgui_impl_wgpu.cpp
+9 −1 backends/imgui_impl_wgpu.h
+71 −41 backends/imgui_impl_win32.cpp
+1 −0 backends/imgui_impl_win32.h
+22 −22 docs/BACKENDS.md
+654 −9 docs/CHANGELOG.txt
+10 −43 docs/EXAMPLES.md
+42 −9 docs/FAQ.md
+5 −1 docs/FONTS.md
+13 −13 docs/README.md
+9 −12 docs/TODO.txt
+1 −1 examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml
+1 −1 examples/example_android_opengl3/main.cpp
+5 −0 examples/example_glfw_opengl2/main.cpp
+6 −1 examples/example_glfw_opengl3/main.cpp
+29 −17 examples/example_glfw_vulkan/main.cpp
+117 −0 examples/example_glfw_wgpu/CMakeLists.txt
+0 −0 examples/example_glfw_wgpu/Makefile.emscripten
+2 −2 examples/example_glfw_wgpu/README.md
+88 −19 examples/example_glfw_wgpu/main.cpp
+5 −1 examples/example_glfw_wgpu/web/index.html
+1 −1 examples/example_null/Makefile
+5 −0 examples/example_sdl2_directx11/main.cpp
+5 −0 examples/example_sdl2_opengl2/main.cpp
+5 −0 examples/example_sdl2_opengl3/main.cpp
+7 −2 examples/example_sdl2_sdlrenderer2/main.cpp
+29 −17 examples/example_sdl2_vulkan/main.cpp
+3 −3 examples/example_sdl3_opengl3/Makefile
+3 −3 examples/example_sdl3_opengl3/README.md
+7 −5 examples/example_sdl3_opengl3/main.cpp
+3 −3 examples/example_sdl3_sdlrenderer3/Makefile
+13 −7 examples/example_sdl3_sdlrenderer3/main.cpp
+14 −2 examples/example_win32_directx10/main.cpp
+13 −2 examples/example_win32_directx11/main.cpp
+15 −2 examples/example_win32_directx12/main.cpp
+18 −4 examples/example_win32_directx9/main.cpp
+8 −0 examples/example_win32_opengl3/build_mingw.bat
+5 −0 examples/example_win32_opengl3/main.cpp
+20 −0 examples/imgui_examples.sln
+4 −3 examples/libs/emscripten/emscripten_mainloop_stub.h
+1 −1 examples/libs/usynergy/uSynergy.h
+9 −4 imconfig.h
+1,883 −823 imgui.cpp
+616 −227 imgui.h
+2,247 −441 imgui_demo.cpp
+58 −36 imgui_draw.cpp
+476 −510 imgui_internal.h
+187 −100 imgui_tables.cpp
+1,818 −530 imgui_widgets.cpp
+64 −36 imstb_textedit.h
+1 −1 imstb_truetype.h
+5 −4 misc/freetype/imgui_freetype.cpp
Loading