diff options
author | Brian Paul <[email protected]> | 2005-09-15 05:00:45 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-15 05:00:45 +0000 |
commit | e00ac11d4dd05c56584622dc2707bbdcfe4b2707 (patch) | |
tree | af58ae919ba702b593311ae4251c92f6d1257f0a /src/mesa/main/buffers.h | |
parent | 0f540f4b0468f581f63fb0b6347fe66251fa545a (diff) |
Replace GLuint with GLbitfield where appropriate. Also replace GLuint
with GLboolean in a few places.
Diffstat (limited to 'src/mesa/main/buffers.h')
-rw-r--r-- | src/mesa/main/buffers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/buffers.h b/src/mesa/main/buffers.h index 0c7f68ee79e..b10d680d8ef 100644 --- a/src/mesa/main/buffers.h +++ b/src/mesa/main/buffers.h @@ -5,7 +5,7 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * @@ -54,7 +54,7 @@ _mesa_DrawBuffersARB(GLsizei n, const GLenum *buffers); extern void _mesa_drawbuffers(GLcontext *ctx, GLsizei n, const GLenum *buffers, - const GLuint *destMask); + const GLbitfield *destMask); extern void GLAPIENTRY _mesa_ReadBuffer( GLenum mode ); |