diff --git a/test/draw/hb-draw-all.c b/test/draw/hb-draw-all.c new file mode 100644 index 000000000..867083704 --- /dev/null +++ b/test/draw/hb-draw-all.c @@ -0,0 +1,38 @@ +#include + +#include +#include + +int main (int argc, char **argv) +{ + if (argc < 3) + { + fprintf (stderr, "Usage: %s font-file [font-funcs] [wght]\n", argv[0]); + return 1; + } + + hb_face_t *face = hb_face_create_from_file_or_fail (argv[1], 0); + hb_font_t *font = hb_font_create (face); + + if (argc > 2) + hb_font_set_funcs_using (font, argv[2]); + + if (argc > 3) + { + hb_variation_t variations[] = { + { HB_TAG ('w', 'g', 'h', 't'), atoi (argv[3]) }, + }; + hb_font_set_variations (font, variations, 1); + } + + hb_draw_funcs_t *funcs = hb_draw_funcs_create (); + + unsigned glyph_count = hb_face_get_glyph_count (face); + for (unsigned gid = 0; gid < glyph_count; gid++) + hb_font_draw_glyph (font, gid, funcs, NULL); + + hb_draw_funcs_destroy (funcs); + hb_font_destroy (font); + hb_face_destroy (face); + return 0; +} diff --git a/test/meson.build b/test/meson.build index c9a3ec715..e7286932e 100644 --- a/test/meson.build +++ b/test/meson.build @@ -3,3 +3,4 @@ subdir('fuzzing') subdir('threads') subdir('shape') subdir('api') +subdir('draw')