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 /exa | |
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>
Diffstat (limited to 'exa')
-rw-r--r-- | exa/exa_unaccel.c | 5 |
1 files changed, 3 insertions, 2 deletions
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); } } |