-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3959337
commit f45d371
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule imgui
updated
8 files
+4 −4 | backends/imgui_impl_dx12.cpp | |
+8 −0 | docs/CHANGELOG.txt | |
+8 −8 | docs/EXAMPLES.md | |
+43 −13 | imgui.cpp | |
+1 −1 | imgui.h | |
+42 −0 | imgui_draw.cpp | |
+2 −1 | imgui_internal.h | |
+10 −1 | imgui_widgets.cpp |
Submodule sdl3
updated
28 files
+0 −4 | CMakeLists.txt | |
+8 −8 | VisualC-GDK/SDL/SDL.vcxproj | |
+2 −1 | docs/README-migration.md | |
+253 −0 | include/SDL3/SDL_begin_code.h | |
+82 −2 | include/SDL3/SDL_endian.h | |
+20 −13 | include/SDL3/SDL_filesystem.h | |
+15 −0 | include/SDL3/SDL_gpu.h | |
+0 −15 | include/SDL3/SDL_hints.h | |
+3 −4 | include/SDL3/SDL_main.h | |
+927 −39 | include/SDL3/SDL_stdinc.h | |
+121 −0 | include/SDL3/SDL_timer.h | |
+44 −6 | include/SDL3/SDL_touch.h | |
+8 −3 | src/events/SDL_events.c | |
+8 −62 | src/events/SDL_mouse.c | |
+0 −1 | src/events/SDL_mouse_c.h | |
+30 −25 | src/gpu/d3d12/SDL_gpu_d3d12.c | |
+0 −3 | src/video/SDL_video.c | |
+1 −1 | src/video/cocoa/SDL_cocoawindow.m | |
+191 −136 | src/video/wayland/SDL_waylandevents.c | |
+3 −2 | src/video/wayland/SDL_waylandevents_c.h | |
+1 −0 | src/video/wayland/SDL_waylandvideo.c | |
+5 −1 | src/video/windows/SDL_windowswindow.c | |
+2 −2 | src/video/x11/SDL_x11events.c | |
+2 −2 | src/video/x11/SDL_x11xinput2.c | |
+0 −2 | test/testautomation_hints.c | |
+20 −16 | test/testgpu_simple_clear.c | |
+4 −4 | test/testgpu_spinning_cube.c | |
+26 −5 | test/testrelative.c |