summaryrefslogtreecommitdiff
path: root/fitz/fitz_draw.h
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/fitz_draw.h')
-rw-r--r--fitz/fitz_draw.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/fitz/fitz_draw.h b/fitz/fitz_draw.h
index e622d81a..077edd0b 100644
--- a/fitz/fitz_draw.h
+++ b/fitz/fitz_draw.h
@@ -71,10 +71,18 @@ fz_pixmap * fz_scalepixmap(fz_pixmap *src, int xdenom, int ydenom);
* The device interface.
*/
+enum
+{
+ FZ_IGNOREIMAGE = 1,
+ FZ_IGNORESHADE = 2,
+};
+
typedef struct fz_device_s fz_device;
struct fz_device_s
{
+ int hints;
+
void *user;
void (*freeuser)(void *);