mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 13:05:04 +00:00
[coretext] Only try setting variations if a variable font
Seems to fix https://github.com/harfbuzz/harfbuzz/issues/5163
This commit is contained in:
parent
4822cb7672
commit
b3d48c2c1b
1 changed files with 3 additions and 1 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue