Delete unused _pixman_walk_composite_region() function
authorSøren Sandmann Pedersen <sandmann@redhat.com>
Tue, 15 Sep 2009 04:23:11 +0000 (00:23 -0400)
committerSøren Sandmann Pedersen <sandmann@redhat.com>
Sun, 14 Feb 2010 16:12:20 +0000 (11:12 -0500)
pixman/pixman-private.h
pixman/pixman-utils.c

index c956f49..8d29010 100644 (file)
@@ -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,
index db06f7c..6e2fd98 100644 (file)
@@ -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,