Merge pull request #5156 from harfbuzz/coretext-variations-always

[coretext] Always set all variation axes
This commit is contained in:
Behdad Esfahbod 2025-03-17 09:02:41 -06:00 committed by GitHub
commit f9aabf7062
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,6 @@ _hb_coretext_shaper_font_data_create (hb_font_t *font)
return nullptr;
}
if (font->num_coords)
{
CFMutableDictionaryRef variations =
CFDictionaryCreateMutable (kCFAllocatorDefault,
@ -81,12 +80,16 @@ _hb_coretext_shaper_font_data_create (hb_font_t *font)
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
for (unsigned i = 0; i < font->num_coords; i++)
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++)
{
hb_ot_var_axis_info_t info;
unsigned int c = 1;
hb_ot_var_get_axis_infos (font->face, i, &c, &info);
float v = hb_clamp (font->design_coords[i], info.min_value, info.max_value);
float v = i < font->num_coords ?
hb_clamp (font->design_coords[i], info.min_value, info.max_value) :
info.default_value;
CFNumberRef tag_number = CFNumberCreate (kCFAllocatorDefault, kCFNumberIntType, &info.tag);
CFNumberRef value_number = CFNumberCreate (kCFAllocatorDefault, kCFNumberFloatType, &v);