- 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
+2
View File
@@ -295,6 +295,8 @@ MouseWheelEvent :: struct {
direction: MouseWheelDirection, /**< Set to one of the SDL_MOUSEWHEEL_* defines. When FLIPPED the values in X and Y will be opposite. Multiply by -1 to change them back */
mouse_x: f32, /**< X coordinate, relative to window */
mouse_y: f32, /**< Y coordinate, relative to window */
integer_x: i32, /**< The amount scrolled horizontally, accumulated to whole scroll "ticks" (added in 3.2.12) */
integer_y: i32, /**< The amount scrolled vertically, accumulated to whole scroll "ticks" (added in 3.2.12) */
}
JoyAxisEvent :: struct {