diff options
author | Brian Paul <[email protected]> | 2000-02-25 17:04:42 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-02-25 17:04:42 +0000 |
commit | c1aa1218ef301b0fd0a7c948ac38b531632ceca6 (patch) | |
tree | 3f42c0317524f269e30aa24562732c48cd5129e0 /src/mesa/drivers/x11/glxapi.h | |
parent | 9ec28c03c07cdae1305d5911317eee8c0ca66db1 (diff) |
changed glXCopyContext mask back to GLuint
Diffstat (limited to 'src/mesa/drivers/x11/glxapi.h')
-rw-r--r-- | src/mesa/drivers/x11/glxapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/x11/glxapi.h b/src/mesa/drivers/x11/glxapi.h index c9a8f938164..64102c45bf8 100644 --- a/src/mesa/drivers/x11/glxapi.h +++ b/src/mesa/drivers/x11/glxapi.h @@ -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); |