mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
[ot/ft] Round glyph extents instead of floor/ceil
1. The floor/ceil was being applied in the wrong order for y direction. 2. If the scale is negative, the floor/ceil should be reversed. Just round them instead. That's what coretext / directwrite / fontations font-funcs do.
This commit is contained in:
parent
4954edb2b1
commit
02b732d62d
2 changed files with 8 additions and 8 deletions
|
@ -198,10 +198,10 @@ struct hb_font_t
|
|||
float x2 = em_scale_x (extents->x_bearing + extents->width);
|
||||
float y2 = em_scale_y (extents->y_bearing + extents->height);
|
||||
|
||||
extents->x_bearing = floorf (x1);
|
||||
extents->y_bearing = floorf (y1);
|
||||
extents->width = ceilf (x2) - extents->x_bearing;
|
||||
extents->height = ceilf (y2) - extents->y_bearing;
|
||||
extents->x_bearing = round (x1);
|
||||
extents->y_bearing = round (y1);
|
||||
extents->width = round (x2) - extents->x_bearing;
|
||||
extents->height = round (y2) - extents->y_bearing;
|
||||
}
|
||||
|
||||
void synthetic_glyph_extents (hb_glyph_extents_t *extents)
|
||||
|
|
|
@ -667,10 +667,10 @@ hb_ft_get_glyph_extents (hb_font_t *font,
|
|||
float x2 = x1 + x_mult * ft_face->glyph->metrics.width;
|
||||
float y2 = y1 + y_mult * -ft_face->glyph->metrics.height;
|
||||
|
||||
extents->x_bearing = floorf (x1);
|
||||
extents->y_bearing = floorf (y1);
|
||||
extents->width = ceilf (x2) - extents->x_bearing;
|
||||
extents->height = ceilf (y2) - extents->y_bearing;
|
||||
extents->x_bearing = round (x1);
|
||||
extents->y_bearing = round (y1);
|
||||
extents->width = round (x2) - extents->x_bearing;
|
||||
extents->height = round (y2) - extents->y_bearing;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue