From 82729d7e2723cdf00b4e22c633f5865fbdddac87 Mon Sep 17 00:00:00 2001 From: A1029384756 Date: Tue, 13 May 2025 15:40:40 -0400 Subject: [PATCH 1/2] [vendor:SDL/ttf] - GPUAtlasDrawSequence multipointer from pointer --- vendor/sdl3/ttf/sdl3_ttf.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/sdl3/ttf/sdl3_ttf.odin b/vendor/sdl3/ttf/sdl3_ttf.odin index c934ef408..08b7a4e1f 100644 --- a/vendor/sdl3/ttf/sdl3_ttf.odin +++ b/vendor/sdl3/ttf/sdl3_ttf.odin @@ -96,7 +96,7 @@ ImageType :: enum c.int { GPUAtlasDrawSequence :: struct { atlas_texture: ^SDL.GPUTexture, - xy, uv: ^SDL.FPoint, + xy, uv: [^]SDL.FPoint, num_vertices: c.int, indices: ^c.int, num_indices: c.int, From 5379c8c1ac1c2e839382e228944b11abdaffcdc7 Mon Sep 17 00:00:00 2001 From: A1029384756 Date: Tue, 13 May 2025 15:44:20 -0400 Subject: [PATCH 2/2] [vendor:sdl3/ttf] - changed indices to multipointer --- vendor/sdl3/ttf/sdl3_ttf.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/sdl3/ttf/sdl3_ttf.odin b/vendor/sdl3/ttf/sdl3_ttf.odin index 08b7a4e1f..d3b8d7508 100644 --- a/vendor/sdl3/ttf/sdl3_ttf.odin +++ b/vendor/sdl3/ttf/sdl3_ttf.odin @@ -98,7 +98,7 @@ GPUAtlasDrawSequence :: struct { atlas_texture: ^SDL.GPUTexture, xy, uv: [^]SDL.FPoint, num_vertices: c.int, - indices: ^c.int, + indices: [^]c.int, num_indices: c.int, image_type: ImageType, next: ^GPUAtlasDrawSequence,