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 Oct 16, 2024
1 parent 493f59b commit 2569ba3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdl3
Submodule sdl3 updated 98 files
+2 −2 .github/actions/setup-loongarch64-toolchain/action.yml
+1 −0 .github/workflows/create-test-plan.py
+2 −2 .github/workflows/generic.yml
+52 −61 .github/workflows/release.yml
+1 −0 .gitignore
+24 −19 CMakeLists.txt
+9 −1 Xcode/SDL/SDL.xcodeproj/project.pbxproj
+12 −0 Xcode/SDL/config.xcconfig
+8 −0 Xcode/SDL/pkg-support/build.xcconfig
+0 −0 Xcode/SDL/pkg-support/resources/cmake/SDL3Config.cmake
+0 −0 Xcode/SDL/pkg-support/resources/cmake/SDL3ConfigVersion.cmake
+18 −6 Xcode/SDL/pkg-support/share/cmake/SDL3/SDL3Config.cmake
+0 −0 Xcode/SDL/pkg-support/share/cmake/SDL3/SDL3ConfigVersion.cmake
+1,089 −553 build-scripts/build-release.py
+4 −1 build-scripts/create-android-project.py
+43 −0 build-scripts/create-release.py
+0 −6 build-scripts/create-release.sh
+61 −58 build-scripts/pkg-support/android/INSTALL.md.in
+7 −7 build-scripts/pkg-support/android/__main__.py.in
+3 −22 build-scripts/pkg-support/android/cmake/SDL3ConfigVersion.cmake.in
+5 −0 build-scripts/pkg-support/android/description.json.in
+2 −0 build-scripts/pkg-support/mingw/Makefile
+8 −0 build-scripts/pkg-support/msvc/Directory.Build.props
+3 −3 build-scripts/pkg-support/msvc/cmake/SDL3Config.cmake.in
+3 −22 build-scripts/pkg-support/msvc/cmake/SDL3ConfigVersion.cmake.in
+41 −0 build-scripts/pkg-support/source/SDL_revision.h.cmake.in
+56 −0 build-scripts/pkg-support/source/SDL_revision.h.in
+215 −0 build-scripts/release-info.json
+0 −1 build-scripts/updaterev.sh
+3 −2 cmake/android/FindSdlAndroidPlatform.cmake
+40 −11 cmake/sdlchecks.cmake
+1 −1 cmake/sdlcompilers.cmake
+156 −148 cmake/sdlcpu.cmake
+15 −13 docs/README-android.md
+6 −0 docs/README-wayland.md
+1 −0 examples/CMakeLists.txt
+14 −23 examples/game/01-snake/snake.c
+4 −0 examples/renderer/18-debug-text/README.txt
+75 −0 examples/renderer/18-debug-text/debug-text.c
+6 −0 include/SDL3/SDL_events.h
+22 −23 include/SDL3/SDL_gpu.h
+23 −0 include/SDL3/SDL_hints.h
+5 −1 include/SDL3/SDL_main.h
+5 −1 include/SDL3/SDL_main_impl.h
+51 −0 include/SDL3/SDL_render.h
+5 −3 include/SDL3/SDL_video.h
+3 −1 include/build_config/SDL_build_config.h
+2 −0 include/build_config/SDL_build_config.h.cmake
+2 −0 include/build_config/SDL_build_config_android.h
+2 −0 include/build_config/SDL_build_config_emscripten.h
+2 −0 include/build_config/SDL_build_config_ios.h
+2 −0 include/build_config/SDL_build_config_macos.h
+1 −0 include/build_config/SDL_build_config_windows.h
+1 −0 include/build_config/SDL_build_config_wingdk.h
+8 −8 include/build_config/SDL_revision.h.cmake
+3 −1 src/SDL.c
+3 −1 src/SDL_assert.c
+2 −2 src/SDL_utils.c
+3 −0 src/audio/SDL_audio.c
+1 −0 src/audio/SDL_sysaudio.h
+16 −2 src/audio/SDL_wave.c
+0 −2 src/camera/SDL_syscamera.h
+3 −1 src/dynapi/SDL_dynapi.h
+1 −0 src/dynapi/SDL_dynapi.sym
+1 −0 src/dynapi/SDL_dynapi_overrides.h
+1 −0 src/dynapi/SDL_dynapi_procs.h
+16 −5 src/file/SDL_iostream.c
+21 −15 src/gpu/SDL_gpu.c
+10 −0 src/gpu/SDL_sysgpu.h
+3 −3 src/gpu/metal/SDL_gpu_metal.m
+3 −0 src/gpu/vulkan/SDL_gpu_vulkan.c
+3 −0 src/joystick/SDL_gamepad_db.h
+3 −0 src/joystick/SDL_joystick.c
+1 −0 src/joystick/SDL_sysjoystick.h
+8 −0 src/process/windows/SDL_windowsprocess.c
+120 −0 src/render/SDL_render.c
+2,331 −0 src/render/SDL_render_debug_font.h
+2 −0 src/render/SDL_sysrender.h
+4 −4 src/render/gpu/SDL_render_gpu.c
+4 −4 src/render/gpu/SDL_shaders_gpu.c
+7 −3,354 src/test/SDL_test_font.c
+8 −0 src/thread/pthread/SDL_systhread.c
+1 −1 src/video/SDL_bmp.c
+2 −3 src/video/SDL_egl.c
+1 −0 src/video/SDL_sysvideo.h
+3 −0 src/video/SDL_video.c
+20 −11 src/video/SDL_yuv.c
+2 −0 src/video/uikit/SDL_uikitwindow.m
+212 −48 src/video/wayland/SDL_waylandvideo.c
+3 −2 src/video/wayland/SDL_waylandvideo.h
+6 −1 src/video/windows/SDL_windowsmodes.c
+1 −0 src/video/yuv2rgb/yuv_rgb_common.h
+6 −2 src/video/yuv2rgb/yuv_rgb_internal.h
+19 −0 test/childprocess.c
+0 −8 test/testaudio-art.txt
+4 −0 test/testprocess.c
+6 −1 test/testshape.c
+139 −5 test/testyuv.c

0 comments on commit 2569ba3

Please sign in to comment.