From 998ce52b7ea7ebae99c305991a28b6c9b6788aad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 5 Jul 2019 09:31:03 +0200 Subject: [PATCH] render: bump number of glyphs we can render in a single call --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 11dc46d9..1b1aea13 100644 --- a/main.c +++ b/main.c @@ -78,7 +78,7 @@ attrs_to_font(struct context *c, const struct attributes *attrs) } struct glyph_sequence { - cairo_glyph_t glyphs[10000]; + cairo_glyph_t glyphs[100000]; cairo_glyph_t *g; int count;