diff options
author | Søren Sandmann Pedersen <sandmann@redhat.com> | 2009-06-29 07:35:40 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <sandmann@redhat.com> | 2009-07-08 00:39:29 -0400 |
commit | 1c5774bf6d39e7b349c03866c96811ee1754c9d7 (patch) | |
tree | 0a9df681083ea751c487b0b691b35b1833ae2c4d /pixman/pixman-vmx.c | |
parent | e3489730c317061a2cd888b927d36bda0590a3f2 (diff) |
Get rid of pFoo names.
s/([^o])pSrc/$1src_image/g;
s/([^o])pDst/$1dst_image/g;
s/([^o])pMask/$1mask_image/g;
s/pRegion/region/g;
s/pNextRect/next_rect/g;
Diffstat (limited to 'pixman/pixman-vmx.c')
-rw-r--r-- | pixman/pixman-vmx.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/pixman/pixman-vmx.c b/pixman/pixman-vmx.c index f6a1afe..532c0d4 100644 --- a/pixman/pixman-vmx.c +++ b/pixman/pixman-vmx.c @@ -1483,9 +1483,9 @@ vmxCombineAddC (pixman_implementation_t *imp, pixman_op_t op, #if 0 void vmx_CompositeOver_n_8888 (pixman_operator_t op, - pixman_image_t * pSrc, - pixman_image_t * pMask, - pixman_image_t * pDst, + pixman_image_t * src_image, + pixman_image_t * mask_image, + pixman_image_t * dst_image, int16_t xSrc, int16_t ySrc, int16_t xMask, @@ -1499,12 +1499,12 @@ vmx_CompositeOver_n_8888 (pixman_operator_t op, uint32_t *dstLine, *dst; int dstStride; - _pixman_image_get_solid (pSrc, pDst, src); + _pixman_image_get_solid (src_image, dst_image, src); if (src >> 24 == 0) return; - fbComposeGetStart (pDst, xDst, yDst, uint32_t, dstStride, dstLine, 1); + fbComposeGetStart (dst_image, xDst, yDst, uint32_t, dstStride, dstLine, 1); while (height--) { @@ -1516,9 +1516,9 @@ vmx_CompositeOver_n_8888 (pixman_operator_t op, void vmx_CompositeOver_n_0565 (pixman_operator_t op, - pixman_image_t * pSrc, - pixman_image_t * pMask, - pixman_image_t * pDst, + pixman_image_t * src_image, + pixman_image_t * mask_image, + pixman_image_t * dst_image, int16_t xSrc, int16_t ySrc, int16_t xMask, @@ -1533,12 +1533,12 @@ vmx_CompositeOver_n_0565 (pixman_operator_t op, uint16_t w; int dstStride; - _pixman_image_get_solid (pSrc, pDst, src); + _pixman_image_get_solid (src_image, dst_image, src); if (src >> 24 == 0) return; - fbComposeGetStart (pDst, xDst, yDst, uint16_t, dstStride, dstLine, 1); + fbComposeGetStart (dst_image, xDst, yDst, uint16_t, dstStride, dstLine, 1); while (height--) { |