xlib: call register_with_display() in Fake_glXChooseFBConfig()
authorBrian Paul <brianp@vmware.com>
Wed, 11 Jan 2012 02:24:41 +0000 (19:24 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 11 Jan 2012 19:43:45 +0000 (12:43 -0700)
as we do in Fake_glXChooseVisual().  This registers the MesaGLX
extension on the display so we can clean up buffers, etc. when
the display connection is closed.

Fixes a bug reported by Wayne E. Robertz.

NOTE: This is a candidate for the 7.11 branch.

Reviewed-by: Adam Jackson <ajax@redhat.com>
src/mesa/drivers/x11/fakeglx.c

index 445d43b65390c56927dc9f0ad7d94bbc6863e496..916296d1972822dc6c3e0bbda354d90e00a0c857 100644 (file)
@@ -1983,6 +1983,9 @@ Fake_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 Fake_glXGetFBConfigs(dpy, screen, nitems);