[subset] avoid writing out duplicate extra glyph names in post table

Add check for possible duplicate with other name index
This commit is contained in:
Qunxin Liu 2021-11-08 09:36:31 -08:00 committed by Behdad Esfahbod
parent 325f26290e
commit 84dc4e85e8
14 changed files with 34 additions and 12 deletions

View File

@ -79,6 +79,7 @@ HB_INTERNAL bool postV2Tail::subset (hb_subset_context_t *c) const
post::accelerator_t _post; post::accelerator_t _post;
_post.init (c->plan->source); _post.init (c->plan->source);
hb_hashmap_t<hb_bytes_t, unsigned, std::nullptr_t, unsigned, nullptr, (unsigned)-1> glyph_name_to_new_index;
for (hb_codepoint_t new_gid = 0; new_gid < num_glyphs; new_gid++) for (hb_codepoint_t new_gid = 0; new_gid < num_glyphs; new_gid++)
{ {
hb_codepoint_t old_gid = reverse_glyph_map.get (new_gid); hb_codepoint_t old_gid = reverse_glyph_map.get (new_gid);
@ -90,22 +91,28 @@ HB_INTERNAL bool postV2Tail::subset (hb_subset_context_t *c) const
else else
{ {
hb_bytes_t s = _post.find_glyph_name (old_gid); hb_bytes_t s = _post.find_glyph_name (old_gid);
int standard_glyph_index = -1; new_index = glyph_name_to_new_index.get (s);
for (unsigned i = 0; i < format1_names_length; i++) if (new_index == (unsigned)-1)
{ {
if (s == format1_names (i)) int standard_glyph_index = -1;
for (unsigned i = 0; i < format1_names_length; i++)
{ {
standard_glyph_index = i; if (s == format1_names (i))
break; {
standard_glyph_index = i;
break;
}
} }
if (standard_glyph_index == -1)
{
new_index = 258 + i;
i++;
}
else
{ new_index = standard_glyph_index; }
glyph_name_to_new_index.set (s, new_index);
} }
if (standard_glyph_index == -1)
{
new_index = 258 + i;
i++;
}
else
{ new_index = standard_glyph_index; }
old_new_index_map.set (old_index, new_index); old_new_index_map.set (old_index, new_index);
} }
old_gid_new_index_map.set (old_gid, new_index); old_gid_new_index_map.set (old_gid, new_index);

View File

@ -51,6 +51,7 @@ EXTRA_DIST += \
expected/variable \ expected/variable \
expected/glyph_names \ expected/glyph_names \
expected/math \ expected/math \
expected/post \
fonts \ fonts \
profiles \ profiles \
$(NULL) $(NULL)

View File

@ -43,6 +43,7 @@ TESTS = \
tests/variable.tests \ tests/variable.tests \
tests/glyph_names.tests \ tests/glyph_names.tests \
tests/math.tests \ tests/math.tests \
tests/post.tests \
$(NULL) $(NULL)
# TODO: re-enable once colrv1 subsetting is stabilized. # TODO: re-enable once colrv1 subsetting is stabilized.

Binary file not shown.

View File

@ -0,0 +1,12 @@
FONTS:
SreeKrushnadevaraya-Regular.ttf
PROFILES:
default.txt
retain-gids.txt
glyph-names.txt
notdef-outline.txt
SUBSETS:
U+c30,U+c36,U+c40,U+c4d
*

View File

@ -45,6 +45,7 @@ tests = [
'cbdt', 'cbdt',
'variable', 'variable',
'glyph_names', 'glyph_names',
'post',
] ]
repack_tests = [ repack_tests = [