summaryrefslogtreecommitdiff
path: root/miext
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2019-10-09 11:27:12 -0400
committerAdam Jackson <ajax@nwnk.net>2019-10-30 16:26:01 +0000
commitff310903f34ac34c916ad74e919d1ac12aea4715 (patch)
treeebf341ad2e56854c931b8218176d09c688882dc8 /miext
parent89a9927b1e5ac416441a33b44abddf8372edfe6a (diff)
downloadxserver-ff310903f34ac34c916ad74e919d1ac12aea4715.tar.gz
mi: Add a default no-op miSourceValidate
Slightly simplifies the callers since they don't need to check for non-NULL anymore. I do extremely hate the workarounds here to suppress misprite taking the cursor down though. Surely there's a better way. Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
Diffstat (limited to 'miext')
-rw-r--r--miext/rootless/rootlessScreen.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/miext/rootless/rootlessScreen.c b/miext/rootless/rootlessScreen.c
index 2ec0ae54d..a99a2d158 100644
--- a/miext/rootless/rootlessScreen.c
+++ b/miext/rootless/rootlessScreen.c
@@ -228,10 +228,8 @@ RootlessSourceValidate(DrawablePtr pDrawable, int x, int y, int w, int h,
RootlessStartDrawing(pWin);
}
- if (pDrawable->pScreen->SourceValidate) {
- pDrawable->pScreen->SourceValidate(pDrawable, x, y, w, h,
- subWindowMode);
- }
+ pDrawable->pScreen->SourceValidate(pDrawable, x, y, w, h,
+ subWindowMode);
SCREEN_WRAP(pDrawable->pScreen, SourceValidate);
}