From: Søren Sandmann Pedersen Date: Mon, 29 Jun 2009 16:51:28 +0000 (-0400) Subject: Fix overeager search and replace X-Git-Tag: 1.0_branch~910^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f61855e186519a490b5d013d2de67dcc8da7a0ac;p=profile%2Fivi%2Fpixman.git Fix overeager search and replace --- diff --git a/pixman/pixman-combine.c.template b/pixman/pixman-combine.c.template index 5fc07e7..b944677 100644 --- a/pixman/pixman-combine.c.template +++ b/pixman/pixman-combine.c.template @@ -63,7 +63,7 @@ fbCombineMaskValueC (comp4_t *src, const comp4_t *mask) } static void -fbCombineMaskALPHA_cC (const comp4_t *src, comp4_t *mask) +fbCombineMaskAlphaC (const comp4_t *src, comp4_t *mask) { comp4_t a = *(mask); comp4_t x; @@ -1416,7 +1416,7 @@ fbCombineInReverseC (pixman_implementation_t *imp, pixman_op_t op, comp4_t m = *(mask + i); comp4_t a; - fbCombineMaskALPHA_cC (&s, &m); + fbCombineMaskAlphaC (&s, &m); a = m; if (a != ~0) @@ -1469,7 +1469,7 @@ fbCombineOutReverseC (pixman_implementation_t *imp, pixman_op_t op, comp4_t m = *(mask + i); comp4_t a; - fbCombineMaskALPHA_cC (&s, &m); + fbCombineMaskAlphaC (&s, &m); a = ~m; if (a != ~0)