summaryrefslogtreecommitdiff
path: root/include/fitz/pixmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fitz/pixmap.h')
-rw-r--r--include/fitz/pixmap.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/fitz/pixmap.h b/include/fitz/pixmap.h
index f46c2c05..462b4ad6 100644
--- a/include/fitz/pixmap.h
+++ b/include/fitz/pixmap.h
@@ -3,7 +3,6 @@ typedef struct fz_colorspace_s fz_colorspace;
struct fz_pixmap_s
{
- int refcount;
int x, y, w, h;
int n, a;
int stride;
@@ -12,10 +11,10 @@ struct fz_pixmap_s
};
fz_error *fz_newpixmap(fz_pixmap **mapp, int x, int y, int w, int h, int n, int a);
-fz_pixmap *fz_keeppixmap(fz_pixmap *map);
-void fz_droppixmap(fz_pixmap *map);
+void fz_debugpixmap(fz_pixmap *map);
+void fz_freepixmap(fz_pixmap *map);
void fz_clearpixmap(fz_pixmap *map);
-void fz_blendover(fz_pixmap *dst, fz_pixmap *fg, fz_pixmap *bg);
+void fz_blendover(fz_pixmap *src, fz_pixmap *dst);
void fz_blendmask(fz_pixmap *dst, fz_pixmap *color, fz_pixmap *shape);