From: Ian Romanick <ian.d.roman...@intel.com> __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.roman...@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. */ -- 1.7.6.4 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev