Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
43253e404d
Binary file not shown.
Binary file not shown.
|
@ -133,6 +133,48 @@ test_subset_cmap_empty_tables (void)
|
||||||
hb_face_destroy (face_empty);
|
hb_face_destroy (face_empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_subset_cmap_noto_color_emoji_noop (void)
|
||||||
|
{
|
||||||
|
hb_face_t *face = hb_test_open_font_file ("fonts/NotoColorEmoji.cmap.ttf");
|
||||||
|
|
||||||
|
hb_set_t *codepoints = hb_set_create ();
|
||||||
|
hb_face_t *face_subset;
|
||||||
|
hb_set_add (codepoints, 0x38);
|
||||||
|
hb_set_add (codepoints, 0x39);
|
||||||
|
hb_set_add (codepoints, 0xAE);
|
||||||
|
hb_set_add (codepoints, 0x2049);
|
||||||
|
hb_set_add (codepoints, 0x20E3);
|
||||||
|
face_subset = hb_subset_test_create_subset (face, hb_subset_test_create_input (codepoints));
|
||||||
|
hb_set_destroy (codepoints);
|
||||||
|
|
||||||
|
hb_subset_test_check (face, face_subset, HB_TAG ('c','m','a','p'));
|
||||||
|
|
||||||
|
hb_face_destroy (face_subset);
|
||||||
|
hb_face_destroy (face);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_subset_cmap_noto_color_emoji_non_consecutive_glyphs (void)
|
||||||
|
{
|
||||||
|
hb_face_t *face = hb_test_open_font_file ("fonts/NotoColorEmoji.cmap.ttf");
|
||||||
|
hb_face_t *face_expected = hb_test_open_font_file ("fonts/NotoColorEmoji.cmap.38,AE,2049.ttf");
|
||||||
|
|
||||||
|
hb_set_t *codepoints = hb_set_create ();
|
||||||
|
hb_face_t *face_subset;
|
||||||
|
hb_set_add (codepoints, 0x38);
|
||||||
|
hb_set_add (codepoints, 0xAE);
|
||||||
|
hb_set_add (codepoints, 0x2049);
|
||||||
|
face_subset = hb_subset_test_create_subset (face, hb_subset_test_create_input (codepoints));
|
||||||
|
hb_set_destroy (codepoints);
|
||||||
|
|
||||||
|
hb_subset_test_check (face_expected, face_subset, HB_TAG ('c','m','a','p'));
|
||||||
|
|
||||||
|
hb_face_destroy (face_subset);
|
||||||
|
hb_face_destroy (face_expected);
|
||||||
|
hb_face_destroy (face);
|
||||||
|
}
|
||||||
|
|
||||||
// TODO(rsheeter) test cmap to no codepoints
|
// TODO(rsheeter) test cmap to no codepoints
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -145,6 +187,8 @@ main (int argc, char **argv)
|
||||||
hb_test_add (test_subset_cmap_non_consecutive_glyphs);
|
hb_test_add (test_subset_cmap_non_consecutive_glyphs);
|
||||||
hb_test_add (test_subset_cmap4_no_exceeding_maximum_codepoint);
|
hb_test_add (test_subset_cmap4_no_exceeding_maximum_codepoint);
|
||||||
hb_test_add (test_subset_cmap_empty_tables);
|
hb_test_add (test_subset_cmap_empty_tables);
|
||||||
|
hb_test_add (test_subset_cmap_noto_color_emoji_noop);
|
||||||
|
hb_test_add (test_subset_cmap_noto_color_emoji_non_consecutive_glyphs);
|
||||||
|
|
||||||
return hb_test_run();
|
return hb_test_run();
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,5 +1,6 @@
|
||||||
FONTS:
|
FONTS:
|
||||||
cmap14_font1.otf
|
cmap14_font1.otf
|
||||||
|
cmap14_font2.otf
|
||||||
|
|
||||||
PROFILES:
|
PROFILES:
|
||||||
default.txt
|
default.txt
|
||||||
|
|
Loading…
Reference in New Issue