summaryrefslogtreecommitdiff
path: root/fitz/fitz-internal.h
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2013-05-21 14:13:59 +0100
committerRobin Watts <robin.watts@artifex.com>2013-05-21 14:20:50 +0100
commit23dea6df2cb85a136ba6d8d8e34eebe4e105db24 (patch)
tree24f17851de0fadc51ac9691361b1cca97a48c332 /fitz/fitz-internal.h
parente317abb479109200f2ec489b2868e671a060a585 (diff)
downloadmupdf-23dea6df2cb85a136ba6d8d8e34eebe4e105db24.tar.xz
Add monochrome PWG output routines.
Diffstat (limited to 'fitz/fitz-internal.h')
-rw-r--r--fitz/fitz-internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fitz/fitz-internal.h b/fitz/fitz-internal.h
index 25ab6860..b72f09d0 100644
--- a/fitz/fitz-internal.h
+++ b/fitz/fitz-internal.h
@@ -853,10 +853,11 @@ struct fz_bitmap_s
{
int refs;
int w, h, stride, n;
+ int xres, yres;
unsigned char *samples;
};
-fz_bitmap *fz_new_bitmap(fz_context *ctx, int w, int h, int n);
+fz_bitmap *fz_new_bitmap(fz_context *ctx, int w, int h, int n, int xres, int yres);
void fz_bitmap_details(fz_bitmap *bitmap, int *w, int *h, int *n, int *stride);