diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-23 23:04:27 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-23 23:04:27 +0000 |
commit | f3232bcaf1f875e6a7198e3b5ede3e286ceb04fa (patch) | |
tree | 4a104e02bf76ee3a1a7b189cd77b430dd67dfb10 /include/GL | |
parent | 7ac435066a2af75711369bab609e7551ede23b39 (diff) |
changed glXCopyContext()'s mask to unsigned long
Diffstat (limited to 'include/GL')
-rw-r--r-- | include/GL/glx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/GL/glx.h b/include/GL/glx.h index b9c494697e..d54a6684f6 100644 --- a/include/GL/glx.h +++ b/include/GL/glx.h @@ -1,10 +1,10 @@ -/* $Id: glx.h,v 1.10 1999/12/11 09:54:33 brianp Exp $ */ +/* $Id: glx.h,v 1.11 2000/02/23 23:04:27 brianp Exp $ */ /* * Mesa 3-D graphics library * Version: 3.3 * - * Copyright (C) 1999 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -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 ); |