summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@redhat.com>2009-10-19 20:31:54 -0400
committerSøren Sandmann Pedersen <sandmann@redhat.com>2009-10-19 20:31:54 -0400
commitbb3698d47925db77925810c3128be1641f455c60 (patch)
tree12e69dad13b63dea24085018b28b54591cea1393
parent895c281c4094844f9f955621e4ac1e4394d865f0 (diff)
Make pixman_compute_composite_region32() use 32 bit dimensions
-rw-r--r--pixman/pixman-utils.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/pixman/pixman-utils.c b/pixman/pixman-utils.c
index c003235..3d1ba45 100644
--- a/pixman/pixman-utils.c
+++ b/pixman/pixman-utils.c
@@ -107,14 +107,14 @@ pixman_compute_composite_region32 (pixman_region32_t * region,
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)
{
region->extents.x1 = dest_x;
region->extents.x2 = dest_x + width;