diff options
author | Brian Paul <brianp@vmware.com> | 2014-12-15 16:36:27 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2014-12-16 07:52:41 -0700 |
commit | 3ebc135b4ed261cb7959dd7429773b25ce545102 (patch) | |
tree | c5ea5bf801671ea249abfa0dcf6266d1b2f713bb /src/mesa/main/texobj.h | |
parent | 4b342fbbb739b4266ec6bdaa59d1807b75199061 (diff) | |
download | external_mesa3d-3ebc135b4ed261cb7959dd7429773b25ce545102.zip external_mesa3d-3ebc135b4ed261cb7959dd7429773b25ce545102.tar.gz external_mesa3d-3ebc135b4ed261cb7959dd7429773b25ce545102.tar.bz2 |
mesa: put extern "C" in header files
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index b1b7a30..efcd766 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -38,6 +38,11 @@ #include "samplerobj.h" +#ifdef __cplusplus +extern "C" { +#endif + + /** * \name Internal functions */ @@ -212,4 +217,9 @@ _mesa_InvalidateTexImage(GLuint texture, GLint level); /*@}*/ +#ifdef __cplusplus +} +#endif + + #endif |