summaryrefslogtreecommitdiff
path: root/source/fitz/writer.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/writer.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/writer.c')
-rw-r--r--source/fitz/writer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/writer.c b/source/fitz/writer.c
index 5c82b1d7..556e01a8 100644
--- a/source/fitz/writer.c
+++ b/source/fitz/writer.c
@@ -81,9 +81,9 @@ fz_drop_document_writer(fz_context *ctx, fz_document_writer *wri)
}
fz_device *
-fz_begin_page(fz_context *ctx, fz_document_writer *wri, const fz_rect *mediabox, fz_matrix *ctm)
+fz_begin_page(fz_context *ctx, fz_document_writer *wri, const fz_rect *mediabox)
{
- return wri->begin_page(ctx, wri, mediabox, ctm);
+ return wri->begin_page(ctx, wri, mediabox);
}
void