From 1e56b2dfc6377234ffdcdf206528d476b04d13af Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Fri, 12 Sep 2014 12:51:13 -0400 Subject: mi: Move pScreen->SendGraphicsExpose up to dix No DDX is overriding this and it's fairly absurd to expose it as a screen operation anyway. Reviewed-by: Julien Cristau Signed-off-by: Adam Jackson --- Xext/panoramiXprocs.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'Xext') diff --git a/Xext/panoramiXprocs.c b/Xext/panoramiXprocs.c index 83a2e0856..aa3859fdb 100644 --- a/Xext/panoramiXprocs.c +++ b/Xext/panoramiXprocs.c @@ -1193,9 +1193,8 @@ PanoramiXCopyArea(ClientPtr client) Bool overlap; RegionValidate(&totalReg, &overlap); - (*pDst->pScreen->SendGraphicsExpose) (client, &totalReg, - stuff->dstDrawable, - X_CopyArea, 0); + SendGraphicsExpose(client, &totalReg, stuff->dstDrawable, + X_CopyArea, 0); RegionUninit(&totalReg); } } @@ -1306,9 +1305,8 @@ PanoramiXCopyPlane(ClientPtr client) Bool overlap; RegionValidate(&totalReg, &overlap); - (*pdstDraw->pScreen->SendGraphicsExpose) (client, &totalReg, - stuff->dstDrawable, - X_CopyPlane, 0); + SendGraphicsExpose(client, &totalReg, stuff->dstDrawable, + X_CopyPlane, 0); RegionUninit(&totalReg); } -- cgit v1.2.3