summaryrefslogtreecommitdiff
path: root/draw/draw_glyph.c
diff options
context:
space:
mode:
Diffstat (limited to 'draw/draw_glyph.c')
-rw-r--r--draw/draw_glyph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw/draw_glyph.c b/draw/draw_glyph.c
index 0761b8a9..cef9d7fa 100644
--- a/draw/draw_glyph.c
+++ b/draw/draw_glyph.c
@@ -129,7 +129,7 @@ fz_render_glyph(fz_context *ctx, fz_font *font, int gid, fz_matrix ctm, fz_color
key.d = ctm.d * 65536;
key.e = (ctm.e - floorf(ctm.e)) * 256;
key.f = (ctm.f - floorf(ctm.f)) * 256;
- key.aa = fz_get_aa_level(ctx);
+ key.aa = fz_aa_level(ctx);
fz_lock(ctx, FZ_LOCK_GLYPHCACHE);
val = fz_hash_find(ctx, cache->hash, &key);