diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-09 09:02:52 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-09 09:02:52 +0000 |
| commit | 0ef81769710b8da66b7777cd7f8491edf7086764 (patch) | |
| tree | d3b690fff8c8d1952b7c81534798fd53221286f4 | |
| parent | e6827393cf2f385a4cd13d605c5280ace33a84f2 (diff) | |
`kbts.BreakAddCodepoint` to use `EndOfText: b32`
| -rw-r--r-- | vendor/kb_text_shape/kb_text_shape_procs.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/kb_text_shape/kb_text_shape_procs.odin b/vendor/kb_text_shape/kb_text_shape_procs.odin index 08dd4c300..caf7c4b9b 100644 --- a/vendor/kb_text_shape/kb_text_shape_procs.odin +++ b/vendor/kb_text_shape/kb_text_shape_procs.odin @@ -246,7 +246,7 @@ GlyphIteratorNext :: proc "contextless" (It: ^glyph_iterator) -> (Glyph: ^glyph, @(default_calling_convention="c", link_prefix="kbts_", require_results) foreign lib { BreakBegin :: proc(State: ^break_state, ParagraphDirection: direction, JapaneseLineBreakStyle: japanese_line_break_style, ConfigFlags: break_config_flags) --- - BreakAddCodepoint :: proc(State: ^break_state, Codepoint: rune, PositionIncrement: c.int, EndOfText: c.int) --- + BreakAddCodepoint :: proc(State: ^break_state, Codepoint: rune, PositionIncrement: c.int, EndOfText: b32) --- BreakEnd :: proc(State: ^break_state) --- } |