diff options
author | José Fonseca <[email protected]> | 2008-02-27 15:59:09 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-27 15:59:09 +0900 |
commit | f81b7a6285455e838adb061dcca90036c9f99522 (patch) | |
tree | ba4222132cb96e462d2f9eb3f3815b939ed2188b /src/gallium/drivers/i915simple/i915_winsys.h | |
parent | 8902ce06e85f48a436ee3794c77f7abf59f56594 (diff) |
gallium: update for new i915_screen.c file; fix some warnings.
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_winsys.h')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_winsys.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915simple/i915_winsys.h b/src/gallium/drivers/i915simple/i915_winsys.h index e6b0ac9c52e..aea30032818 100644 --- a/src/gallium/drivers/i915simple/i915_winsys.h +++ b/src/gallium/drivers/i915simple/i915_winsys.h @@ -40,6 +40,11 @@ #include "pipe/p_defines.h" +#ifdef __cplusplus +extern "C" { +#endif + + /* Pipe drivers are (meant to be!) independent of both GL and the * window system. The window system provides a buffer manager and a * set of additional hooks for things like command buffer submission, @@ -112,4 +117,8 @@ struct pipe_context *i915_create_context( struct pipe_screen *, struct pipe_winsys *, struct i915_winsys * ); +#ifdef __cplusplus +} +#endif + #endif |