diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2008-07-06 18:23:04 +0200 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2008-07-06 18:23:04 +0200 |
commit | 0b35db03b4ec45bc97d81c3f45a79f052ceaaacc (patch) | |
tree | 6345379465c9e408ac23e8962eadeb020a9ebda0 /include/fitz | |
parent | 399326d2b41456f213073de1e4cf176002ea759d (diff) | |
download | mupdf-0b35db03b4ec45bc97d81c3f45a79f052ceaaacc.tar.xz |
Added support for prefixing filenames when doing pixmap debugging.
Diffstat (limited to 'include/fitz')
-rw-r--r-- | include/fitz/base_pixmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/base_pixmap.h b/include/fitz/base_pixmap.h index 3e3f055e..dab22c45 100644 --- a/include/fitz/base_pixmap.h +++ b/include/fitz/base_pixmap.h @@ -18,7 +18,7 @@ fz_error *fz_newpixmapwithrect(fz_pixmap **mapp, fz_irect bbox, int n); fz_error *fz_newpixmap(fz_pixmap **mapp, int x, int y, int w, int h, int n); fz_error *fz_newpixmapcopy(fz_pixmap **pixp, fz_pixmap *old); -void fz_debugpixmap(fz_pixmap *map); +void fz_debugpixmap(fz_pixmap *map, char *prefix); void fz_clearpixmap(fz_pixmap *map); void fz_droppixmap(fz_pixmap *map); |