From: Benjamin Otte Date: Wed, 29 Aug 2007 21:15:33 +0000 (+0200) Subject: use a pixman_op_t here X-Git-Tag: 1.0_branch~989 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=740425ab969adda1aaf36d8f52dec6f6e5303ed6;p=profile%2Fivi%2Fpixman.git use a pixman_op_t here This improves the readability in gdb when debugging this structure --- diff --git a/pixman/pixman-combine.c.template b/pixman/pixman-combine.c.template index 2f7f5d1..3cd5740 100644 --- a/pixman/pixman-combine.c.template +++ b/pixman/pixman-combine.c.template @@ -341,7 +341,7 @@ fbCombineScreenU (pixman_implementation_t *imp, pixman_op_t op, dca = Blue (d); \ FbBlendOp (b); \ \ - *(dest + i) = (a << 24) \ + *(dest + i) = (a << A_SHIFT) \ | ((r & MASK) << R_SHIFT) \ | ((g & MASK) << G_SHIFT) \ | (b & MASK); \