diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2013-01-30 16:54:13 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2013-01-30 16:57:53 +0100 |
commit | 151188419c585e60a304e8168909eb449d8ba7fe (patch) | |
tree | 5ddcce5d361fd19a3407d5a31d103eae412e38ab /draw/draw_simple_scale.c | |
parent | 29f7d13d37022303c5d93ddd2942f6b87959f432 (diff) | |
download | mupdf-151188419c585e60a304e8168909eb449d8ba7fe.tar.xz |
Rename fz_irect back to fz_bbox.
Diffstat (limited to 'draw/draw_simple_scale.c')
-rw-r--r-- | draw/draw_simple_scale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/draw/draw_simple_scale.c b/draw/draw_simple_scale.c index 60914e52..0096d93d 100644 --- a/draw/draw_simple_scale.c +++ b/draw/draw_simple_scale.c @@ -1214,13 +1214,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_irect *clip) +fz_scale_pixmap(fz_context *ctx, fz_pixmap *src, float x, float y, float w, float h, fz_bbox *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, fz_irect *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, fz_bbox *clip, fz_scale_cache *cache_x, fz_scale_cache *cache_y) { fz_scale_filter *filter = &fz_scale_filter_simple; fz_weights *contrib_rows = NULL; |