aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-12-08 12:23:17 +0000
committergingerBill <gingerBill@users.noreply.github.com>2025-12-08 12:23:17 +0000
commit0bbb65614745e5a9ed0347f17d4c5aa3cbabe9d8 (patch)
tree448920f675c0734360289b34e55afe45e3e1f660
parentb2f49e49793d7bc56c365c0844be84302f700c0a (diff)
Use `b32` for `Error` fields instead of `c.int`
-rw-r--r--vendor/kb_text_shape/kb_text_shape_types.odin8
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/kb_text_shape/kb_text_shape_types.odin b/vendor/kb_text_shape/kb_text_shape_types.odin
index f56d5436d..2d29267ae 100644
--- a/vendor/kb_text_shape/kb_text_shape_types.odin
+++ b/vendor/kb_text_shape/kb_text_shape_types.odin
@@ -2108,7 +2108,7 @@ arena :: struct {
BlockSentinel: arena_block_header,
FreeBlockSentinel: arena_block_header,
- Error: c.int,
+ Error: b32,
}
glyph_storage :: struct {
@@ -2117,7 +2117,7 @@ glyph_storage :: struct {
GlyphSentinel: glyph,
FreeGlyphSentinel: glyph,
- Error: c.int,
+ Error: b32,
}
glyph_parent :: struct {
@@ -2129,8 +2129,8 @@ font_coverage_test :: struct {
Font: ^font,
BaseCodepoint: rune,
- CurrentBaseError: c.int,
- Error: c.int,
+ CurrentBaseError: b32,
+ Error: b32,
BaseParents: [MAXIMUM_RECOMPOSITION_PARENTS]glyph_parent `fmt:"v,BaseParentCount"`,
BaseParentCount: u32,