mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-10 18:09:32 +00:00
Fix alignment
This commit is contained in:
21
vendor/kb_text_shape/kb_text_shape_procs.odin
vendored
21
vendor/kb_text_shape/kb_text_shape_procs.odin
vendored
@@ -271,9 +271,10 @@ Break :: proc "contextless" (State: ^break_state) -> (Break: break_type, Ok: b32
|
||||
|
||||
|
||||
BreakEntireString :: proc "c" (Direction: direction, JapaneseLineBreakStyle: japanese_line_break_style, ConfigFlags: break_config_flags,
|
||||
Input: []byte, InputFormat: text_format,
|
||||
Breaks: []break_type, BreakCount: ^c.int,
|
||||
BreakFlags: []break_flags, BreakFlagCount: ^c.int) {
|
||||
Input: []byte, InputFormat: text_format,
|
||||
Breaks: []break_type, BreakCount: ^c.int,
|
||||
BreakFlags: []break_flags, BreakFlagCount: ^c.int) {
|
||||
|
||||
@(default_calling_convention="c", require_results)
|
||||
foreign lib {
|
||||
kbts_BreakEntireString :: proc(Direction: direction, JapaneseLineBreakStyle: japanese_line_break_style, ConfigFlags: break_config_flags,
|
||||
@@ -285,9 +286,10 @@ BreakEntireString :: proc "c" (Direction: direction, JapaneseLineBreakStyle: jap
|
||||
}
|
||||
|
||||
BreakEntireStringUtf32 :: proc "c" (Direction: direction, JapaneseLineBreakStyle: japanese_line_break_style, ConfigFlags: break_config_flags,
|
||||
Utf32: []rune,
|
||||
Breaks: []break_type, BreakCount: ^c.int,
|
||||
BreakFlags: []break_flags, BreakFlagCount: ^c.int) {
|
||||
Utf32: []rune
|
||||
Breaks: []break_type, BreakCount: ^c.int
|
||||
BreakFlags: []break_flags, BreakFlagCount: ^c.int) {
|
||||
|
||||
@(default_calling_convention="c", require_results)
|
||||
foreign lib {
|
||||
kbts_BreakEntireStringUtf32 :: proc(Direction: direction, JapaneseLineBreakStyle: japanese_line_break_style, ConfigFlags: break_config_flags,
|
||||
@@ -299,9 +301,10 @@ BreakEntireStringUtf32 :: proc "c" (Direction: direction, JapaneseLineBreakStyle
|
||||
}
|
||||
|
||||
BreakEntireStringUtf8 :: proc "c" (Direction: direction, JapaneseLineBreakStyle: japanese_line_break_style, ConfigFlags: break_config_flags,
|
||||
Utf8: string,
|
||||
Breaks: []break_type, BreakCount: ^c.int,
|
||||
BreakFlags: []break_flags, BreakFlagCount: ^c.int) {
|
||||
Utf8: string,
|
||||
Breaks: []break_type, BreakCount: ^c.int,
|
||||
BreakFlags: []break_flags, BreakFlagCount: ^c.int) {
|
||||
|
||||
@(default_calling_convention="c", require_results)
|
||||
foreign lib {
|
||||
kbts_BreakEntireStringUtf8 :: proc(Direction: direction, JapaneseLineBreakStyle: japanese_line_break_style, ConfigFlags: break_config_flags,
|
||||
|
||||
@@ -1767,7 +1767,7 @@ _head :: struct {}
|
||||
_langsys :: struct {}
|
||||
shape_config :: struct {}
|
||||
glyph_config :: struct {}
|
||||
bucketed_glyph :: struct {}
|
||||
bucketed_glyph :: struct {}
|
||||
shape_context :: struct {}
|
||||
shape_scratchpad :: struct {}
|
||||
|
||||
@@ -2153,8 +2153,8 @@ glyph_storage :: struct {
|
||||
}
|
||||
|
||||
glyph_parent :: struct {
|
||||
Codepoint: rune,
|
||||
Codepoint1: rune,
|
||||
Codepoint: rune,
|
||||
Codepoint1: rune,
|
||||
}
|
||||
|
||||
font_coverage_test :: struct {
|
||||
|
||||
Reference in New Issue
Block a user