diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-27 18:26:54 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-27 18:26:54 +0000 |
commit | 3994b77bab8c62a4c1a4dffdfba233ef46662b99 (patch) | |
tree | 512971245b61bb74bd73e353d59b41089137468f /src/mesa/drivers/x11/glxapi.h | |
parent | 0f21a5d36b5ec77e19fd660af90c09eab684fec5 (diff) |
changed glXCopyContext() mask to unsigned long, per GLX spec
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 64102c45bf..27d62d8fae 100644 --- a/src/mesa/drivers/x11/glxapi.h +++ b/src/mesa/drivers/x11/glxapi.h @@ -1,4 +1,4 @@ -/* $Id: glxapi.h,v 1.3 2000/02/25 17:04:42 brianp Exp $ */ +/* $Id: glxapi.h,v 1.4 2000/02/27 18:26:54 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, GLuint mask); + void (*CopyContext)(Display *dpy, GLXContext src, GLXContext dst, unsigned long 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); |