diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-19 08:21:10 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-19 08:21:10 +0200 |
commit | 4d9498561d4a73ffa2389e9fecd8893ff823a95c (patch) | |
tree | c25e45034de17227f9652f1375c8b2c473b76757 /include/fitz/pixmap.h | |
parent | 117725ec61dc4953f4070dacfb2aab7024a7df36 (diff) | |
download | mupdf-4d9498561d4a73ffa2389e9fecd8893ff823a95c.tar.xz |
8-bit rendering and span scissoring
Diffstat (limited to 'include/fitz/pixmap.h')
-rw-r--r-- | include/fitz/pixmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/pixmap.h b/include/fitz/pixmap.h index f7bab833..24584f30 100644 --- a/include/fitz/pixmap.h +++ b/include/fitz/pixmap.h @@ -6,7 +6,7 @@ struct fz_pixmap_s int x, y, w, h; int n, a; int stride; - short *samples; + unsigned char *samples; }; fz_error *fz_newpixmap(fz_pixmap **mapp, fz_colorspace *cs, int x, int y, int w, int h, int n, int a); |