st/xlib: remove a couple more 'fake' references
authorKeith Whitwell <keithw@vmware.com>
Fri, 14 Aug 2009 17:12:08 +0000 (18:12 +0100)
committerKeith Whitwell <keithw@vmware.com>
Wed, 19 Aug 2009 11:02:53 +0000 (12:02 +0100)
src/gallium/state_trackers/glx/xlib/glx_api.c

index 22601a11962ae70a244ff02384803f7938d7537e..d1a98f899176cd3b8b6eca204dc6e1e37a0c2350 100644 (file)
@@ -1298,10 +1298,8 @@ void
 glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
                 unsigned long mask )
 {
-   GLXContext fakeSrc = src;
-   GLXContext fakeDst = dst;
-   XMesaContext xm_src = fakeSrc->xmesaContext;
-   XMesaContext xm_dst = fakeDst->xmesaContext;
+   XMesaContext xm_src = src->xmesaContext;
+   XMesaContext xm_dst = dst->xmesaContext;
    (void) dpy;
    if (MakeCurrent_PrevContext == src) {
       _mesa_Flush();