diff options
author | Matt Turner <[email protected]> | 2012-10-16 19:37:34 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-10-17 19:30:34 -0700 |
commit | 6c281749696da417a88c3d1ee460f642f92a4cee (patch) | |
tree | ed27fe0189e44849020cc742d53bb3bc03550acd /src/mesa/main/enums.h | |
parent | b21455f27db6e55e708f8e264f4a15412ee8fa52 (diff) |
Finish _HAVE_FULL_GL removal
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/enums.h')
-rw-r--r-- | src/mesa/main/enums.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mesa/main/enums.h b/src/mesa/main/enums.h index 7733df22f91..8f40694261e 100644 --- a/src/mesa/main/enums.h +++ b/src/mesa/main/enums.h @@ -38,8 +38,6 @@ #include "mfeatures.h" -#if defined(_HAVE_FULL_GL) && _HAVE_FULL_GL - extern const char *_mesa_lookup_enum_by_nr( int nr ); /* Get the name of an enum given that it is a primitive type. Avoids @@ -49,14 +47,4 @@ const char *_mesa_lookup_prim_by_nr( unsigned nr ); extern int _mesa_lookup_enum_by_name( const char *symbol ); -#else - -/** No-op */ -#define _mesa_lookup_enum_by_name( s ) 0 - -/** No-op */ -#define _mesa_lookup_enum_by_nr( n ) "unknown" - -#endif - #endif |