diff options
author | Mattias Andrée <maandree@kth.se> | 2020-04-26 18:06:29 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2020-04-26 18:06:29 +0200 |
commit | b5f0b34189540cab87289091a4e5e32e88ad738b (patch) | |
tree | 98a164aeeb5c3427516c1e14bef4c1b876be4462 /demo.c | |
parent | Store font count in context (diff) | |
download | libskrift-b5f0b34189540cab87289091a4e5e32e88ad738b.tar.gz libskrift-b5f0b34189540cab87289091a4e5e32e88ad738b.tar.bz2 libskrift-b5f0b34189540cab87289091a4e5e32e88ad738b.tar.xz |
Prepare for glyph caching support
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | demo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ main(void) return -1; } height = libskrift_points_to_pixels(72, &rendering); - if (libskrift_create_context(&ctx, &font, 1, height, &rendering)) { + if (libskrift_create_context(&ctx, &font, 1, height, &rendering, NULL)) { perror("libskrift_create_context"); return -1; } |