mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
Fix example code
This commit is contained in:
parent
55f41e287f
commit
a32278acd8
1 changed files with 2 additions and 2 deletions
|
@ -506,9 +506,9 @@ pub fn shape(_shape_plan:u32, font_ref: u32, buf_ref: u32, _features: u32, _num_
|
|||
let mut buffer = GlyphBuffer::from_ref(buf_ref);
|
||||
for mut item in buffer.glyphs.iter_mut() {
|
||||
// Map character to glyph
|
||||
item.codepoint = font.get_glyph(codepoint, 0);
|
||||
item.codepoint = font.get_glyph(item.codepoint, 0);
|
||||
// Set advance width
|
||||
item.h_advance = font.get_glyph_h_advance(item.codepoint);
|
||||
item.x_advance = font.get_glyph_h_advance(item.codepoint);
|
||||
}
|
||||
1
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue