diff options
author | Adam Jackson <ajax@redhat.com> | 2014-09-11 12:44:54 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2014-10-09 11:14:44 +0200 |
commit | 0d30d44a8cdacfbc99d8193f76c133b803464622 (patch) | |
tree | 37c947f12965f3544dc5f31d4b4c28d47154b2fe /mi/miwindow.c | |
parent | e2a3e91a56cb598f2c8257614d92ccd46b7fc094 (diff) |
dix: Drop the third argument from WindowExposuresProcPtr
A careful read shows that it was always NULL. It hasn't always been; as
the DDX spec indicates, it was the "occluded region that has backing
store", but since that backing store code is long gone, we can nuke it.
mi{,Overlay}WindowExposures get slightly simpler here, and will get even
simpler in just a moment.
Reviewed-by: Julien Cristau <jcristau@debian.org>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'mi/miwindow.c')
-rw-r--r-- | mi/miwindow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mi/miwindow.c b/mi/miwindow.c index 82c3513c8..ba4c9ed5c 100644 --- a/mi/miwindow.c +++ b/mi/miwindow.c @@ -111,7 +111,7 @@ miClearToBackground(WindowPtr pWin, RegionIntersect(®, ®, &pWin->clipList); if (generateExposures) - (*pWin->drawable.pScreen->WindowExposures) (pWin, ®, NULL); + (*pWin->drawable.pScreen->WindowExposures) (pWin, ®); else if (pWin->backgroundState != None) miPaintWindow(pWin, ®, PW_BACKGROUND); RegionUninit(®); @@ -221,7 +221,7 @@ miHandleValidateExposures(WindowPtr pWin) if (RegionNotEmpty(&val->after.borderExposed)) miPaintWindow(pChild, &val->after.borderExposed, PW_BORDER); RegionUninit(&val->after.borderExposed); - (*WindowExposures) (pChild, &val->after.exposed, NullRegion); + (*WindowExposures) (pChild, &val->after.exposed); RegionUninit(&val->after.exposed); free(val); pChild->valdata = NULL; |