[coretext] Only try setting variations if a variable font

Seems to fix https://github.com/harfbuzz/harfbuzz/issues/5163
This commit is contained in:
Behdad Esfahbod 2025-03-19 14:53:10 -06:00
parent 4822cb7672
commit b3d48c2c1b

View file

@ -73,6 +73,9 @@ _hb_coretext_shaper_font_data_create (hb_font_t *font)
return nullptr;
}
unsigned num_axes = hb_ot_var_get_axis_count (face);
// https://github.com/harfbuzz/harfbuzz/issues/5163
if (num_axes)
{
CFMutableDictionaryRef variations =
CFDictionaryCreateMutable (kCFAllocatorDefault,
@ -80,7 +83,6 @@ _hb_coretext_shaper_font_data_create (hb_font_t *font)
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
unsigned num_axes = hb_ot_var_get_axis_count (face);
unsigned count = hb_max (num_axes, font->num_coords);
for (unsigned i = 0; i < count; i++)
{