X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fenums.h;h=0e18cd407e9dbd955f82b9d4a4361b8d86a3c235;hb=70dff4a55e767de8b9ce10f055b94ebb1f6a9755;hp=b2f373a4cf0d8b6cf09c62bec25a4255b665530c;hpb=3d8d5b298a268b119d840bc9bae0ee9e0c9244a9;p=mesa.git diff --git a/src/mesa/main/enums.h b/src/mesa/main/enums.h index b2f373a4cf0..0e18cd407e9 100644 --- a/src/mesa/main/enums.h +++ b/src/mesa/main/enums.h @@ -10,7 +10,6 @@ /* * Mesa 3-D graphics library - * Version: 6.5.1 * * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. * @@ -38,13 +37,22 @@ #define _ENUMS_H_ -extern const char *_mesa_lookup_enum_by_nr( int nr ); +#ifdef __cplusplus +extern "C" { +#endif + + +extern const char *_mesa_enum_to_string( int nr ); /* Get the name of an enum given that it is a primitive type. Avoids * GL_FALSE/GL_POINTS ambiguity and others. */ const char *_mesa_lookup_prim_by_nr( unsigned nr ); -extern int _mesa_lookup_enum_by_name( const char *symbol ); + +#ifdef __cplusplus +} +#endif + #endif