summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@redhat.com>2009-10-19 20:30:22 -0400
committerSøren Sandmann Pedersen <sandmann@redhat.com>2009-10-19 20:30:22 -0400
commit895c281c4094844f9f955621e4ac1e4394d865f0 (patch)
treea8edb10bcb104cba55899cd802a1256a9fd4cf6f
parent9cd470665b1bb7e0cb810f2457d3788f7c981072 (diff)
Change prototype of _pixman_walk_composite_region from int16_t to int32_t
-rw-r--r--pixman/pixman-private.h16
-rw-r--r--pixman/pixman-utils.c16
2 files changed, 16 insertions, 16 deletions
diff --git a/pixman/pixman-private.h b/pixman/pixman-private.h
index 98691e3..7d7b87d 100644
--- a/pixman/pixman-private.h
+++ b/pixman/pixman-private.h
@@ -610,14 +610,14 @@ _pixman_walk_composite_region (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_composite_func_t composite_rect);
void
diff --git a/pixman/pixman-utils.c b/pixman/pixman-utils.c
index 22ee827..c003235 100644
--- a/pixman/pixman-utils.c
+++ b/pixman/pixman-utils.c
@@ -468,14 +468,14 @@ _pixman_walk_composite_region (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_composite_func_t composite_rect)
{
pixman_region32_t region;