-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule repo
updated
24 files
+3 −3 | backends/imgui_impl_allegro5.cpp | |
+3 −3 | backends/imgui_impl_dx10.cpp | |
+3 −3 | backends/imgui_impl_dx11.cpp | |
+3 −3 | backends/imgui_impl_dx12.cpp | |
+3 −3 | backends/imgui_impl_metal.mm | |
+3 −3 | backends/imgui_impl_opengl2.cpp | |
+4 −3 | backends/imgui_impl_opengl3.cpp | |
+3 −2 | backends/imgui_impl_opengl3_loader.h | |
+4 −4 | backends/imgui_impl_sdlrenderer2.cpp | |
+4 −4 | backends/imgui_impl_sdlrenderer3.cpp | |
+106 −39 | backends/imgui_impl_vulkan.cpp | |
+2 −2 | backends/imgui_impl_vulkan.h | |
+3 −3 | backends/imgui_impl_wgpu.cpp | |
+48 −5 | docs/CHANGELOG.txt | |
+0 −30 | examples/example_glfw_vulkan/main.cpp | |
+0 −30 | examples/example_sdl2_vulkan/main.cpp | |
+1 −1 | imconfig.h | |
+99 −73 | imgui.cpp | |
+49 −22 | imgui.h | |
+34 −8 | imgui_demo.cpp | |
+4 −4 | imgui_draw.cpp | |
+3 −1 | imgui_internal.h | |
+23 −11 | imgui_tables.cpp | |
+4 −3 | imgui_widgets.cpp |
Submodule repo
updated
from d6d43e to e44be6
Submodule repo
updated
19 files
+71 −0 | .github/workflows/cmake.yml | |
+6 −0 | .github/workflows/codeql-buildscript.sh | |
+126 −0 | .github/workflows/codeql.yml | |
+34 −0 | .github/workflows/fail_on_error.py | |
+16 −2 | AUTHORS.txt | |
+19 −0 | CHANGELOG.txt | |
+75 −40 | CMakeLists.txt | |
+1 −1 | conanfile.py | |
+17 −1 | docs/migration.md | |
+1 −1 | extra/bazel/nanopb_cc_proto_library.bzl | |
+1 −1 | extra/poetry/pyproject.toml | |
+24 −0 | extra/script_wrappers/nanopb_generator.py.in | |
+0 −0 | generator/__init__.py | |
+7 −0 | generator/nanopb_generator | |
+5 −0 | generator/nanopb_generator.bat | |
+1 −1 | generator/nanopb_generator.py | |
+1 −1 | library.json | |
+1 −1 | pb.h | |
+2 −0 | requirements.txt |