summaryrefslogtreecommitdiff
path: root/fitz/fitz.h
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-07-15 20:38:23 +0000
committerTor Andersson <tor@ghostscript.com>2010-07-15 20:38:23 +0000
commit48c7edd1961e2dbb3aaff05618b701001f879c31 (patch)
treeac6d3169d50708c4083d866b88a0d73a6c706bd2 /fitz/fitz.h
parentda6068d929e5bf9dc79b546bd014bd46289630e2 (diff)
downloadmupdf-48c7edd1961e2dbb3aaff05618b701001f879c31.tar.xz
Check page for transparency to install a page-level transparency group.
Diffstat (limited to 'fitz/fitz.h')
-rw-r--r--fitz/fitz.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h
index e8fb9efe..38b26619 100644
--- a/fitz/fitz.h
+++ b/fitz/fitz.h
@@ -759,8 +759,8 @@ struct fz_font_s
fz_buffer **t3procs; /* has 256 entries if used */
float *t3widths; /* has 256 entries if used */
void *t3xref; /* a pdf_xref for the callback */
- fz_error (*t3runcontentstream)(struct fz_device_s *dev, fz_matrix ctm,
- struct pdf_xref_s *xref, fz_obj *resources, fz_buffer *contents);
+ fz_error (*t3run)(struct pdf_xref_s *xref, fz_obj *resources, fz_buffer *contents,
+ struct fz_device_s *dev, fz_matrix ctm);
fz_rect bbox;
@@ -1016,7 +1016,7 @@ struct fz_device_s
void (*beginmask)(void *, fz_rect, int luminosity, fz_colorspace *cs, float *bc);
void (*endmask)(void *);
- void (*begingroup)(void *, fz_rect, fz_colorspace *, int isolated, int knockout, fz_blendmode blendmode);
+ void (*begingroup)(void *, fz_rect, int isolated, int knockout, fz_blendmode blendmode);
void (*endgroup)(void *);
};