summaryrefslogtreecommitdiff
path: root/source/fitz/output-cbz.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-06-16 16:32:08 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-06-17 14:53:20 +0200
commitccaf716d6c3f20731aaed277653cf3b1be4e218b (patch)
tree3cb2f6e7776007a66dd74ccf1323c17a2c597c2f /source/fitz/output-cbz.c
parent27269d493d66e16bfd7a5b5a0b09c4f21693260b (diff)
downloadmupdf-ccaf716d6c3f20731aaed277653cf3b1be4e218b.tar.xz
Add device space transform state to draw device.
Allows us to remove the out parameter 'transform' from fz_begin_page.
Diffstat (limited to 'source/fitz/output-cbz.c')
-rw-r--r--source/fitz/output-cbz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/output-cbz.c b/source/fitz/output-cbz.c
index ba7ca196..80ef287c 100644
--- a/source/fitz/output-cbz.c
+++ b/source/fitz/output-cbz.c
@@ -16,10 +16,10 @@ struct fz_cbz_writer_s
const char *fz_cbz_write_options_usage = "";
static fz_device *
-cbz_begin_page(fz_context *ctx, fz_document_writer *wri_, const fz_rect *mediabox, fz_matrix *transform)
+cbz_begin_page(fz_context *ctx, fz_document_writer *wri_, const fz_rect *mediabox)
{
fz_cbz_writer *wri = (fz_cbz_writer*)wri_;
- return fz_new_draw_device_with_options(ctx, &wri->options, mediabox, transform, &wri->pixmap);
+ return fz_new_draw_device_with_options(ctx, &wri->options, mediabox, &wri->pixmap);
}
static void