Replace GLuint with GLbitfield where appropriate. Also replace GLuint

with GLboolean in a few places.
This commit is contained in:
Brian Paul
2005-09-15 05:00:45 +00:00
parent 0f540f4b04
commit e00ac11d4d
11 changed files with 80 additions and 79 deletions

View File

@@ -169,7 +169,7 @@ static GLuint translate_mode( GLenum mode )
}
#define TEXTURE_UNKNOWN_INDEX 7
static GLuint translate_tex_src_bit( GLuint bit )
static GLuint translate_tex_src_bit( GLbitfield bit )
{
switch (bit) {
case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;