From: José Fonseca Date: Fri, 2 Nov 2012 16:56:30 +0000 (+0000) Subject: util: Make u_framebuffer.h C++ safe. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1034e944b95c2889d2dda10189160fccfed78fc;p=mesa.git util: Make u_framebuffer.h C++ safe. --- diff --git a/src/gallium/auxiliary/util/u_framebuffer.h b/src/gallium/auxiliary/util/u_framebuffer.h index e7dc1e9e41d..a8906623042 100644 --- a/src/gallium/auxiliary/util/u_framebuffer.h +++ b/src/gallium/auxiliary/util/u_framebuffer.h @@ -33,6 +33,10 @@ #include "pipe/p_state.h" +#ifdef __cplusplus +extern "C" { +#endif + extern boolean util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst, const struct pipe_framebuffer_state *src); @@ -51,4 +55,8 @@ util_framebuffer_min_size(const struct pipe_framebuffer_state *fb, unsigned *width, unsigned *height); +#ifdef __cplusplus +} +#endif + #endif /* U_FRAMEBUFFER_H */