DirectX-XShm now waits for the X server to finish the previous frame
before sending another frame down its pipe, avoiding the X server
overload and resulting slowness that used to be.
diff --git a/tsx11/X11_calls b/tsx11/X11_calls
index 65c747b..b872337 100644
--- a/tsx11/X11_calls
+++ b/tsx11/X11_calls
@@ -16,6 +16,7 @@
XChangeKeyboardControl
XChangeProperty
XChangeWindowAttributes
+XCheckTypedEvent
XCheckTypedWindowEvent
XCheckWindowEvent
XClipBox
diff --git a/tsx11/ts_xlib.c b/tsx11/ts_xlib.c
index c336483..2ec5a35 100644
--- a/tsx11/ts_xlib.c
+++ b/tsx11/ts_xlib.c
@@ -422,6 +422,17 @@
return r;
}
+int TSXCheckTypedEvent(Display* a0, int a1, XEvent* a2)
+{
+ int r;
+ TRACE("Call XCheckTypedEvent\n");
+ EnterCriticalSection( &X11DRV_CritSection );
+ r = XCheckTypedEvent(a0, a1, a2);
+ LeaveCriticalSection( &X11DRV_CritSection );
+ TRACE("Ret XCheckTypedEvent\n");
+ return r;
+}
+
int TSXCheckTypedWindowEvent(Display* a0, Window a1, int a2, XEvent* a3)
{
int r;