Browse Source

Merge pull request #5158 from A1029384756/master

[vendor:SDL/ttf] - GPUAtlasDrawSequence multipointer from pointer
gingerBill 3 months ago
parent
commit
4b8707f71b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      vendor/sdl3/ttf/sdl3_ttf.odin

+ 2 - 2
vendor/sdl3/ttf/sdl3_ttf.odin

@@ -96,9 +96,9 @@ ImageType :: enum c.int {
 
 
 GPUAtlasDrawSequence :: struct {
 GPUAtlasDrawSequence :: struct {
 	atlas_texture: ^SDL.GPUTexture,
 	atlas_texture: ^SDL.GPUTexture,
-	xy, uv:        ^SDL.FPoint,
+	xy, uv:        [^]SDL.FPoint,
 	num_vertices:  c.int,
 	num_vertices:  c.int,
-	indices:       ^c.int,
+	indices:       [^]c.int,
 	num_indices:   c.int,
 	num_indices:   c.int,
 	image_type:    ImageType,
 	image_type:    ImageType,
 	next:          ^GPUAtlasDrawSequence,
 	next:          ^GPUAtlasDrawSequence,