diff options
author | Alexander von Gluck IV <[email protected]> | 2015-05-14 17:19:44 -0500 |
---|---|---|
committer | Alexander von Gluck IV <[email protected]> | 2015-05-15 13:55:59 -0400 |
commit | 40a8b2f92a8aef25199324046114023c4ed3d772 (patch) | |
tree | a19601f773cd88dd084259784513abb3f3146811 /src/gallium/auxiliary/postprocess | |
parent | 3687d752e51829b4723c9abb07ae56d2bbcda570 (diff) |
gallium/aux: Add needed extern "C" wrappers
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/postprocess')
-rw-r--r-- | src/gallium/auxiliary/postprocess/postprocess.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 |