Commit 670a812
- .github/workflows/build.yml+87-27
- .github/workflows/static-analysis.yml+1-1
- .gitignore+1
- backends/imgui_impl_allegro5.cpp+46-23
- backends/imgui_impl_allegro5.h+1
- backends/imgui_impl_dx10.cpp+7-9
- backends/imgui_impl_dx11.cpp+8-10
- backends/imgui_impl_dx12.cpp+21-20
- backends/imgui_impl_dx9.cpp+2-4
- backends/imgui_impl_glfw.cpp+94-15
- backends/imgui_impl_metal.mm+2-4
- backends/imgui_impl_opengl2.cpp+4-2
- backends/imgui_impl_opengl3.cpp+26-10
- backends/imgui_impl_opengl3_loader.h+28-5
- backends/imgui_impl_osx.mm+2-9
- backends/imgui_impl_sdl2.cpp+7-4
- backends/imgui_impl_sdl3.cpp+12-2
- backends/imgui_impl_sdlgpu3.cpp+42-41
- backends/imgui_impl_sdlgpu3.h+17-5
- backends/imgui_impl_sdlrenderer2.cpp+1-2
- backends/imgui_impl_sdlrenderer3.cpp+1-2
- backends/imgui_impl_vulkan.cpp+113-39
- backends/imgui_impl_vulkan.h+24-12
- backends/imgui_impl_wgpu.cpp+3-5
- docs/BACKENDS.md+3-2
- docs/CHANGELOG.txt+288-15
- docs/EXAMPLES.md+4
- docs/FAQ.md+33-9
- docs/FONTS.md+7-5
- docs/README.md+3-3
- docs/TODO.txt-1
- examples/example_allegro5/main.cpp+2-2
- examples/example_android_opengl3/android/.gitignore+6-4
- examples/example_android_opengl3/android/app/build.gradle+10-19
- examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml+2-1
- examples/example_android_opengl3/android/build.gradle+4-23
- examples/example_android_opengl3/android/gradle/libs.versions.toml+8
- examples/example_android_opengl3/android/settings.gradle+21
- examples/example_android_opengl3/main.cpp+1-1
- examples/example_apple_metal/main.mm+2-2
- examples/example_apple_opengl2/main.mm+2-2
- examples/example_glfw_metal/main.mm+31-25
- examples/example_glfw_opengl2/Makefile+2-1
- examples/example_glfw_opengl2/main.cpp+10-3
- examples/example_glfw_opengl3/Makefile+1-1
- examples/example_glfw_opengl3/Makefile.emscripten+3-2
- examples/example_glfw_opengl3/main.cpp+1-1
- examples/example_glfw_vulkan/CMakeLists.txt+1
- examples/example_glfw_vulkan/Makefile+1-1
- examples/example_glfw_vulkan/main.cpp+10-3
- examples/example_glfw_wgpu/Makefile.emscripten+3-2
- examples/example_glfw_wgpu/main.cpp+2-2
- examples/example_glut_opengl2/main.cpp+2-2
- examples/example_sdl2_directx11/main.cpp+2-2
- examples/example_sdl2_metal/main.mm+2-2
- examples/example_sdl2_opengl2/main.cpp+2-2
- examples/example_sdl2_opengl3/main.cpp+2-2
- examples/example_sdl2_sdlrenderer2/main.cpp+2-2
- examples/example_sdl2_vulkan/main.cpp+2-2
- examples/example_sdl3_metal/Makefile+48
- examples/example_sdl3_metal/main.mm+208
- examples/example_sdl3_opengl3/main.cpp+2-2
- examples/example_sdl3_sdlgpu3/main.cpp+9-6
- examples/example_sdl3_sdlrenderer3/main.cpp+2-2
- examples/example_sdl3_vulkan/main.cpp+2-2
- examples/example_win32_directx10/main.cpp+1-1
- examples/example_win32_directx11/main.cpp+1-1
- examples/example_win32_directx12/main.cpp+1-1
- examples/example_win32_directx9/main.cpp+1-1
- examples/example_win32_opengl3/main.cpp+14-5
- examples/example_win32_vulkan/main.cpp+14-5
- imconfig.h+4
- imgui.cpp+416-246
- imgui.h+90-48
- imgui_demo.cpp+66-35
- imgui_draw.cpp+108-90
- imgui_internal.h+131-91
- imgui_tables.cpp+13-9
- imgui_widgets.cpp+397-238
- imstb_textedit.h+62-29
- misc/freetype/imgui_freetype.cpp+9-9
Submodule imgui_test_engine updated 15 files
- app_minimal/app_minimal_main.cpp+3-2
- docs/CHANGELOG.txt+14
- imgui_test_engine/imgui_te_context.cpp+68-3
- imgui_test_engine/imgui_te_context.h+6-1
- imgui_test_engine/imgui_te_engine.cpp+3
- imgui_test_engine/imgui_te_internal.h+1
- imgui_test_engine/imgui_te_ui.cpp+23-7
- imgui_test_suite/imgui_test_suite_imconfig.h+8-1
- imgui_test_suite/imgui_tests_core.cpp+34-12
- imgui_test_suite/imgui_tests_docking.cpp+2
- imgui_test_suite/imgui_tests_tables.cpp+2-3
- imgui_test_suite/imgui_tests_viewports.cpp+61
- imgui_test_suite/imgui_tests_widgets.cpp+114-11
- imgui_test_suite/imgui_tests_widgets_inputtext.cpp+314-1
- shared/imgui_app.cpp+1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
4 | 5 | | |
5 | 6 | | |
6 | 7 | | |
| |||
57 | 58 | | |
58 | 59 | | |
59 | 60 | | |
60 | | - | |
| 61 | + | |
61 | 62 | | |
62 | 63 | | |
63 | 64 | | |
| |||
70 | 71 | | |
71 | 72 | | |
72 | 73 | | |
73 | | - | |
| 74 | + | |
74 | 75 | | |
75 | 76 | | |
76 | 77 | | |
77 | 78 | | |
78 | 79 | | |
79 | 80 | | |
80 | 81 | | |
81 | | - | |
82 | | - | |
83 | | - | |
84 | | - | |
85 | | - | |
86 | | - | |
87 | | - | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
88 | 86 | | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
95 | | - | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
96 | 96 | | |
97 | 97 | | |
98 | 98 | | |
99 | 99 | | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
0 commit comments