[util/draw] Explicitly chain from render_color_glyph to render_glyph

This seems to be more robust.  See:
https://github.com/harfbuzz/harfbuzz/pull/3411#issuecomment-1033176635
This commit is contained in:
Behdad Esfahbod 2022-02-08 17:52:56 -06:00
parent 6a3dec357c
commit 22f2c78c28
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ render_color_glyph (cairo_scaled_font_t *scaled_font,
if (ret != CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED)
return ret;
return ret;
return render_glyph (scaled_font, glyph, cr, extents);
}
#endif