From eacd61bfefc416166998b2344540dab1e4e77beb Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 29 Nov 2011 10:57:43 -0800 Subject: [PATCH] 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 --- src/glx/glxext.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/glx/glxext.c b/src/glx/glxext.c index baa2489fd19..12fff22399d 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. */ -- 2.30.2