mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Reduce max line length from 150 to 120 characters
Part of https://github.com/servo/servo/issues/6041
This commit is contained in:
parent
7561f7b83f
commit
8e3f4bba85
141 changed files with 1161 additions and 497 deletions
|
@ -198,7 +198,8 @@ impl Shaper {
|
|||
let hb_funcs: *mut hb_font_funcs_t = RUST_hb_font_funcs_create();
|
||||
RUST_hb_font_funcs_set_glyph_func(hb_funcs, glyph_func, ptr::null_mut(), None);
|
||||
RUST_hb_font_funcs_set_glyph_h_advance_func(hb_funcs, glyph_h_advance_func, ptr::null_mut(), None);
|
||||
RUST_hb_font_funcs_set_glyph_h_kerning_func(hb_funcs, glyph_h_kerning_func, ptr::null_mut(), ptr::null_mut());
|
||||
RUST_hb_font_funcs_set_glyph_h_kerning_func(
|
||||
hb_funcs, glyph_h_kerning_func, ptr::null_mut(), ptr::null_mut());
|
||||
RUST_hb_font_set_funcs(hb_font, hb_funcs, font as *mut Font as *mut c_void, None);
|
||||
|
||||
Shaper {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue