summaryrefslogtreecommitdiff
path: root/fitz/dev_draw.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-07-17 11:25:27 +0000
committerTor Andersson <tor@ghostscript.com>2010-07-17 11:25:27 +0000
commitef3cc79b01ce4e0d5dbd5e9e43aaf07215b57f0b (patch)
treed18bf7a0c00ea47c93dca722715c071d24e44820 /fitz/dev_draw.c
parent9872faa4ce9699cc0f93ee68ba70f84d2b7579ad (diff)
downloadmupdf-ef3cc79b01ce4e0d5dbd5e9e43aaf07215b57f0b.tar.xz
Move device colorspace contants into the fitz namespace.
Diffstat (limited to 'fitz/dev_draw.c')
-rw-r--r--fitz/dev_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/dev_draw.c b/fitz/dev_draw.c
index 0e7e8138..3c94c5c3 100644
--- a/fitz/dev_draw.c
+++ b/fitz/dev_draw.c
@@ -833,7 +833,7 @@ fz_drawbeginmask(void *user, fz_rect rect, int luminosity, fz_colorspace *colors
bbox = fz_roundrect(rect);
bbox = fz_intersectbbox(bbox, dev->scissor);
- dest = fz_newpixmapwithrect(pdf_devicegray, bbox);
+ dest = fz_newpixmapwithrect(fz_devicegray, bbox);
if (luminosity)
fz_clearpixmap(dest, 255);