summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-12-02 14:14:39 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2009-12-02 14:14:39 +0000
commitad68881b670aabf8dbfd3b954e8796f91260579d (patch)
treede97831bdb15aa1b095391e507ae04a4028370e1
parent49d2ccab2a82083110fe796636f3f91ba8c31237 (diff)
uxa_check_composite: Minor whitespace.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--uxa/uxa-unaccel.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/uxa/uxa-unaccel.c b/uxa/uxa-unaccel.c
index 90d49506..15be821a 100644
--- a/uxa/uxa-unaccel.c
+++ b/uxa/uxa-unaccel.c
@@ -353,11 +353,10 @@ uxa_check_composite(CARD8 op,
PicturePtr pSrc,
PicturePtr pMask,
PicturePtr pDst,
- INT16 xSrc,
- INT16 ySrc,
- INT16 xMask,
- INT16 yMask,
- INT16 xDst, INT16 yDst, CARD16 width, CARD16 height)
+ INT16 xSrc, INT16 ySrc,
+ INT16 xMask, INT16 yMask,
+ INT16 xDst, INT16 yDst,
+ CARD16 width, CARD16 height)
{
ScreenPtr screen = pDst->pDrawable->pScreen;
@@ -369,14 +368,11 @@ uxa_check_composite(CARD8 op,
if (!pMask || pMask->pDrawable == NULL ||
uxa_prepare_access(pMask->pDrawable, UXA_ACCESS_RO))
{
- fbComposite(op,
- pSrc,
- pMask,
- pDst,
- xSrc,
- ySrc,
- xMask,
- yMask, xDst, yDst, width, height);
+ fbComposite(op, pSrc, pMask, pDst,
+ xSrc, ySrc,
+ xMask, yMask,
+ xDst, yDst,
+ width, height);
if (pMask && pMask->pDrawable != NULL)
uxa_finish_access(pMask->pDrawable);
}