Skip to content

Commit

Permalink
imGui: Update to v1.90.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joel16 committed May 11, 2024
1 parent 1bae5c4 commit 7188576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/imgui
Submodule imgui updated 97 files
+1 −0 .github/ISSUE_TEMPLATE/config.yml
+90 −0 .github/ISSUE_TEMPLATE/issue_template.yml
+0 −46 .github/issue_template.md
+10 −10 .github/workflows/build.yml
+1 −1 .github/workflows/static-analysis.yml
+3 −3 .gitignore
+1 −1 LICENSE.txt
+19 −10 backends/imgui_impl_allegro5.cpp
+8 −2 backends/imgui_impl_allegro5.h
+22 −12 backends/imgui_impl_android.cpp
+10 −3 backends/imgui_impl_android.h
+14 −6 backends/imgui_impl_dx10.cpp
+9 −3 backends/imgui_impl_dx10.h
+14 −6 backends/imgui_impl_dx11.cpp
+9 −3 backends/imgui_impl_dx11.h
+14 −6 backends/imgui_impl_dx12.cpp
+8 −2 backends/imgui_impl_dx12.h
+36 −6 backends/imgui_impl_dx9.cpp
+9 −3 backends/imgui_impl_dx9.h
+78 −20 backends/imgui_impl_glfw.cpp
+13 −2 backends/imgui_impl_glfw.h
+10 −2 backends/imgui_impl_glut.cpp
+9 −3 backends/imgui_impl_glut.h
+11 −3 backends/imgui_impl_metal.h
+14 −6 backends/imgui_impl_metal.mm
+15 −11 backends/imgui_impl_opengl2.cpp
+9 −3 backends/imgui_impl_opengl2.h
+60 −45 backends/imgui_impl_opengl3.cpp
+11 −5 backends/imgui_impl_opengl3.h
+118 −17 backends/imgui_impl_opengl3_loader.h
+8 −2 backends/imgui_impl_osx.h
+26 −17 backends/imgui_impl_osx.mm
+164 −56 backends/imgui_impl_sdl2.cpp
+14 −5 backends/imgui_impl_sdl2.h
+197 −74 backends/imgui_impl_sdl3.cpp
+16 −3 backends/imgui_impl_sdl3.h
+16 −11 backends/imgui_impl_sdlrenderer2.cpp
+11 −0 backends/imgui_impl_sdlrenderer2.h
+19 −15 backends/imgui_impl_sdlrenderer3.cpp
+11 −0 backends/imgui_impl_sdlrenderer3.h
+258 −166 backends/imgui_impl_vulkan.cpp
+48 −17 backends/imgui_impl_vulkan.h
+62 −28 backends/imgui_impl_wgpu.cpp
+27 −3 backends/imgui_impl_wgpu.h
+87 −26 backends/imgui_impl_win32.cpp
+8 −2 backends/imgui_impl_win32.h
+3 −3 docs/BACKENDS.md
+693 −12 docs/CHANGELOG.txt
+12 −11 docs/CONTRIBUTING.md
+4 −4 docs/EXAMPLES.md
+13 −46 docs/FAQ.md
+158 −112 docs/FONTS.md
+28 −20 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 −246 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
+39 −62 examples/example_glfw_vulkan/main.cpp
+100 −0 examples/example_glfw_wgpu/CMakeLists.txt
+0 −0 examples/example_glfw_wgpu/Makefile.emscripten
+2 −2 examples/example_glfw_wgpu/README.md
+345 −0 examples/example_glfw_wgpu/main.cpp
+5 −1 examples/example_glfw_wgpu/web/index.html
+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
+44 −62 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
+20 −11 imconfig.h
+2,068 −1,165 imgui.cpp
+527 −398 imgui.h
+755 −278 imgui_demo.cpp
+531 −82 imgui_draw.cpp
+515 −231 imgui_internal.h
+431 −110 imgui_tables.cpp
+647 −288 imgui_widgets.cpp
+76 −72 imstb_textedit.h
+10 −0 misc/cpp/imgui_stdlib.cpp
+8 −1 misc/freetype/README.md
+168 −15 misc/freetype/imgui_freetype.cpp
+4 −3 misc/freetype/imgui_freetype.h

0 comments on commit 7188576

Please sign in to comment.