mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[coretext] Fix glyph bounds
This commit is contained in:
parent
1240a47093
commit
d2a017d785
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