From: Francisco Jerez Date: Wed, 12 Nov 2014 01:47:13 +0000 (+0200) Subject: mesa: Add extern "C" guards to shaderimage.h to allow inclusion from C++ code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8424cafbac5c9747f0ee9ae55d8633e8172ee47f;p=mesa.git mesa: Add extern "C" guards to shaderimage.h to allow inclusion from C++ code. Reviewed-by: Matt Turner --- diff --git a/src/mesa/main/shaderimage.h b/src/mesa/main/shaderimage.h index 4aa859ca5cc..1c7d1e0e894 100644 --- a/src/mesa/main/shaderimage.h +++ b/src/mesa/main/shaderimage.h @@ -30,6 +30,10 @@ #include "glheader.h" #include "formats.h" +#ifdef __cplusplus +extern "C" { +#endif + struct gl_context; /** @@ -58,4 +62,8 @@ _mesa_BindImageTextures(GLuint first, GLsizei count, const GLuint *textures); void GLAPIENTRY _mesa_MemoryBarrier(GLbitfield barriers); +#ifdef __cplusplus +} +#endif + #endif