summaryrefslogtreecommitdiff
path: root/fitz
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-07-25 13:34:38 +0000
committerTor Andersson <tor@ghostscript.com>2010-07-25 13:34:38 +0000
commitbf7a5bbe52b3d6f74db37756518c4215a3c04a62 (patch)
tree1a953168844898852176c8d1dec8db62680bf3a8 /fitz
parentf1cac331247fbf673e02bdb8a657e4cf56a88cb1 (diff)
downloadmupdf-bf7a5bbe52b3d6f74db37756518c4215a3c04a62.tar.xz
Use a separate decodetile function for non-indexed images.
Diffstat (limited to 'fitz')
-rw-r--r--fitz/fitz.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h
index 5aa2dd0b..150c3e56 100644
--- a/fitz/fitz.h
+++ b/fitz/fitz.h
@@ -1135,7 +1135,8 @@ void fz_executedisplaylist(fz_displaylist *list, fz_device *dev, fz_matrix ctm);
void fz_accelerate(void);
void fz_acceleratearch(void);
-void fz_decodetile(fz_pixmap *pix, float *decode, int maxval);
+void fz_decodetile(fz_pixmap *pix, float *decode);
+void fz_decodeindexedtile(fz_pixmap *pix, float *decode, int maxval);
void fz_unpacktile(fz_pixmap *dst, unsigned char * restrict src, int n, int depth, int stride, int scale);
void fz_blendpixmapswithmode(fz_pixmap *dst, fz_pixmap *src, fz_blendmode blendmode);