summaryrefslogtreecommitdiff
path: root/dbe
diff options
context:
space:
mode:
authorEnrico Weigelt, metux IT consult <info@metux.net>2024-08-27 20:08:02 +0200
committerEnrico Weigelt, metux IT consult <info@metux.net>2024-08-27 20:08:32 +0200
commitc4481fc20fd4da1e89aa4f41a7dca1d563d00cee (patch)
treef21c2516451856a9c1dc47d82312010afc14c532 /dbe
parent720651ebf3125ef75489328056e45efdf7811052 (diff)
treewide: fix indentions got broke by recent commit
Commit f26f17c66a714a226d83dd45bd760288eff3de32 broke some indentions, fixing them now. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1662>
Diffstat (limited to 'dbe')
-rw-r--r--dbe/midbe.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/dbe/midbe.c b/dbe/midbe.c
index 007f985c3..c97dac8de 100644
--- a/dbe/midbe.c
+++ b/dbe/midbe.c
@@ -276,9 +276,9 @@ miDbeSwapBuffers(ClientPtr client, int *pNumWindows, DbeSwapInfoPtr swapInfo)
case XdbeUntouched:
ValidateGC((DrawablePtr) pDbeWindowPriv->pFrontBuffer, pGC);
(void) (*pGC->ops->CopyArea) ((DrawablePtr) pWin,
- (DrawablePtr) pDbeWindowPriv->pFrontBuffer,
- pGC, 0, 0, pWin->drawable.width,
- pWin->drawable.height, 0, 0);
+ (DrawablePtr) pDbeWindowPriv->pFrontBuffer,
+ pGC, 0, 0, pWin->drawable.width,
+ pWin->drawable.height, 0, 0);
break;
case XdbeCopied:
@@ -294,8 +294,9 @@ miDbeSwapBuffers(ClientPtr client, int *pNumWindows, DbeSwapInfoPtr swapInfo)
ValidateGC((DrawablePtr) pWin, pGC);
(void) (*pGC->ops->CopyArea) ((DrawablePtr) pDbeWindowPriv->pBackBuffer,
- (DrawablePtr) pWin, pGC, 0, 0,
- pWin->drawable.width, pWin->drawable.height, 0, 0);
+ (DrawablePtr) pWin, pGC, 0, 0,
+ pWin->drawable.width,
+ pWin->drawable.height, 0, 0);
/*
**********************************************************************
@@ -621,9 +622,9 @@ miDbePositionWindow(WindowPtr pWin, int x, int y)
/* Copy the contents of the old front pixmap to the new one. */
if (pWin->bitGravity != ForgetGravity) {
(void) (*pGC->ops->CopyArea) ((DrawablePtr) pDbeWindowPriv->pFrontBuffer,
- (DrawablePtr) pFrontBuffer, pGC,
- sourcex, sourcey, savewidth, saveheight,
- destx, desty);
+ (DrawablePtr) pFrontBuffer, pGC,
+ sourcex, sourcey, savewidth, saveheight,
+ destx, desty);
}
ValidateGC(&pBackBuffer->drawable, pGC);
@@ -634,9 +635,9 @@ miDbePositionWindow(WindowPtr pWin, int x, int y)
/* Copy the contents of the old back pixmap to the new one. */
if (pWin->bitGravity != ForgetGravity) {
(void) (*pGC->ops->CopyArea) ((DrawablePtr) pDbeWindowPriv->pBackBuffer,
- (DrawablePtr) pBackBuffer, pGC,
- sourcex, sourcey, savewidth, saveheight,
- destx, desty);
+ (DrawablePtr) pBackBuffer, pGC,
+ sourcex, sourcey, savewidth, saveheight,
+ destx, desty);
}
/* Destroy the old pixmaps, and point the DBE window priv to the new