diff options
author | Brian Paul <[email protected]> | 2000-02-27 18:26:54 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-02-27 18:26:54 +0000 |
commit | 3994b77bab8c62a4c1a4dffdfba233ef46662b99 (patch) | |
tree | 512971245b61bb74bd73e353d59b41089137468f /include/GL/glx.h | |
parent | 0f21a5d36b5ec77e19fd660af90c09eab684fec5 (diff) |
changed glXCopyContext() mask to unsigned long, per GLX spec
Diffstat (limited to 'include/GL/glx.h')
-rw-r--r-- | include/GL/glx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/GL/glx.h b/include/GL/glx.h index d770fb989e8..a1d28bcc7fe 100644 --- a/include/GL/glx.h +++ b/include/GL/glx.h @@ -1,4 +1,4 @@ -/* $Id: glx.h,v 1.12 2000/02/25 12:35:57 joukj Exp $ */ +/* $Id: glx.h,v 1.13 2000/02/27 18:26:54 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -225,7 +225,7 @@ extern Bool glXMakeCurrent( Display *dpy, GLXDrawable drawable, GLXContext ctx); extern void glXCopyContext( Display *dpy, GLXContext src, GLXContext dst, - GLuint mask ); + unsigned long mask ); extern void glXSwapBuffers( Display *dpy, GLXDrawable drawable ); |