diff options
Diffstat (limited to 'include/fitz/pixmap.h')
-rw-r--r-- | include/fitz/pixmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/pixmap.h b/include/fitz/pixmap.h index 24584f30..7b8bfb1e 100644 --- a/include/fitz/pixmap.h +++ b/include/fitz/pixmap.h @@ -10,10 +10,10 @@ struct fz_pixmap_s }; fz_error *fz_newpixmap(fz_pixmap **mapp, fz_colorspace *cs, int x, int y, int w, int h, int n, int a); -fz_error *fz_convertpixmap(fz_pixmap **dstp, fz_pixmap *src, fz_colorspace *dstcs); void fz_debugpixmap(fz_pixmap *map); void fz_freepixmap(fz_pixmap *map); void fz_clearpixmap(fz_pixmap *map); +void fz_convertpixmap(fz_pixmap *src, fz_pixmap *dst); void fz_blendover(fz_pixmap *src, fz_pixmap *dst); void fz_blendmask(fz_pixmap *dst, fz_pixmap *color, fz_pixmap *shape); |