diff options
author | Ville Syrjälä <ville.syrjala@nokia.com> | 2011-01-05 20:41:04 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-01-05 11:56:28 -0800 |
commit | e41e907b3c19908f5316346fa587ced3115478cd (patch) | |
tree | 88451db0f232dee7de41c93243ec08908d499035 | |
parent | 0dede200c9ac7adbe8b8c16efacc3edc1f183cd9 (diff) |
Add subWindowMode parameter to SourceValidate
Pass the subWindowMode from the GC/source Picture to SourceValidate.
Signed-off-by: Ville Syrjälä <ville.syrjala@nokia.com>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | doc/xml/Xserver-spec.xml | 4 | ||||
-rw-r--r-- | exa/exa_unaccel.c | 5 | ||||
-rw-r--r-- | hw/xfree86/common/xf86VGAarbiter.c | 5 | ||||
-rw-r--r-- | hw/xfree86/common/xf86VGAarbiterPriv.h | 2 | ||||
-rw-r--r-- | hw/xfree86/xaa/xaaBitBlt.c | 3 | ||||
-rw-r--r-- | include/scrnintstr.h | 3 | ||||
-rw-r--r-- | mi/micopy.c | 3 | ||||
-rw-r--r-- | mi/misprite.c | 7 | ||||
-rw-r--r-- | miext/damage/damage.c | 6 | ||||
-rw-r--r-- | miext/rootless/rootlessScreen.c | 5 | ||||
-rw-r--r-- | render/mipict.c | 3 |
11 files changed, 29 insertions, 17 deletions
diff --git a/doc/xml/Xserver-spec.xml b/doc/xml/Xserver-spec.xml index a2aec2f0f..f7b2296a2 100644 --- a/doc/xml/Xserver-spec.xml +++ b/doc/xml/Xserver-spec.xml @@ -2954,6 +2954,7 @@ The sample server implementation is in Xserver/fb/fbscreen.c.</para> pScreen->SourceValidate(pDrawable, x, y, width, height) DrawablePtr pDrawable; int x, y, width, height; + unsigned int subWindowMode; </programlisting></blockquote> SourceValidate should be called by CopyArea/CopyPlane primitives when @@ -2963,7 +2964,8 @@ you will never need SourceValidate, you can avoid this check. Currently, SourceValidate is used by the mi software cursor code to remove the cursor from the screen when the source rectangle overlaps the cursor position. x,y,width,height describe the source rectangle (source relative, that is) -for the copy operation.</para> +for the copy operation. subWindowMode comes from the GC or source Picture. +</para> <para> <blockquote><programlisting> diff --git a/exa/exa_unaccel.c b/exa/exa_unaccel.c index d3c405fb1..bd533c402 100644 --- a/exa/exa_unaccel.c +++ b/exa/exa_unaccel.c @@ -438,7 +438,8 @@ ExaSrcValidate(DrawablePtr pDrawable, int x, int y, int width, - int height) + int height, + unsigned int subWindowMode) { ScreenPtr pScreen = pDrawable->pScreen; ExaScreenPriv(pScreen); @@ -464,7 +465,7 @@ ExaSrcValidate(DrawablePtr pDrawable, if (pExaScr->SavedSourceValidate) { swap(pExaScr, pScreen, SourceValidate); - pScreen->SourceValidate(pDrawable, x, y, width, height); + pScreen->SourceValidate(pDrawable, x, y, width, height, subWindowMode); swap(pExaScr, pScreen, SourceValidate); } } diff --git a/hw/xfree86/common/xf86VGAarbiter.c b/hw/xfree86/common/xf86VGAarbiter.c index e518f455f..215e8454a 100644 --- a/hw/xfree86/common/xf86VGAarbiter.c +++ b/hw/xfree86/common/xf86VGAarbiter.c @@ -325,13 +325,14 @@ VGAarbiterGetSpans ( static void VGAarbiterSourceValidate ( DrawablePtr pDrawable, - int x, int y, int width, int height ) + int x, int y, int width, int height, + unsigned int subWindowMode ) { ScreenPtr pScreen = pDrawable->pScreen; SCREEN_PROLOG (SourceValidate); VGAGet(pScreen); if (pScreen->SourceValidate) - (*pScreen->SourceValidate) (pDrawable, x, y, width, height); + (*pScreen->SourceValidate) (pDrawable, x, y, width, height, subWindowMode); VGAPut(); SCREEN_EPILOG (SourceValidate, VGAarbiterSourceValidate); } diff --git a/hw/xfree86/common/xf86VGAarbiterPriv.h b/hw/xfree86/common/xf86VGAarbiterPriv.h index 2920fb53a..848e45da7 100644 --- a/hw/xfree86/common/xf86VGAarbiterPriv.h +++ b/hw/xfree86/common/xf86VGAarbiterPriv.h @@ -149,7 +149,7 @@ static void VGAarbiterGetImage (DrawablePtr pDrawable, int sx, int sy, int w, static void VGAarbiterGetSpans (DrawablePtr pDrawable, int wMax, DDXPointPtr ppt, int *pwidth, int nspans, char *pdstStart); static void VGAarbiterSourceValidate (DrawablePtr pDrawable, int x, int y, - int width, int height); + int width, int height, unsigned int subWindowMode); static void VGAarbiterCopyWindow(WindowPtr pWin, DDXPointRec ptOldOrg, RegionPtr prgnSrc); static void VGAarbiterClearToBackground (WindowPtr pWin, int x, int y, int w, diff --git a/hw/xfree86/xaa/xaaBitBlt.c b/hw/xfree86/xaa/xaaBitBlt.c index 5148ed4a2..dfe51ea09 100644 --- a/hw/xfree86/xaa/xaaBitBlt.c +++ b/hw/xfree86/xaa/xaaBitBlt.c @@ -57,7 +57,8 @@ XAABitBlt( if((pSrcDrawable != pDstDrawable) && pSrcDrawable->pScreen->SourceValidate) { (*pSrcDrawable->pScreen->SourceValidate) ( - pSrcDrawable, srcx, srcy, width, height); + pSrcDrawable, srcx, srcy, width, height, + pGC->subWindowMode); } srcx += pSrcDrawable->x; diff --git a/include/scrnintstr.h b/include/scrnintstr.h index 00d014ca8..995232524 100644 --- a/include/scrnintstr.h +++ b/include/scrnintstr.h @@ -135,7 +135,8 @@ typedef void (* SourceValidateProcPtr)( int /*x*/, int /*y*/, int /*width*/, - int /*height*/); + int /*height*/, + unsigned int /*subWindowMode*/); typedef Bool (* CreateWindowProcPtr)( WindowPtr /*pWindow*/); diff --git a/mi/micopy.c b/mi/micopy.c index 027c461fe..50e266752 100644 --- a/mi/micopy.c +++ b/mi/micopy.c @@ -186,7 +186,8 @@ miDoCopy (DrawablePtr pSrcDrawable, if ((pSrcDrawable != pDstDrawable) && pSrcDrawable->pScreen->SourceValidate) { - (*pSrcDrawable->pScreen->SourceValidate) (pSrcDrawable, xIn, yIn, widthSrc, heightSrc); + (*pSrcDrawable->pScreen->SourceValidate) (pSrcDrawable, xIn, yIn, widthSrc, heightSrc, + pGC->subWindowMode); } /* Compute source clip region */ diff --git a/mi/misprite.c b/mi/misprite.c index c25c093f2..770951e8f 100644 --- a/mi/misprite.c +++ b/mi/misprite.c @@ -198,7 +198,8 @@ static void miSpriteGetSpans(DrawablePtr pDrawable, int wMax, DDXPointPtr ppt, int *pwidth, int nspans, char *pdstStart); static void miSpriteSourceValidate(DrawablePtr pDrawable, int x, int y, - int width, int height); + int width, int height, + unsigned int subWindowMode); static void miSpriteCopyWindow (WindowPtr pWindow, DDXPointRec ptOldOrg, RegionPtr prgnSrc); @@ -489,7 +490,7 @@ miSpriteGetSpans (DrawablePtr pDrawable, int wMax, DDXPointPtr ppt, static void miSpriteSourceValidate (DrawablePtr pDrawable, int x, int y, int width, - int height) + int height, unsigned int subWindowMode) { ScreenPtr pScreen = pDrawable->pScreen; DeviceIntPtr pDev; @@ -517,7 +518,7 @@ miSpriteSourceValidate (DrawablePtr pDrawable, int x, int y, int width, } if (pScreen->SourceValidate) - (*pScreen->SourceValidate) (pDrawable, x, y, width, height); + (*pScreen->SourceValidate) (pDrawable, x, y, width, height, subWindowMode); SCREEN_EPILOGUE (pPriv, pScreen, SourceValidate); } diff --git a/miext/damage/damage.c b/miext/damage/damage.c index 21cbb78c9..d0e0fe4d3 100644 --- a/miext/damage/damage.c +++ b/miext/damage/damage.c @@ -898,7 +898,8 @@ damageCopyArea(DrawablePtr pSrc, pSrc->type == DRAWABLE_WINDOW && ((WindowPtr)pSrc)->viewable) { - (*pSrc->pScreen->SourceValidate) (pSrc, srcx, srcy, width, height); + (*pSrc->pScreen->SourceValidate) (pSrc, srcx, srcy, width, height, + pGC->subWindowMode); } if (checkGCDamage (pDst, pGC)) @@ -944,7 +945,8 @@ damageCopyPlane(DrawablePtr pSrc, pSrc->type == DRAWABLE_WINDOW && ((WindowPtr)pSrc)->viewable) { - (*pSrc->pScreen->SourceValidate) (pSrc, srcx, srcy, width, height); + (*pSrc->pScreen->SourceValidate) (pSrc, srcx, srcy, width, height, + pGC->subWindowMode); } if (checkGCDamage (pDst, pGC)) diff --git a/miext/rootless/rootlessScreen.c b/miext/rootless/rootlessScreen.c index 61d2f5dab..510d6fdb1 100644 --- a/miext/rootless/rootlessScreen.c +++ b/miext/rootless/rootlessScreen.c @@ -223,7 +223,8 @@ out: * here and leave StopDrawing for the block handler. */ static void -RootlessSourceValidate(DrawablePtr pDrawable, int x, int y, int w, int h) +RootlessSourceValidate(DrawablePtr pDrawable, int x, int y, int w, int h, + unsigned int subWindowMode) { SCREEN_UNWRAP(pDrawable->pScreen, SourceValidate); if (pDrawable->type == DRAWABLE_WINDOW) { @@ -231,7 +232,7 @@ 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); + pDrawable->pScreen->SourceValidate(pDrawable, x, y, w, h, subWindowMode); } SCREEN_WRAP(pDrawable->pScreen, SourceValidate); } diff --git a/render/mipict.c b/render/mipict.c index b5b897037..de5eea6be 100644 --- a/render/mipict.c +++ b/render/mipict.c @@ -386,7 +386,8 @@ miCompositeSourceValidate (PicturePtr pPicture, } x += pPicture->pDrawable->x; y += pPicture->pDrawable->y; - (*pScreen->SourceValidate) (pDrawable, x, y, width, height); + (*pScreen->SourceValidate) (pDrawable, x, y, width, height, + pPicture->subWindowMode); } } |