summaryrefslogtreecommitdiff
path: root/source/fitz/draw-imp.h
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-06-10 15:01:29 +0100
committerRobin Watts <robin.watts@artifex.com>2016-06-13 13:09:09 +0100
commit94b09b5ed609325a90652d024d2120b721cf0e5d (patch)
tree10d977d65b887314ad898e7153929bcbb74f43fa /source/fitz/draw-imp.h
parent092e97a36a5ad6485d0ef978fa187583c4efb9ce (diff)
downloadmupdf-94b09b5ed609325a90652d024d2120b721cf0e5d.tar.xz
Add missing restrict.
Missing qualifier from prototype.
Diffstat (limited to 'source/fitz/draw-imp.h')
-rw-r--r--source/fitz/draw-imp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/draw-imp.h b/source/fitz/draw-imp.h
index bb94be4d..228324cc 100644
--- a/source/fitz/draw-imp.h
+++ b/source/fitz/draw-imp.h
@@ -38,7 +38,7 @@ fz_solid_color_painter_t *fz_get_solid_color_painter(int n, const unsigned char
fz_span_painter_t *fz_get_span_painter(int da, int sa, int n, int alpha);
fz_span_color_painter_t *fz_get_span_color_painter(int n, int da, const unsigned char * restrict color);
-void fz_paint_image(fz_pixmap *dst, const fz_irect * restrict scissor, fz_pixmap * restrict shape, const fz_pixmap * restrict img, const fz_matrix * restrict ctm, int alpha, int lerp_allowed, int gridfit_as_tiled);
+void fz_paint_image(fz_pixmap * restrict dst, const fz_irect * restrict scissor, fz_pixmap * restrict shape, const fz_pixmap * restrict img, const fz_matrix * restrict ctm, int alpha, int lerp_allowed, int gridfit_as_tiled);
void fz_paint_image_with_color(fz_pixmap * restrict dst, const fz_irect * restrict scissor, fz_pixmap *restrict shape, const fz_pixmap * restrict img, const fz_matrix * restrict ctm, const unsigned char * restrict colorbv, int lerp_allowed, int gridfit_as_tiled);
void fz_paint_pixmap(fz_pixmap * restrict dst, const fz_pixmap * restrict src, int alpha);