Skip to content

Commit

Permalink
Bump third_party/imgui/repo from 3c435c0 to 50de550
Browse files Browse the repository at this point in the history
Bumps [third_party/imgui/repo](https://github.com/ocornut/imgui) from `3c435c0` to `50de550`.
- [Release notes](https://github.com/ocornut/imgui/releases)
- [Commits](ocornut/imgui@3c435c0...50de550)

---
updated-dependencies:
- dependency-name: third_party/imgui/repo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 15, 2024
1 parent ac9537d commit e897029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/imgui/repo
Submodule repo updated 99 files
+1 −1 .github/FUNDING.yml
+65 −5 .github/workflows/build.yml
+12 −0 .github/workflows/manual.yml
+3 −1 .gitignore
+30 −24 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
+69 −67 backends/imgui_impl_dx10.cpp
+1 −0 backends/imgui_impl_dx10.h
+87 −74 backends/imgui_impl_dx11.cpp
+13 −0 backends/imgui_impl_dx11.h
+46 −47 backends/imgui_impl_dx12.cpp
+13 −5 backends/imgui_impl_dx12.h
+82 −72 backends/imgui_impl_dx9.cpp
+1 −0 backends/imgui_impl_dx9.h
+113 −43 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
+15 −13 backends/imgui_impl_metal.mm
+14 −7 backends/imgui_impl_opengl2.cpp
+1 −0 backends/imgui_impl_opengl2.h
+42 −34 backends/imgui_impl_opengl3.cpp
+4 −4 backends/imgui_impl_opengl3.h
+116 −16 backends/imgui_impl_opengl3_loader.h
+2 −0 backends/imgui_impl_osx.h
+23 −9 backends/imgui_impl_osx.mm
+75 −21 backends/imgui_impl_sdl2.cpp
+1 −0 backends/imgui_impl_sdl2.h
+179 −105 backends/imgui_impl_sdl3.cpp
+3 −3 backends/imgui_impl_sdl3.h
+39 −30 backends/imgui_impl_sdlrenderer2.cpp
+11 −1 backends/imgui_impl_sdlrenderer2.h
+65 −31 backends/imgui_impl_sdlrenderer3.cpp
+13 −1 backends/imgui_impl_sdlrenderer3.h
+44 −36 backends/imgui_impl_vulkan.cpp
+31 −16 backends/imgui_impl_vulkan.h
+60 −17 backends/imgui_impl_wgpu.cpp
+19 −1 backends/imgui_impl_wgpu.h
+72 −42 backends/imgui_impl_win32.cpp
+1 −0 backends/imgui_impl_win32.h
+22 −22 docs/BACKENDS.md
+751 −9 docs/CHANGELOG.txt
+10 −43 docs/EXAMPLES.md
+62 −28 docs/FAQ.md
+5 −1 docs/FONTS.md
+14 −14 docs/README.md
+11 −15 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
+1 −1 examples/example_glfw_vulkan/CMakeLists.txt
+2 −2 examples/example_glfw_vulkan/build_win32.bat
+2 −2 examples/example_glfw_vulkan/build_win64.bat
+4 −4 examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj
+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
+1 −1 examples/example_sdl2_vulkan/build_win32.bat
+5 −5 examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj
+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
+1 −2 examples/example_win32_directx12/build_win32.bat
+5 −5 examples/example_win32_directx12/example_win32_directx12.vcxproj
+15 −6 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
+2,011 −867 imgui.cpp
+665 −247 imgui.h
+2,263 −445 imgui_demo.cpp
+86 −38 imgui_draw.cpp
+484 −514 imgui_internal.h
+188 −101 imgui_tables.cpp
+1,875 −552 imgui_widgets.cpp
+64 −36 imstb_textedit.h
+1 −1 imstb_truetype.h
+5 −4 misc/freetype/imgui_freetype.cpp

0 comments on commit e897029

Please sign in to comment.