mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[coretext] Fix glyph bounds
This commit is contained in:
parent
696b4a26a8
commit
0ebcc66506
1 changed files with 2 additions and 2 deletions
|
@ -312,9 +312,9 @@ hb_coretext_get_glyph_extents (hb_font_t *font,
|
|||
kCTFontOrientationDefault, glyphs, NULL, 1);
|
||||
|
||||
extents->x_bearing = round (bounds.origin.x * x_mult);
|
||||
extents->y_bearing = round (bounds.origin.y * y_mult);
|
||||
extents->y_bearing = round ((bounds.origin.y + bounds.size.height) * y_mult);
|
||||
extents->width = round (bounds.size.width * x_mult);
|
||||
extents->height = round (bounds.size.height * y_mult);
|
||||
extents->height = round (bounds.origin.y * y_mult) - extents->y_bearing;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue