summaryrefslogtreecommitdiff
path: root/composite
diff options
context:
space:
mode:
Diffstat (limited to 'composite')
-rw-r--r--composite/compalloc.c5
-rw-r--r--composite/compositeext.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/composite/compalloc.c b/composite/compalloc.c
index 2caf79eb0..e5b279b16 100644
--- a/composite/compalloc.c
+++ b/composite/compalloc.c
@@ -521,6 +521,11 @@ compUnredirectSubwindows (ClientPtr pClient, WindowPtr pWin, int update)
return BadValue;
}
+int CompositeUnRedirectSubwindows (WindowPtr pWin, int update)
+{
+ return compUnredirectSubwindows (serverClient, pWin, update);
+}
+
/*
* Add redirection information for one subwindow (during reparent)
*/
diff --git a/composite/compositeext.h b/composite/compositeext.h
index c1e915ae1..9c5330a39 100644
--- a/composite/compositeext.h
+++ b/composite/compositeext.h
@@ -36,5 +36,7 @@ extern _X_EXPORT Bool CompositeRegisterAlternateVisuals(ScreenPtr pScreen,
int nVisuals);
extern _X_EXPORT int CompositeRedirectSubwindows(WindowPtr pWin,
int update);
+extern _X_EXPORT int CompositeUnRedirectSubwindows (WindowPtr pWin,
+ int update);
#endif /* _COMPOSITEEXT_H_ */