summaryrefslogtreecommitdiff
path: root/source/cbz/mucbz.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-06-25 13:15:50 +0200
committerTor Andersson <tor.andersson@artifex.com>2018-07-05 15:32:34 +0200
commit4a99615a609eec2b84bb2341d74fac46a5998137 (patch)
tree486eacff07448e4c655df1fa1bcb20df709dd8df /source/cbz/mucbz.c
parent2aa62902447760764e7a763dea322145d9c4808c (diff)
downloadmupdf-4a99615a609eec2b84bb2341d74fac46a5998137.tar.xz
Pass rect and matrix by value in geometry functions.
Several things irk me about passing values as const pointers: * They can be NULL, which is not a valid value. * They require explicit temporary variables for storage. * They don't compose easily in a legible manner, requiring weird pointer passing semantics where the variable being assigned is hidden as an argument in the innermost function call. * We can't change the value through the pointer, requiring yet more local variables to hold copies of the input value. In the device interface where we pass a matrix to a function, we often find ourselves making a local copy of the matrix so we can concatenate other transforms to it. This copying is a lot of unnecessary busywork that I hope to eventually avoid by laying the groundwork with this commit. This is a rather large API change, so I apologize for the inconvenience, but I hope the end result and gain in legibility will be worth the pain.
Diffstat (limited to 'source/cbz/mucbz.c')
-rw-r--r--source/cbz/mucbz.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/source/cbz/mucbz.c b/source/cbz/mucbz.c
index e133a3b5..ddf3c553 100644
--- a/source/cbz/mucbz.c
+++ b/source/cbz/mucbz.c
@@ -135,17 +135,18 @@ cbz_count_pages(fz_context *ctx, fz_document *doc_)
return doc->page_count;
}
-static fz_rect *
-cbz_bound_page(fz_context *ctx, fz_page *page_, fz_rect *bbox)
+static fz_rect
+cbz_bound_page(fz_context *ctx, fz_page *page_)
{
cbz_page *page = (cbz_page*)page_;
fz_image *image = page->image;
int xres, yres;
+ fz_rect bbox;
fz_image_resolution(image, &xres, &yres);
- bbox->x0 = bbox->y0 = 0;
- bbox->x1 = image->w * DPI / xres;
- bbox->y1 = image->h * DPI / yres;
+ bbox.x0 = bbox.y0 = 0;
+ bbox.x1 = image->w * DPI / xres;
+ bbox.y1 = image->h * DPI / yres;
return bbox;
}
@@ -153,7 +154,7 @@ static void
cbz_run_page(fz_context *ctx, fz_page *page_, fz_device *dev, const fz_matrix *ctm, fz_cookie *cookie)
{
cbz_page *page = (cbz_page*)page_;
- fz_matrix local_ctm = *ctm;
+ fz_matrix local_ctm;
fz_image *image = page->image;
int xres, yres;
float w, h;
@@ -161,7 +162,7 @@ cbz_run_page(fz_context *ctx, fz_page *page_, fz_device *dev, const fz_matrix *c
fz_image_resolution(image, &xres, &yres);
w = image->w * DPI / xres;
h = image->h * DPI / yres;
- fz_pre_scale(&local_ctm, w, h);
+ local_ctm = fz_pre_scale(*ctm, w, h);
fz_fill_image(ctx, dev, image, &local_ctm, 1, NULL);
}