st/xlib: remove a couple more 'fake' references

This commit is contained in:
Keith Whitwell 2009-08-14 18:12:08 +01:00
parent 515a820021
commit dd5ac3cafc
1 changed files with 2 additions and 4 deletions

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