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 external/entt
Submodule entt updated 66 files
+2 −2 TODO
+20 −24 docs/md/meta.md
+24 −20 src/entt/entity/sparse_set.hpp
+24 −15 src/entt/entity/storage.hpp
+1 −1 src/entt/entity/view.hpp
+2 −2 src/entt/meta/container.hpp
+1 −2 src/entt/meta/meta.hpp
+0 −26 test/common/aggregate.h
+0 −24 test/common/boxed_type.h
+0 −11 test/common/empty.h
+0 −22 test/common/new_delete.h
+0 −12 test/common/non_comparable.h
+0 −17 test/common/non_default_constructible.h
+0 −20 test/common/non_movable.h
+2 −0 test/common/throwing_type.hpp
+84 −19 test/common/value_type.h
+1 −1 test/entt/core/algorithm.cpp
+1 −4 test/entt/core/any.cpp
+1 −2 test/entt/core/compressed_pair.cpp
+1 −2 test/entt/core/ident.cpp
+1 −1 test/entt/core/iterator.cpp
+1 −1 test/entt/core/type_traits.cpp
+1 −3 test/entt/entity/component.cpp
+1 −2 test/entt/entity/group.cpp
+1 −1 test/entt/entity/reactive_mixin.cpp
+0 −3 test/entt/entity/registry.cpp
+0 −1 test/entt/entity/sigh_mixin.cpp
+0 −1 test/entt/entity/snapshot.cpp
+27 −0 test/entt/entity/sparse_set.cpp
+0 −2 test/entt/entity/storage.cpp
+1 −1 test/entt/entity/storage_no_instance.cpp
+16 −2 test/entt/entity/view.cpp
+1 −1 test/entt/meta/meta_any.cpp
+1 −2 test/entt/meta/meta_container.cpp
+1 −1 test/entt/meta/meta_context.cpp
+15 −0 test/entt/meta/meta_dereference.cpp
+1 −1 test/entt/meta/meta_factory.cpp
+1 −1 test/entt/meta/meta_utility.cpp
+1 −1 test/entt/process/process.cpp
+1 −1 test/entt/resource/resource_cache.cpp
+1 −1 test/entt/signal/dispatcher.cpp
+1 −2 test/entt/signal/emitter.cpp
+1 −1 test/lib/dispatcher/plugin/main.cpp
+1 −2 test/lib/dispatcher/plugin/plugin.cpp
+1 −2 test/lib/dispatcher/shared/lib.cpp
+1 −1 test/lib/dispatcher/shared/main.cpp
+1 −1 test/lib/emitter/plugin/main.cpp
+1 −2 test/lib/emitter/plugin/plugin.cpp
+1 −2 test/lib/emitter/shared/lib.cpp
+1 −1 test/lib/emitter/shared/main.cpp
+1 −1 test/lib/locator/plugin/main.cpp
+1 −1 test/lib/locator/plugin/plugin.cpp
+1 −1 test/lib/locator/plugin/userdata.h
+1 −1 test/lib/locator/shared/lib.cpp
+1 −1 test/lib/locator/shared/lib.h
+1 −1 test/lib/locator/shared/main.cpp
+1 −2 test/lib/meta/plugin/plugin.cpp
+1 −2 test/lib/meta/plugin_std/plugin.cpp
+1 −2 test/lib/meta/plugin_std/userdata.h
+1 −2 test/lib/meta/shared/lib.cpp
+1 −2 test/lib/meta/shared/main.cpp
+1 −2 test/lib/registry/plugin/main.cpp
+1 −2 test/lib/registry/plugin/plugin.cpp
+1 −2 test/lib/registry/shared/lib.cpp
+1 −2 test/lib/registry/shared/main.cpp
+1 −1 test/lib/view/types.h
2 changes: 1 addition & 1 deletion external/imgui
Submodule imgui updated 40 files
+9 −7 backends/imgui_impl_dx9.cpp
+4 −0 backends/imgui_impl_glfw.cpp
+3 −1 backends/imgui_impl_metal.mm
+2 −1 backends/imgui_impl_opengl2.cpp
+2 −1 backends/imgui_impl_opengl3.cpp
+9 −8 backends/imgui_impl_sdl2.cpp
+15 −9 backends/imgui_impl_sdl3.cpp
+4 −2 backends/imgui_impl_sdlgpu3.cpp
+4 −2 backends/imgui_impl_sdlrenderer2.cpp
+5 −3 backends/imgui_impl_sdlrenderer3.cpp
+14 −13 backends/imgui_impl_vulkan.cpp
+1 −0 backends/imgui_impl_vulkan.h
+91 −57 backends/imgui_impl_wgpu.cpp
+5 −16 backends/imgui_impl_wgpu.h
+50 −14 backends/imgui_impl_win32.cpp
+129 −3 docs/CHANGELOG.txt
+99 −24 docs/FAQ.md
+7 −8 docs/README.md
+44 −36 examples/example_glfw_wgpu/CMakeLists.txt
+2 −6 examples/example_glfw_wgpu/Makefile.emscripten
+2 −6 examples/example_glfw_wgpu/README.md
+9 −38 examples/example_glfw_wgpu/main.cpp
+41 −32 examples/example_sdl2_wgpu/CMakeLists.txt
+2 −6 examples/example_sdl2_wgpu/Makefile.emscripten
+2 −6 examples/example_sdl2_wgpu/README.md
+11 −38 examples/example_sdl2_wgpu/main.cpp
+39 −33 examples/example_sdl3_wgpu/CMakeLists.txt
+2 −6 examples/example_sdl3_wgpu/Makefile.emscripten
+2 −6 examples/example_sdl3_wgpu/README.md
+9 −36 examples/example_sdl3_wgpu/main.cpp
+4 −1 examples/libs/emscripten/shell_minimal.html
+153 −53 imgui.cpp
+46 −22 imgui.h
+57 −30 imgui_demo.cpp
+3 −3 imgui_draw.cpp
+23 −14 imgui_internal.h
+125 −50 imgui_tables.cpp
+252 −206 imgui_widgets.cpp
+2 −2 imstb_rectpack.h
+1 −1 imstb_truetype.h
2 changes: 1 addition & 1 deletion external/spdlog
2 changes: 1 addition & 1 deletion external/stb
Loading