aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-12-09 09:02:52 +0000
committergingerBill <gingerBill@users.noreply.github.com>2025-12-09 09:02:52 +0000
commit0ef81769710b8da66b7777cd7f8491edf7086764 (patch)
treed3b690fff8c8d1952b7c81534798fd53221286f4
parente6827393cf2f385a4cd13d605c5280ace33a84f2 (diff)
`kbts.BreakAddCodepoint` to use `EndOfText: b32`
-rw-r--r--vendor/kb_text_shape/kb_text_shape_procs.odin2
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) ---
}