changed glXCopyContext mask back to GLuint
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $Id: fakeglx.c,v 1.22 2000/02/23 23:09:12 brianp Exp $ */
|
||||
/* $Id: fakeglx.c,v 1.23 2000/02/25 17:04:42 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
@@ -1207,7 +1207,7 @@ Fake_glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap )
|
||||
|
||||
static void
|
||||
Fake_glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
|
||||
unsigned long mask )
|
||||
GLuint mask )
|
||||
{
|
||||
XMesaContext xm_src = (XMesaContext) src;
|
||||
XMesaContext xm_dst = (XMesaContext) dst;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $Id: glxapi.c,v 1.13 2000/02/25 16:46:01 brianp Exp $ */
|
||||
/* $Id: glxapi.c,v 1.14 2000/02/25 17:04:42 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
@@ -169,8 +169,7 @@ XVisualInfo *glXChooseVisual(Display *dpy, int screen, int *list)
|
||||
}
|
||||
|
||||
|
||||
void glXCopyContext(Display *dpy, GLXContext src, GLXContext dst,
|
||||
unsigned long mask)
|
||||
void glXCopyContext(Display *dpy, GLXContext src, GLXContext dst, GLuint mask)
|
||||
{
|
||||
struct _glxapi_table *t = get_dispatch(dpy);
|
||||
if (!t)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $Id: glxapi.h,v 1.2 2000/02/23 23:09:12 brianp Exp $ */
|
||||
/* $Id: glxapi.h,v 1.3 2000/02/25 17:04:42 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
@@ -56,7 +56,7 @@
|
||||
struct _glxapi_table {
|
||||
/* GLX 1.0 functions */
|
||||
XVisualInfo *(*ChooseVisual)(Display *dpy, int screen, int *list);
|
||||
void (*CopyContext)(Display *dpy, GLXContext src, GLXContext dst, unsigned long mask);
|
||||
void (*CopyContext)(Display *dpy, GLXContext src, GLXContext dst, GLuint mask);
|
||||
GLXContext (*CreateContext)(Display *dpy, XVisualInfo *visinfo, GLXContext shareList, Bool direct);
|
||||
GLXPixmap (*CreateGLXPixmap)(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap);
|
||||
void (*DestroyContext)(Display *dpy, GLXContext ctx);
|
||||
|
||||
Reference in New Issue
Block a user