[ft] If there's no variations set, don't set them on hb-font

pull/683/head
Behdad Esfahbod 7 years ago
parent ed2f458b14
commit cb43bdbc2f
  1. 8
      src/hb-ft.cc

@ -635,10 +635,18 @@ hb_ft_font_changed (hb_font_t *font)
{
if (!FT_Get_Var_Blend_Coordinates (ft_face, mm_var->num_axis, ft_coords))
{
bool nonzero = false;
for (unsigned int i = 0; i < mm_var->num_axis; ++i)
{
coords[i] = ft_coords[i] >>= 2;
nonzero = nonzero || coords[i];
}
if (nonzero)
hb_font_set_var_coords_normalized (font, coords, mm_var->num_axis);
else
hb_font_set_var_coords_normalized (font, nullptr, 0);
}
}
free (coords);

Loading…
Cancel
Save