From: Brian Paul Date: Tue, 7 Aug 2001 16:01:34 +0000 (+0000) Subject: fixed GLX context sharing bug (reported by Eric Plante) X-Git-Tag: 062012170305~26970 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e1680ce1d8296b2182e8909856927bbeddf3b95;p=profile%2Fivi%2Fmesa.git fixed GLX context sharing bug (reported by Eric Plante) --- diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c index 539ee83..9bedf7f 100644 --- a/src/mesa/drivers/x11/fakeglx.c +++ b/src/mesa/drivers/x11/fakeglx.c @@ -1,4 +1,4 @@ -/* $Id: fakeglx.c,v 1.53 2001/05/29 23:15:07 brianp Exp $ */ +/* $Id: fakeglx.c,v 1.54 2001/08/07 16:01:34 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1132,7 +1132,7 @@ Fake_glXCreateContext( Display *dpy, XVisualInfo *visinfo, { XMesaVisual glxvis; struct fake_glx_context *glxCtx; - + struct fake_glx_context *shareCtx = (struct fake_glx_context *) share_list; glxCtx = CALLOC_STRUCT(fake_glx_context); if (!glxCtx) return 0; @@ -1152,7 +1152,7 @@ Fake_glXCreateContext( Display *dpy, XVisualInfo *visinfo, } glxCtx->xmesaContext = XMesaCreateContext(glxvis, - (XMesaContext) share_list); + shareCtx ? shareCtx->xmesaContext : NULL); if (!glxCtx->xmesaContext) { FREE(glxCtx); return NULL;