diff options
author | José Fonseca <[email protected]> | 2012-11-02 16:56:30 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-11-05 10:39:42 +0000 |
commit | f1034e944b95c2889d2dda10189160fccfed78fc (patch) | |
tree | 2b4c98b3d4bf89013dbef1aca8ab6f9cb6e2ec39 | |
parent | ccbfe3dde94cd50a4e6468cfeabf95c79c9d8072 (diff) |
util: Make u_framebuffer.h C++ safe.
-rw-r--r-- | src/gallium/auxiliary/util/u_framebuffer.h | 8 |
1 files changed, 8 insertions, 0 deletions
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 */ |