Skip to content

Commit

Permalink
Bump dear-imgui to 1.90.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dpwiz committed Apr 15, 2024
1 parent 1b40bc1 commit 6a39044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui
Submodule imgui updated 90 files
+1 −0 .github/ISSUE_TEMPLATE/config.yml
+90 −0 .github/ISSUE_TEMPLATE/issue_template.yml
+0 −46 .github/issue_template.md
+7 −7 .github/workflows/build.yml
+1 −1 .github/workflows/static-analysis.yml
+1 −1 LICENSE.txt
+9 −6 backends/imgui_impl_allegro5.cpp
+5 −2 backends/imgui_impl_allegro5.h
+17 −12 backends/imgui_impl_android.cpp
+6 −3 backends/imgui_impl_android.h
+8 −5 backends/imgui_impl_dx10.cpp
+5 −2 backends/imgui_impl_dx10.h
+8 −5 backends/imgui_impl_dx11.cpp
+5 −2 backends/imgui_impl_dx11.h
+8 −5 backends/imgui_impl_dx12.cpp
+5 −2 backends/imgui_impl_dx12.h
+30 −5 backends/imgui_impl_dx9.cpp
+5 −2 backends/imgui_impl_dx9.h
+66 −9 backends/imgui_impl_glfw.cpp
+10 −2 backends/imgui_impl_glfw.h
+5 −2 backends/imgui_impl_glut.cpp
+5 −2 backends/imgui_impl_glut.h
+5 −2 backends/imgui_impl_metal.h
+8 −5 backends/imgui_impl_metal.mm
+9 −6 backends/imgui_impl_opengl2.cpp
+5 −2 backends/imgui_impl_opengl2.h
+37 −23 backends/imgui_impl_opengl3.cpp
+5 −2 backends/imgui_impl_opengl3.h
+14 −7 backends/imgui_impl_opengl3_loader.h
+5 −2 backends/imgui_impl_osx.h
+20 −17 backends/imgui_impl_osx.mm
+151 −54 backends/imgui_impl_sdl2.cpp
+10 −5 backends/imgui_impl_sdl2.h
+179 −72 backends/imgui_impl_sdl3.cpp
+11 −2 backends/imgui_impl_sdl3.h
+10 −6 backends/imgui_impl_sdlrenderer2.cpp
+8 −0 backends/imgui_impl_sdlrenderer2.h
+13 −10 backends/imgui_impl_sdlrenderer3.cpp
+8 −0 backends/imgui_impl_sdlrenderer3.h
+245 −161 backends/imgui_impl_vulkan.cpp
+38 −16 backends/imgui_impl_vulkan.h
+54 −26 backends/imgui_impl_wgpu.cpp
+23 −3 backends/imgui_impl_wgpu.h
+44 −5 backends/imgui_impl_win32.cpp
+5 −2 backends/imgui_impl_win32.h
+496 −3 docs/CHANGELOG.txt
+1 −1 docs/CONTRIBUTING.md
+2 −2 docs/EXAMPLES.md
+7 −12 docs/FAQ.md
+62 −32 docs/FONTS.md
+22 −18 docs/README.md
+1 −2 docs/TODO.txt
+6 −2 examples/example_allegro5/main.cpp
+6 −1 examples/example_android_opengl3/main.cpp
+6 −2 examples/example_apple_metal/main.mm
+6 −2 examples/example_apple_opengl2/main.mm
+0 −0 examples/example_emscripten_wgpu/Makefile.emscripten
+1 −1 examples/example_emscripten_wgpu/README.md
+170 −138 examples/example_emscripten_wgpu/main.cpp
+2 −2 examples/example_glfw_metal/Makefile
+6 −2 examples/example_glfw_metal/main.mm
+6 −2 examples/example_glfw_opengl2/main.cpp
+1 −1 examples/example_glfw_opengl3/Makefile.emscripten
+9 −2 examples/example_glfw_opengl3/main.cpp
+18 −43 examples/example_glfw_vulkan/main.cpp
+6 −2 examples/example_glut_opengl2/main.cpp
+12 −2 examples/example_sdl2_directx11/main.cpp
+6 −2 examples/example_sdl2_metal/main.mm
+12 −2 examples/example_sdl2_opengl2/main.cpp
+12 −2 examples/example_sdl2_opengl3/main.cpp
+11 −2 examples/example_sdl2_sdlrenderer2/main.cpp
+23 −43 examples/example_sdl2_vulkan/main.cpp
+7 −3 examples/example_sdl3_opengl3/main.cpp
+9 −5 examples/example_sdl3_sdlrenderer3/main.cpp
+6 −2 examples/example_win32_directx10/main.cpp
+6 −2 examples/example_win32_directx11/main.cpp
+6 −2 examples/example_win32_directx12/main.cpp
+6 −2 examples/example_win32_directx9/main.cpp
+14 −10 examples/example_win32_opengl3/main.cpp
+5 −3 imconfig.h
+1,602 −818 imgui.cpp
+441 −330 imgui.h
+434 −125 imgui_demo.cpp
+447 −56 imgui_draw.cpp
+439 −206 imgui_internal.h
+347 −97 imgui_tables.cpp
+542 −228 imgui_widgets.cpp
+76 −72 imstb_textedit.h
+22 −14 misc/freetype/imgui_freetype.cpp
+1 −2 misc/freetype/imgui_freetype.h

0 comments on commit 6a39044

Please sign in to comment.