diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-25 07:06:56 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-25 07:06:56 +0100 |
commit | 6796693d6b7db5933aaf5c6a33793abbfd3dd93c (patch) | |
tree | 43d01faf8fba5e36315714d629a2b910d1d7dce6 /render/rastshade.c | |
parent | 3e799920074ffaa718dfa671f3ed424f80c71b71 (diff) | |
download | mupdf-6796693d6b7db5933aaf5c6a33793abbfd3dd93c.tar.xz |
cleanups and c89 fixes
Diffstat (limited to 'render/rastshade.c')
-rw-r--r-- | render/rastshade.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/render/rastshade.c b/render/rastshade.c new file mode 100644 index 00000000..7e7f82ce --- /dev/null +++ b/render/rastshade.c @@ -0,0 +1,10 @@ +#include <fitz.h> + +fz_error * +fz_rendershade(fz_shade *shade, fz_matrix ctm, fz_colorspace *dsts, fz_pixmap *dstp, int over) +{ + if (!over) + fz_clearpixmap(dstp); + return nil; +} + |