diff options
author | Brian Paul <[email protected]> | 2000-02-05 01:51:54 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-02-05 01:51:54 +0000 |
commit | e69f1f54f9506210c58f104db80adadca0b1fe2c (patch) | |
tree | 236770f1fda7efa87955c7f6ab2ffe5ce96db3d2 /src/mesa/main | |
parent | 38a683816bb00347d6e34c4b3215e57df8c9c870 (diff) |
GL_ARRAY_ELEMENT_LOCK_FIRST/COUNT_SGI changed to _EXT suffix
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/enums.c | 8 | ||||
-rw-r--r-- | src/mesa/main/get.c | 7 |
2 files changed, 7 insertions, 8 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index 3ee2c6fa29b..5dbda02dfb3 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -1,10 +1,10 @@ -/* $Id: enums.c,v 1.5 1999/11/11 01:22:26 brianp Exp $ */ +/* $Id: enums.c,v 1.6 2000/02/05 01:52:05 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"), @@ -795,8 +795,8 @@ enum_elt all_enums[] = { "GL_NATIVE_GRAPHICS_HANDLE_PGI", 107010 }, /* GL_EXT_compiled_vertex_array */ - { "GL_ARRAY_ELEMENT_LOCK_FIRST_SGI", 0x81A8}, - { "GL_ARRAY_ELEMENT_LOCK_COUNT_SGI", 0x81A9}, + { "GL_ARRAY_ELEMENT_LOCK_FIRST_EXT", 0x81A8}, + { "GL_ARRAY_ELEMENT_LOCK_COUNT_EXT", 0x81A9}, /* GL_EXT_clip_volume_hint */ { "GL_CLIP_VOLUME_CLIPPING_HINT_EXT", 0x80F0} diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 04f1e42b8a5..b0a7fc677ef 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1,4 +1,4 @@ -/* $Id: get.c,v 1.10 2000/02/03 19:40:07 brianp Exp $ */ +/* $Id: get.c,v 1.11 2000/02/05 01:52:05 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -3812,11 +3812,10 @@ _mesa_GetIntegerv( GLenum pname, GLint *params ) break; /* GL_EXT_compiled_vertex_array */ - case GL_ARRAY_ELEMENT_LOCK_FIRST_SGI: + case GL_ARRAY_ELEMENT_LOCK_FIRST_EXT: *params = ctx->Array.LockFirst; break; - - case GL_ARRAY_ELEMENT_LOCK_COUNT_SGI: + case GL_ARRAY_ELEMENT_LOCK_COUNT_EXT: *params = ctx->Array.LockCount; break; |