diff options
author | Robin Watts <robin.watts@artifex.com> | 2016-06-10 15:01:29 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2016-06-13 13:09:09 +0100 |
commit | 94b09b5ed609325a90652d024d2120b721cf0e5d (patch) | |
tree | 10d977d65b887314ad898e7153929bcbb74f43fa /source | |
parent | 092e97a36a5ad6485d0ef978fa187583c4efb9ce (diff) | |
download | mupdf-94b09b5ed609325a90652d024d2120b721cf0e5d.tar.xz |
Add missing restrict.
Missing qualifier from prototype.
Diffstat (limited to 'source')
-rw-r--r-- | source/fitz/draw-imp.h | 2 |
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); |