X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fenums.h;h=0e18cd407e9dbd955f82b9d4a4361b8d86a3c235;hb=78a391ed8311fc5215347f8775bf0aa29568b78d;hp=36c053d4bc5bee48d08cd699fe88077c1bb59525;hpb=3b29a6ec911a4bac38d35075b7d9ea6873c6efc1;p=mesa.git diff --git a/src/mesa/main/enums.h b/src/mesa/main/enums.h index 36c053d4bc5..0e18cd407e9 100644 --- a/src/mesa/main/enums.h +++ b/src/mesa/main/enums.h @@ -37,11 +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 ); + +#ifdef __cplusplus +} +#endif + + #endif