diff options
| author | Laytan <laytanlaats@hotmail.com> | 2025-06-04 06:18:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-04 06:18:18 +0200 |
| commit | a7cbf4f7dd5842edbbcbb19e88f380bcbd1fb0b4 (patch) | |
| tree | afaed896f9e0fdef1063fe370039a3b2a6ed6dcb | |
| parent | 8923e28b2a808d553038a5b12849a9878883656b (diff) | |
| parent | 09ddf121e325777b361001236622c8420371c943 (diff) | |
Merge pull request #5274 from Feoramund/fix-render-typo
Fix typo
| -rw-r--r-- | vendor/sdl3/ttf/sdl3_ttf.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/sdl3/ttf/sdl3_ttf.odin b/vendor/sdl3/ttf/sdl3_ttf.odin index 9b46143e8..1529e312e 100644 --- a/vendor/sdl3/ttf/sdl3_ttf.odin +++ b/vendor/sdl3/ttf/sdl3_ttf.odin @@ -214,7 +214,7 @@ foreign lib { RenderText_Shaded_Wrapped :: proc(font: ^Font, text: cstring, length: c.size_t, fg, bg: SDL.Color, wrap_width: c.int) -> ^SDL.Surface --- RenderGlyph_Shaded :: proc(font: ^Font, ch: u32, fg, bg: SDL.Color) -> ^SDL.Surface --- RenderText_Blended :: proc(font: ^Font, text: cstring, length: c.size_t, fg: SDL.Color) -> ^SDL.Surface --- - RnederText_Blended_Wrapped :: proc(font: ^Font, text: cstring, length: c.size_t, fg: SDL.Color, wrap_width: c.int) -> ^SDL.Surface --- + RenderText_Blended_Wrapped :: proc(font: ^Font, text: cstring, length: c.size_t, fg: SDL.Color, wrap_width: c.int) -> ^SDL.Surface --- RenderGlyph_Blended :: proc(font: ^Font, ch: u32, fg: SDL.Color) -> ^SDL.Surface --- RenderText_LCD :: proc(font: ^Font, text: cstring, length: c.size_t, fg, bg: SDL.Color) -> ^SDL.Surface --- RenderText_LCD_Wrapped :: proc(font: ^Font, text: cstring, length: c.size_t, fg, bg: SDL.Color, wrap_width: c.int) -> ^SDL.Surface --- |