Skip to content
Merged
Show file tree
Hide file tree
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 cimgui
Submodule cimgui updated 48 files
+4 −0 CMakeLists.txt
+19 −10 README.md
+94 −0 backend_test/cmake/GenerateCimguiBindings.cmake
+28 −93 backend_test/example_glfw_dx11/CMakeLists.txt
+3 −2 backend_test/example_glfw_dx11/README.md
+3 −1 backend_test/example_glfw_dx11/main.c
+4 −2 backend_test/example_glfw_opengl3/CMakeLists.txt
+13 −1 backend_test/example_glfw_opengl3/main.c
+100 −0 backend_test/example_sdl3_vulkan/CMakeLists.txt
+2 −0 backend_test/example_sdl3_vulkan/README.md
+632 −0 backend_test/example_sdl3_vulkan/main.c
+34 −41 backend_test/example_sdl_opengl3/CMakeLists.txt
+2 −0 backend_test/example_sdl_opengl3/README.md
+21 −5 backend_test/example_sdl_opengl3/main.c
+36 −0 backend_test/example_sdl_renderer3/CMakeLists.txt
+16 −0 backend_test/example_sdl_renderer3/README.md
+158 −0 backend_test/example_sdl_renderer3/main.c
+41 −42 backend_test/example_sdl_vulkan/CMakeLists.txt
+2 −0 backend_test/example_sdl_vulkan/README.md
+498 −442 backend_test/example_sdl_vulkan/main.c
+33 −0 backend_test/example_sdlgpu3/CMakeLists.txt
+16 −0 backend_test/example_sdlgpu3/README.md
+216 −0 backend_test/example_sdlgpu3/main.c
+1,452 −696 cimgui.cpp
+1,349 −747 cimgui.h
+46 −0 cimgui_impl.cpp
+223 −0 cimgui_impl.h
+23 −0 generator/cimgui_impl_template.cpp
+2 −14 generator/cimgui_template.cpp
+9 −3 generator/cimgui_template.h
+1,471 −181 generator/cpp2ffi.lua
+1 −1 generator/generator.bat
+96 −58 generator/generator.lua
+0 −88 generator/output/cimgui_impl.h
+123 −0 generator/output/constants.json
+123 −0 generator/output/constants.lua
+9,181 −3,632 generator/output/definitions.json
+40,266 −33,529 generator/output/definitions.lua
+808 −101 generator/output/impl_definitions.json
+1,664 −983 generator/output/impl_definitions.lua
+15 −3 generator/output/overloads.txt
+2,027 −712 generator/output/structs_and_enums.json
+10,395 −9,366 generator/output/structs_and_enums.lua
+25 −4 generator/output/typedefs_dict.json
+227 −207 generator/output/typedefs_dict.lua
+8 −0 generator/print_defines.cpp
+1 −1 imgui
+7 −3 test/main.c
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.91.6",
"version": "1.92.8",
"publicReleaseRefSpec": [
"^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N
],
Expand Down
Loading