Mesa (master): glx: Use __glX_send_client_info with XCB

Ian Romanick idr at kemper.freedesktop.org
Mon Jan 2 20:42:41 UTC 2012


Module: Mesa
Branch: master
Commit: eacd61bfefc416166998b2344540dab1e4e77beb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=eacd61bfefc416166998b2344540dab1e4e77beb

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Tue Nov 29 10:57:43 2011 -0800

glx: Use __glX_send_client_info with XCB

__glX_send_client_info only supports XCB, so use that instead of
__glXClientInfo when USE_XCB is defined.

Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/glx/glxext.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/glx/glxext.c b/src/glx/glxext.c
index baa2489..12fff22 100644
--- a/src/glx/glxext.c
+++ b/src/glx/glxext.c
@@ -887,7 +887,11 @@ __glXInitialize(Display * dpy)
       return NULL;
    }
 
+#ifdef USE_XCB
+   __glX_send_client_info(dpyPriv);
+#else
    __glXClientInfo(dpy, dpyPriv->majorOpcode);
+#endif
 
    /* Grab the lock again and add the dispay private, unless somebody
     * beat us to initializing on this display in the meantime. */




More information about the mesa-commit mailing list