diff options
author | Corbin Simpson <[email protected]> | 2009-12-06 23:49:02 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-12-06 23:49:02 -0800 |
commit | d8d8b0d244d9abfd16f99de7f2f30c635033f66f (patch) | |
tree | 59d5e2d2887551e482c5059a0dbcba65727a04e3 /src | |
parent | c99fb991a3b46c5978248b00eef0efd742127a44 (diff) |
softpipe: sp_winsys.h should define/include what it needs.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_winsys.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_winsys.h b/src/gallium/drivers/softpipe/sp_winsys.h index 9e571862b75..f203ded29ee 100644 --- a/src/gallium/drivers/softpipe/sp_winsys.h +++ b/src/gallium/drivers/softpipe/sp_winsys.h @@ -34,15 +34,17 @@ #ifndef SP_WINSYS_H #define SP_WINSYS_H - #ifdef __cplusplus extern "C" { #endif +#include "pipe/p_defines.h" struct pipe_screen; struct pipe_winsys; struct pipe_context; +struct pipe_texture; +struct pipe_buffer; struct pipe_context *softpipe_create( struct pipe_screen * ); |