Mesa (master): st/glx/xlib: call register_with_display() in glXChooseFBConfig()

Brian Paul brianp at kemper.freedesktop.org
Wed Jan 11 19:44:12 UTC 2012


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

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Jan 10 19:39:04 2012 -0700

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 <ajax at redhat.com>

---

 src/gallium/state_trackers/glx/xlib/glx_api.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

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);




More information about the mesa-commit mailing list