mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[instancer] update hhea vertical metrics with OS/2 ones
This commit is contained in:
parent
6a3ca37373
commit
f1ac36ba7f
5 changed files with 36 additions and 1 deletions
|
@ -145,6 +145,29 @@ struct hmtxvmtx
|
|||
table->minTrailingBearing = min_rsb;
|
||||
table->maxExtent = max_extent;
|
||||
}
|
||||
|
||||
if (T::is_horizontal)
|
||||
{
|
||||
const auto &OS2 = *c->plan->source->table.OS2;
|
||||
if (OS2.has_data () &&
|
||||
table->ascender == OS2.sTypoAscender &&
|
||||
table->descender == OS2.sTypoDescender &&
|
||||
table->lineGap == OS2.sTypoLineGap)
|
||||
{
|
||||
table->ascender = static_cast<int> (roundf (OS2.sTypoAscender +
|
||||
MVAR.get_var (HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER,
|
||||
c->plan->normalized_coords.arrayZ,
|
||||
c->plan->normalized_coords.length)));
|
||||
table->descender = static_cast<int> (roundf (OS2.sTypoDescender +
|
||||
MVAR.get_var (HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER,
|
||||
c->plan->normalized_coords.arrayZ,
|
||||
c->plan->normalized_coords.length)));
|
||||
table->lineGap = static_cast<int> (roundf (OS2.sTypoLineGap +
|
||||
MVAR.get_var (HB_OT_METRICS_TAG_HORIZONTAL_LINE_GAP,
|
||||
c->plan->normalized_coords.arrayZ,
|
||||
c->plan->normalized_coords.length)));
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Binary file not shown.
BIN
test/subset/data/fonts/playwrite_mm.subset.ttf
Normal file
BIN
test/subset/data/fonts/playwrite_mm.subset.ttf
Normal file
Binary file not shown.
11
test/subset/data/tests/sync_vmetrics.tests
Normal file
11
test/subset/data/tests/sync_vmetrics.tests
Normal file
|
@ -0,0 +1,11 @@
|
|||
FONTS:
|
||||
playwrite_mm.subset.ttf
|
||||
|
||||
PROFILES:
|
||||
default.txt
|
||||
|
||||
SUBSETS:
|
||||
*
|
||||
|
||||
INSTANCES:
|
||||
SPED=25,YEXT=520,wght=100:400,slnt=18
|
|
@ -79,7 +79,8 @@ if get_option('experimental_api')
|
|||
'gdef_partial_instance',
|
||||
'value_format_partial_instance',
|
||||
'feature_variation_instance_collect_lookups',
|
||||
'iftb_requirements'
|
||||
'iftb_requirements',
|
||||
'sync_vmetrics',
|
||||
]
|
||||
endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue