diff options
author | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
commit | 08836341788a9f9d638d9dc8328510ccd18ddeb5 (patch) | |
tree | 6bd480b7f5f595c63914b1d39727d70a0f954723 /src/mesa/main/enums.c | |
parent | 19bbfc62638b60dd1a41e84686f24483adea5b03 (diff) |
lots of gl_*() to _mesa_*() namespace clean-up
Diffstat (limited to 'src/mesa/main/enums.c')
-rw-r--r-- | src/mesa/main/enums.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index 5a4d871226a..de18c7c0fe7 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -1,4 +1,4 @@ -/* $Id: enums.c,v 1.11 2001/01/17 02:49:38 keithw Exp $ */ +/* $Id: enums.c,v 1.12 2001/03/03 20:33:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -877,7 +877,7 @@ static void sort_enums( void ) -int gl_lookup_enum_by_name( const char *symbol ) +int _mesa_lookup_enum_by_name( const char *symbol ) { enum_elt tmp; enum_elt *e; @@ -896,7 +896,7 @@ int gl_lookup_enum_by_name( const char *symbol ) } -const char *gl_lookup_enum_by_nr( int nr ) +const char *_mesa_lookup_enum_by_nr( int nr ) { enum_elt tmp, *e, **f; |