summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@redhat.com>2009-09-15 00:23:11 -0400
committerSøren Sandmann Pedersen <sandmann@redhat.com>2010-02-14 11:12:20 -0500
commitc3d7b5125585a7d974ccd904100777a0e18d425f (patch)
treece38fa602b236e37dd7f82685bc1794cf8801384
parent488480301c7ca9cb4e41c8d0f489fb56e5d9efdd (diff)
Delete unused _pixman_walk_composite_region() function
-rw-r--r--pixman/pixman-private.h16
-rw-r--r--pixman/pixman-utils.c36
2 files changed, 0 insertions, 52 deletions
diff --git a/pixman/pixman-private.h b/pixman/pixman-private.h
index c956f49..8d29010 100644
--- a/pixman/pixman-private.h
+++ b/pixman/pixman-private.h
@@ -674,22 +674,6 @@ _pixman_run_fast_path (const pixman_fast_path_t *paths,
int32_t height);
void
-_pixman_walk_composite_region (pixman_implementation_t *imp,
- pixman_op_t op,
- pixman_image_t * src_image,
- pixman_image_t * mask_image,
- pixman_image_t * dst_image,
- 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
pixman_expand (uint64_t * dst,
const uint32_t * src,
pixman_format_code_t format,
diff --git a/pixman/pixman-utils.c b/pixman/pixman-utils.c
index db06f7c..6e2fd98 100644
--- a/pixman/pixman-utils.c
+++ b/pixman/pixman-utils.c
@@ -462,42 +462,6 @@ walk_region_internal (pixman_implementation_t *imp,
}
}
-void
-_pixman_walk_composite_region (pixman_implementation_t *imp,
- pixman_op_t op,
- pixman_image_t * src_image,
- pixman_image_t * mask_image,
- pixman_image_t * dst_image,
- 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;
-
- pixman_region32_init (&region);
-
- if (pixman_compute_composite_region32 (
- &region, src_image, mask_image, dst_image,
- src_x, src_y, mask_x, mask_y, dest_x, dest_y,
- width, height))
- {
- walk_region_internal (imp, op,
- src_image, mask_image, dst_image,
- src_x, src_y, mask_x, mask_y, dest_x, dest_y,
- width, height, FALSE, FALSE,
- &region,
- composite_rect);
-
- pixman_region32_fini (&region);
- }
-}
-
static void
get_image_info (pixman_image_t *image,
pixman_format_code_t *code,