mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
Merge pull request #5156 from harfbuzz/coretext-variations-always
[coretext] Always set all variation axes
This commit is contained in:
commit
f9aabf7062
1 changed files with 6 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue