- Update SDL3 from 3.2.10 to 3.2.16

- Update SDL3_image from 3.2.0 to 3.2.4
This commit is contained in:
Matthew Pohlmann
2025-06-19 20:15:09 -07:00
parent 6ff5971e72
commit 6377afbab7
23 changed files with 169 additions and 99 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ InitFlags :: distinct bit_set[InitFlag; Uint32]
InitFlag :: enum Uint32 {
AUDIO = 4, /**< `SDL_INIT_AUDIO` implies `SDL_INIT_EVENTS` */
VIDEO = 5, /**< `SDL_INIT_VIDEO` implies `SDL_INIT_EVENTS`, should be initialized on the main thread */
JOYSTICK = 9, /**< `SDL_INIT_JOYSTICK` implies `SDL_INIT_EVENTS`, should be initialized on the same thread as SDL_INIT_VIDEO on Windows if you don't set SDL_HINT_JOYSTICK_THREAD */
JOYSTICK = 9, /**< `SDL_INIT_JOYSTICK` implies `SDL_INIT_EVENTS` */
HAPTIC = 12,
GAMEPAD = 13, /**< `SDL_INIT_GAMEPAD` implies `SDL_INIT_JOYSTICK` */
EVENTS = 14,