changed glXCopyContext mask back to GLuint
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 25 Feb 2000 17:04:42 +0000 (17:04 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 25 Feb 2000 17:04:42 +0000 (17:04 +0000)
src/mesa/drivers/x11/fakeglx.c
src/mesa/drivers/x11/glxapi.c
src/mesa/drivers/x11/glxapi.h

index fd57fba7ee444c3d2247a4c30b8e9afa1c19ff08..c9e5a2b1cc48534688f569efb2e4452d91f7be20 100644 (file)
@@ -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;
index f7ab770cea55ef04a6220d43132eefaa741299e5..73fbba3263c827a60031bbe0a29ba87de32214bb 100644 (file)
@@ -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)
index c9a8f93816401fa5aed2214bfd12df9b3ea1da23..64102c45bf88c57c97e725eed925a65ad33d1ccc 100644 (file)
@@ -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);