diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-13 10:50:39 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-13 10:50:39 +0200 |
commit | 5e5ff796c9d1b4c4e4360e6823ec338845d26937 (patch) | |
tree | e1e8969c076339a3dcf73e92316ee89736531cf4 /include/fitz/pixmap.h | |
parent | 990c5d830eeb4ee2677eecf30fdd6f623bb37c61 (diff) | |
download | mupdf-5e5ff796c9d1b4c4e4360e6823ec338845d26937.tar.xz |
basic rendering
Diffstat (limited to 'include/fitz/pixmap.h')
-rw-r--r-- | include/fitz/pixmap.h | 7 |
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); |