diff --git a/src/hb-ot-var-common.hh b/src/hb-ot-var-common.hh index efbbfb25d..3ab58ae30 100644 --- a/src/hb-ot-var-common.hh +++ b/src/hb-ot-var-common.hh @@ -885,9 +885,9 @@ struct TupleVariationData * no need to do find_shared_points () again */ hb_vector_t *shared_points_bytes = nullptr; - /* total compiled byte size as TupleVariationData format, initialized to its - * min_size: 4 */ - unsigned compiled_byte_size = 4; + /* total compiled byte size as TupleVariationData format, initialized to 0 */ + unsigned compiled_byte_size = 0; + bool needs_padding = false; /* for gvar iup delta optimization: whether this is a composite glyph */ bool is_composite = false; @@ -1219,12 +1219,21 @@ struct TupleVariationData bool compile_bytes (const hb_map_t& axes_index_map, const hb_map_t& axes_old_index_tag_map, bool use_shared_points, + bool is_gvar = false, const hb_hashmap_t*, unsigned>* shared_tuples_idx_map = nullptr) { + // return true for empty glyph + if (!tuple_vars) + return true; + // compile points set and store data in hashmap if (!compile_all_point_sets ()) return false; + /* total compiled byte size as TupleVariationData format, initialized to its + * min_size: 4 */ + compiled_byte_size += 4; + if (use_shared_points) { find_shared_points (); @@ -1253,6 +1262,13 @@ struct TupleVariationData return false; compiled_byte_size += tuple.compiled_tuple_header.length + points_data_length + tuple.compiled_deltas.length; } + + if (is_gvar && (compiled_byte_size % 2)) + { + needs_padding = true; + compiled_byte_size += 1; + } + return true; } @@ -1295,7 +1311,7 @@ struct TupleVariationData } /* padding for gvar */ - if (is_gvar && (compiled_byte_size % 2)) + if (is_gvar && needs_padding) { HBUINT8 pad; pad = 0; diff --git a/src/hb-ot-var-gvar-table.hh b/src/hb-ot-var-gvar-table.hh index b021a00f6..96cc2e887 100644 --- a/src/hb-ot-var-gvar-table.hh +++ b/src/hb-ot-var-gvar-table.hh @@ -140,6 +140,7 @@ struct glyph_variations_t for (tuple_variations_t& vars: glyph_variations) if (!vars.compile_bytes (axes_index_map, axes_old_index_tag_map, true, /* use shared points*/ + true, &shared_tuples_idx_map)) return false; diff --git a/test/subset/data/expected/instantiate_gvar_padding/googlesansflex_subset.default.all.ROND=100.0,slnt=0.0,wdth=150.0,wght=500.0.iup_optimize.ttf b/test/subset/data/expected/instantiate_gvar_padding/googlesansflex_subset.default.all.ROND=100.0,slnt=0.0,wdth=150.0,wght=500.0.iup_optimize.ttf new file mode 100644 index 000000000..b3bdca5f9 Binary files /dev/null and b/test/subset/data/expected/instantiate_gvar_padding/googlesansflex_subset.default.all.ROND=100.0,slnt=0.0,wdth=150.0,wght=500.0.iup_optimize.ttf differ diff --git a/test/subset/data/expected/instantiate_gvar_padding/googlesansflex_subset.default.all.ROND=100.0,slnt=0.0,wdth=150.0,wght=500.0.ttf b/test/subset/data/expected/instantiate_gvar_padding/googlesansflex_subset.default.all.ROND=100.0,slnt=0.0,wdth=150.0,wght=500.0.ttf new file mode 100644 index 000000000..0f88afd97 Binary files /dev/null and b/test/subset/data/expected/instantiate_gvar_padding/googlesansflex_subset.default.all.ROND=100.0,slnt=0.0,wdth=150.0,wght=500.0.ttf differ diff --git a/test/subset/data/fonts/googlesansflex_subset.ttf b/test/subset/data/fonts/googlesansflex_subset.ttf new file mode 100644 index 000000000..e6d670ce8 Binary files /dev/null and b/test/subset/data/fonts/googlesansflex_subset.ttf differ diff --git a/test/subset/data/tests/instantiate_gvar_padding.tests b/test/subset/data/tests/instantiate_gvar_padding.tests new file mode 100644 index 000000000..f02f692db --- /dev/null +++ b/test/subset/data/tests/instantiate_gvar_padding.tests @@ -0,0 +1,15 @@ +FONTS: +googlesansflex_subset.ttf + +PROFILES: +default.txt + +SUBSETS: +* + +INSTANCES: +ROND=100.0,slnt=0.0,wdth=150.0,wght=500.0 + +IUP_OPTIONS: +Yes +No diff --git a/test/subset/meson.build b/test/subset/meson.build index b35489329..dffba6463 100644 --- a/test/subset/meson.build +++ b/test/subset/meson.build @@ -79,6 +79,7 @@ tests = [ 'sync_vmetrics', 'empty_region_vardata', 'colrv1_partial_instance', + 'instantiate_gvar_padding', ] if get_option('experimental_api')