From 7f6de60c585c6ac99d8e6b1280a8d7ce82f3c5e2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 10 Jan 2012 19:39:04 -0700 Subject: [PATCH] st/glx/xlib: call register_with_display() in glXChooseFBConfig() This is the same fix as the previous commit, except it's for the gallium glx/xlib state tracker. NOTE: This is a candidate for the 7.11 branch. Reviewed-by: Adam Jackson --- src/gallium/state_trackers/glx/xlib/glx_api.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/state_trackers/glx/xlib/glx_api.c b/src/gallium/state_trackers/glx/xlib/glx_api.c index b68882b..d034fb5 100644 --- a/src/gallium/state_trackers/glx/xlib/glx_api.c +++ b/src/gallium/state_trackers/glx/xlib/glx_api.c @@ -1788,6 +1788,9 @@ glXChooseFBConfig(Display *dpy, int screen, { XMesaVisual xmvis; + /* register ourselves as an extension on this display */ + register_with_display(dpy); + if (!attribList || !attribList[0]) { /* return list of all configs (per GLX_SGIX_fbconfig spec) */ return glXGetFBConfigs(dpy, screen, nitems); -- 2.7.4