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 /draw/draw_scale.c | |
parent | b951f35ea59e27a21a63b84ec1506974ceab27a0 (diff) | |
download | mupdf-0bd405c16618e1b0cdaba67fe61509cd113ba653.tar.xz |
Rename bbox to irect.
Diffstat (limited to 'draw/draw_scale.c')
-rw-r--r-- | draw/draw_scale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/draw/draw_scale.c b/draw/draw_scale.c index e20cc46d..83a72584 100644 --- a/draw/draw_scale.c +++ b/draw/draw_scale.c @@ -1238,13 +1238,13 @@ scale_single_col(unsigned char *dst, unsigned char *src, fz_weights *weights, in #endif /* SINGLE_PIXEL_SPECIALS */ fz_pixmap * -fz_scale_pixmap(fz_context *ctx, fz_pixmap *src, float x, float y, float w, float h, fz_bbox *clip) +fz_scale_pixmap(fz_context *ctx, fz_pixmap *src, float x, float y, float w, float h, fz_irect *clip) { return fz_scale_pixmap_cached(ctx, src, x, y, w, h, clip, NULL, NULL); } fz_pixmap * -fz_scale_pixmap_cached(fz_context *ctx, fz_pixmap *src, float x, float y, float w, float h, const fz_bbox *clip, fz_scale_cache *cache_x, fz_scale_cache *cache_y) +fz_scale_pixmap_cached(fz_context *ctx, fz_pixmap *src, float x, float y, float w, float h, const fz_irect *clip, fz_scale_cache *cache_x, fz_scale_cache *cache_y) { fz_scale_filter *filter = &fz_scale_filter_simple; fz_weights *contrib_rows = NULL; |