- 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
@@ -4,7 +4,7 @@ import "core:c"
MAJOR_VERSION :: 3
MINOR_VERSION :: 2
MICRO_VERSION :: 10
MICRO_VERSION :: 16
@(require_results) VERSIONNUM :: #force_inline proc "c" (major, minor, patch: c.int) -> c.int { return (major * 1000000) + (minor * 1000) + patch }
@(require_results) VERSIONNUM_MAJOR :: #force_inline proc "c" (version: c.int) -> c.int { return version / 1000000 }