From: Alexander von Gluck IV Date: Thu, 14 May 2015 22:19:44 +0000 (-0500) Subject: gallium/aux: Add needed extern "C" wrappers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=40a8b2f92a8aef25199324046114023c4ed3d772;p=mesa.git gallium/aux: Add needed extern "C" wrappers Reviewed-by: Brian Paul --- diff --git a/src/gallium/auxiliary/postprocess/postprocess.h b/src/gallium/auxiliary/postprocess/postprocess.h index c72f2c4b407..9b9f981a5ff 100644 --- a/src/gallium/auxiliary/postprocess/postprocess.h +++ b/src/gallium/auxiliary/postprocess/postprocess.h @@ -30,6 +30,10 @@ #include "pipe/p_state.h" +#ifdef __cplusplus +extern "C" { +#endif + struct cso_context; struct pp_queue_t; /* Forward definition */ @@ -85,4 +89,9 @@ void pp_celshade_free(struct pp_queue_t *, unsigned int); void pp_nocolor_free(struct pp_queue_t *, unsigned int); void pp_jimenezmlaa_free(struct pp_queue_t *, unsigned int); + +#ifdef __cplusplus +} +#endif + #endif diff --git a/src/gallium/auxiliary/util/u_tests.h b/src/gallium/auxiliary/util/u_tests.h index 49ae54f876b..106b0a0a938 100644 --- a/src/gallium/auxiliary/util/u_tests.h +++ b/src/gallium/auxiliary/util/u_tests.h @@ -30,8 +30,16 @@ #include "pipe/p_compiler.h" +#ifdef __cplusplus +extern "C" { +#endif + struct pipe_screen; void util_run_tests(struct pipe_screen *screen); +#ifdef __cplusplus +} +#endif + #endif