diff options
author | Brian <[email protected]> | 2008-02-27 09:47:46 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-27 09:47:46 -0700 |
commit | 4f36cf5858a7e53181c3578685675e15fbfcbb82 (patch) | |
tree | 5067a58e3f441b3028a9526d9eb9ace76445c739 /src/gallium/drivers/softpipe/sp_texture.h | |
parent | ef6c82b0c13573df1aab7acd6f4f9ef9076f421f (diff) |
gallium: implement pipe_screen for softpipe driver
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_texture.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_texture.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_texture.h b/src/gallium/drivers/softpipe/sp_texture.h index 01b1e28ec5e..a7322144e6f 100644 --- a/src/gallium/drivers/softpipe/sp_texture.h +++ b/src/gallium/drivers/softpipe/sp_texture.h @@ -29,8 +29,12 @@ #define SP_TEXTURE_H +#include "pipe/p_state.h" + + struct pipe_context; -struct pipe_texture; +struct pipe_screen; +struct softpipe_context; struct softpipe_texture @@ -58,4 +62,8 @@ extern void softpipe_init_texture_funcs( struct softpipe_context *softpipe ); +extern void +softpipe_init_screen_texture_funcs(struct pipe_screen *screen); + + #endif /* SP_TEXTURE */ |