From: Brian Paul Date: Wed, 11 Jan 2012 02:39:04 +0000 (-0700) Subject: st/glx/xlib: call register_with_display() in glXChooseFBConfig() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f6de60c585c6ac99d8e6b1280a8d7ce82f3c5e2;p=mesa.git 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 --- diff --git a/src/gallium/state_trackers/glx/xlib/glx_api.c b/src/gallium/state_trackers/glx/xlib/glx_api.c index b68882b1f97..d034fb5bb35 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);