Skip empty outlines

This commit is contained in:
Matthias Clasen 2022-12-23 19:07:32 -05:00
parent bd61e645ff
commit 885dbcfba0
1 changed files with 2 additions and 2 deletions

View File

@ -376,7 +376,7 @@ hb_paint_extents_push_clip_glyph (hb_paint_funcs_t *funcs HB_UNUSED,
hb_draw_funcs_t *draw_extent_funcs = hb_draw_extent_get_funcs ();
hb_font_draw_glyph (font, glyph, draw_extent_funcs, &extents);
hb_draw_funcs_destroy (draw_extent_funcs);
if (extents.xmin < extents.xmax)
c->push_clip (extents);
}