From: Søren Sandmann Pedersen Date: Tue, 15 Sep 2009 03:58:40 +0000 (-0400) Subject: Delete unused sources_cover() function X-Git-Tag: 1.0_branch~639^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=06ae5ed5971fe616b96bb97a63abf6cc27c5b669;p=profile%2Fivi%2Fpixman.git Delete unused sources_cover() function --- diff --git a/pixman/pixman-utils.c b/pixman/pixman-utils.c index 9306c17..db06f7c 100644 --- a/pixman/pixman-utils.c +++ b/pixman/pixman-utils.c @@ -588,29 +588,6 @@ image_covers (pixman_image_t *image, return TRUE; } -static force_inline pixman_bool_t -sources_cover (pixman_image_t *src, - pixman_image_t *mask, - pixman_box32_t *extents, - int src_x, - int src_y, - int mask_x, - int mask_y, - int dest_x, - int dest_y) -{ - if (!image_covers (src, extents, dest_x - src_x, dest_y - src_y)) - return FALSE; - - if (!mask) - return TRUE; - - if (!image_covers (mask, extents, dest_x - mask_x, dest_y - mask_y)) - return FALSE; - - return TRUE; -} - pixman_bool_t _pixman_run_fast_path (const pixman_fast_path_t *paths, pixman_implementation_t * imp,