mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[instance] update post.italicAngle
Add tests for instancing glyf/hmtx
This commit is contained in:
parent
4882c717b5
commit
f887ee0c67
8 changed files with 24 additions and 0 deletions
|
@ -102,6 +102,14 @@ struct post
|
|||
if (!serialize (c->serializer, glyph_names))
|
||||
return_trace (false);
|
||||
|
||||
if (c->plan->user_axes_location->has (HB_TAG ('s','l','n','t')) &&
|
||||
!c->plan->pinned_at_default)
|
||||
{
|
||||
float italic_angle = c->plan->user_axes_location->get (HB_TAG ('s','l','n','t'));
|
||||
italic_angle = hb_max (-90.f, hb_min (italic_angle, 90.f));
|
||||
post_prime->italicAngle.set_float (italic_angle);
|
||||
}
|
||||
|
||||
if (glyph_names && version.major == 2)
|
||||
return_trace (v2X.subset (c));
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
test/subset/data/fonts/Roboto-Variable.composite.ttf
Normal file
BIN
test/subset/data/fonts/Roboto-Variable.composite.ttf
Normal file
Binary file not shown.
13
test/subset/data/tests/instantiate_glyf.tests
Normal file
13
test/subset/data/tests/instantiate_glyf.tests
Normal file
|
@ -0,0 +1,13 @@
|
|||
FONTS:
|
||||
Roboto-Variable.ABC.ttf
|
||||
Roboto-Variable.composite.ttf
|
||||
|
||||
PROFILES:
|
||||
default.txt
|
||||
|
||||
SUBSETS:
|
||||
*
|
||||
|
||||
INSTANCES:
|
||||
wght=650,wdth=85
|
||||
wght=200,wdth=90
|
|
@ -50,6 +50,9 @@ tests = [
|
|||
'glyph_names',
|
||||
'post',
|
||||
'32bit_var_store',
|
||||
# instacing tests, enable when --instance is not experimental
|
||||
# 'pin_all_at_default',
|
||||
# 'instantiate_glyf',
|
||||
]
|
||||
|
||||
repack_tests = [
|
||||
|
|
Loading…
Add table
Reference in a new issue