From: Søren Sandmann Date: Sun, 2 Dec 2007 02:56:25 +0000 (-0500) Subject: Set maskRepeat to FALSE when the function is NEED_SOLID_MASK X-Git-Tag: 1.0_branch~1414 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a53c41dbc5d6476595b2ad58dd9a14a3e85295c;p=profile%2Fivi%2Fpixman.git Set maskRepeat to FALSE when the function is NEED_SOLID_MASK --- diff --git a/pixman/pixman-pict.c b/pixman/pixman-pict.c index be8f096..53208ae 100644 --- a/pixman/pixman-pict.c +++ b/pixman/pixman-pict.c @@ -1729,8 +1729,11 @@ pixman_image_composite (pixman_op_t op, if (info->src_format == PIXMAN_solid) srcRepeat = FALSE; - if (info->mask_format == PIXMAN_solid) + if (info->mask_format == PIXMAN_solid || + info->flags & NEED_SOLID_MASK) + { maskRepeat = FALSE; + } } }