summaryrefslogtreecommitdiff
path: root/source/fitz/draw-device.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-03-12 13:21:54 +0100
committerTor Andersson <tor.andersson@artifex.com>2018-03-12 15:49:25 +0100
commitcc83451bdfde6930c26e741ac55d2f9cd986a9c8 (patch)
treec788abceed625e33c77e52cf581d1a5a78cd730e /source/fitz/draw-device.c
parenta7aac9428675cd576ac2e55fe0a61fa6091ba27a (diff)
downloadmupdf-cc83451bdfde6930c26e741ac55d2f9cd986a9c8.tar.xz
Ensure we pass AA options to draw device and set text_bits appropriately.
aa.text_bits should be 0 when using the 'any' or 'center' rasterizers.
Diffstat (limited to 'source/fitz/draw-device.c')
-rw-r--r--source/fitz/draw-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/draw-device.c b/source/fitz/draw-device.c
index 12ea4aa1..2ae7354b 100644
--- a/source/fitz/draw-device.c
+++ b/source/fitz/draw-device.c
@@ -3283,7 +3283,7 @@ fz_new_draw_device_with_options(fz_context *ctx, const fz_draw_options *opts, co
else
fz_clear_pixmap_with_value(ctx, *pixmap, 255);
- dev = fz_new_draw_device(ctx, &transform, *pixmap);
+ dev = new_draw_device(ctx, &transform, *pixmap, &aa, NULL, NULL);
}
fz_catch(ctx)
{