diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2013-02-06 15:14:20 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2013-02-06 19:24:15 +0000 |
commit | 0bd405c16618e1b0cdaba67fe61509cd113ba653 (patch) | |
tree | 4434bd3d873418feaa5d96d7a6f4539ec3b57fb4 /apps/mudraw.c | |
parent | b951f35ea59e27a21a63b84ec1506974ceab27a0 (diff) | |
download | mupdf-0bd405c16618e1b0cdaba67fe61509cd113ba653.tar.xz |
Rename bbox to irect.
Diffstat (limited to 'apps/mudraw.c')
-rw-r--r-- | apps/mudraw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/mudraw.c b/apps/mudraw.c index 668dad41..a1cc4eaf 100644 --- a/apps/mudraw.c +++ b/apps/mudraw.c @@ -406,7 +406,7 @@ static void drawpage(fz_context *ctx, fz_document *doc, int pagenum) float zoom; fz_matrix ctm; fz_rect bounds, tbounds; - fz_bbox ibounds; + fz_irect ibounds; fz_pixmap *pix = NULL; int w, h; @@ -469,7 +469,7 @@ static void drawpage(fz_context *ctx, fz_document *doc, int pagenum) fz_transform_rect(&tbounds, &ctm); } fz_round_rect(&ibounds, &tbounds); - fz_rect_from_bbox(&tbounds, &ibounds); + fz_rect_from_irect(&tbounds, &ibounds); /* TODO: banded rendering and multi-page ppm */ |