Skip to content

Commit

Permalink
Branch Sync
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 28, 2024
1 parent c8cce57 commit 0074c30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libc-shim
Submodule libc-shim updated 1 files
+13 −1 src/network.cpp
2 changes: 1 addition & 1 deletion sdl3
Submodule sdl3 updated 44 files
+6 −2 CMakeLists.txt
+6 −2 build-scripts/fnsince.pl
+30 −0 docs/README-main-functions.md
+2 −0 examples/CMakeLists.txt
+2 −0 examples/input/01-joystick-polling/README.txt
+193 −0 examples/input/01-joystick-polling/joystick-polling.c
+2 −0 examples/input/02-joystick-events/README.txt
+232 −0 examples/input/02-joystick-events/joystick-events.c
+17 −9 include/SDL3/SDL_audio.h
+1 −1 include/SDL3/SDL_error.h
+18 −0 include/SDL3/SDL_filesystem.h
+2 −2 include/SDL3/SDL_gpu.h
+12 −0 include/SDL3/SDL_hints.h
+1 −1 include/SDL3/SDL_log.h
+1 −1 include/SDL3/SDL_render.h
+1 −1 include/SDL3/SDL_stdinc.h
+1 −1 include/SDL3/SDL_surface.h
+1 −1 include/SDL3/SDL_system.h
+1 −1 include/SDL3/SDL_timer.h
+2 −0 include/SDL3/SDL_video.h
+47 −16 src/audio/SDL_audiocvt.c
+1 −0 src/dynapi/SDL_dynapi.sym
+1 −0 src/dynapi/SDL_dynapi_overrides.h
+1 −0 src/dynapi/SDL_dynapi_procs.h
+13 −0 src/events/SDL_mouse.c
+3 −0 src/events/SDL_mouse_c.h
+5 −2 src/filesystem/SDL_filesystem.c
+1 −0 src/filesystem/SDL_sysfilesystem.h
+6 −0 src/filesystem/dummy/SDL_sysfilesystem.c
+32 −0 src/filesystem/posix/SDL_sysfsops.c
+28 −0 src/filesystem/windows/SDL_sysfilesystem.c
+1 −1 src/gpu/d3d12/SDL_gpu_d3d12.c
+26 −38 src/hidapi/linux/hid.c
+17 −1 src/test/SDL_test_common.c
+2 −1 src/video/android/SDL_androidmouse.c
+6 −19 src/video/cocoa/SDL_cocoamouse.m
+3 −1 src/video/emscripten/SDL_emscriptenmouse.c
+2 −1 src/video/haiku/SDL_bvideo.cc
+16 −0 src/video/vita/SDL_vitamouse.c
+2 −1 src/video/wayland/SDL_waylandmouse.c
+6 −5 src/video/windows/SDL_windowsmouse.c
+10 −2 src/video/x11/SDL_x11events.c
+6 −6 src/video/x11/SDL_x11mouse.c
+10 −0 test/testfilesystem.c

0 comments on commit 0074c30

Please sign in to comment.