diff options
author | Søren Sandmann Pedersen <sandmann@redhat.com> | 2009-10-19 20:32:37 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <sandmann@redhat.com> | 2009-10-19 20:32:37 -0400 |
commit | dc46ad274a47d351bacf3c2167c359d23dbaf8b3 (patch) | |
tree | 41b6219bf4ead4936eff5aa7e15345e9e97c1a0d | |
parent | bb3698d47925db77925810c3128be1641f455c60 (diff) |
Make walk_region_internal() use 32 bit dimensions
-rw-r--r-- | pixman/pixman-utils.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pixman/pixman-utils.c b/pixman/pixman-utils.c index 3d1ba455..537a4f27 100644 --- a/pixman/pixman-utils.c +++ b/pixman/pixman-utils.c @@ -375,14 +375,14 @@ walk_region_internal (pixman_implementation_t *imp, pixman_image_t * src_image, pixman_image_t * mask_image, pixman_image_t * dst_image, - int16_t src_x, - int16_t src_y, - int16_t mask_x, - int16_t mask_y, - int16_t dest_x, - int16_t dest_y, - uint16_t width, - uint16_t height, + int32_t src_x, + int32_t src_y, + int32_t mask_x, + int32_t mask_y, + int32_t dest_x, + int32_t dest_y, + int32_t width, + int32_t height, pixman_bool_t src_repeat, pixman_bool_t mask_repeat, pixman_region32_t * region, |