summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_winsys.h
diff options
context:
space:
mode:
authorBrian <brian@i915.localnet.net>2008-02-27 09:47:46 -0700
committerBrian <brian@i915.localnet.net>2008-02-27 09:47:46 -0700
commit4f36cf5858a7e53181c3578685675e15fbfcbb82 (patch)
tree5067a58e3f441b3028a9526d9eb9ace76445c739 /src/gallium/drivers/softpipe/sp_winsys.h
parentef6c82b0c13573df1aab7acd6f4f9ef9076f421f (diff)
gallium: implement pipe_screen for softpipe driver
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_winsys.h')
-rw-r--r--src/gallium/drivers/softpipe/sp_winsys.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_winsys.h b/src/gallium/drivers/softpipe/sp_winsys.h
index d6b379f58c..80f5354808 100644
--- a/src/gallium/drivers/softpipe/sp_winsys.h
+++ b/src/gallium/drivers/softpipe/sp_winsys.h
@@ -50,8 +50,13 @@ struct pipe_winsys;
struct pipe_context;
-struct pipe_context *softpipe_create( struct pipe_winsys *,
+struct pipe_context *softpipe_create( struct pipe_screen *,
+ struct pipe_winsys *,
struct softpipe_winsys * );
+struct pipe_screen *
+softpipe_create_screen(struct pipe_winsys *);
+
+
#endif /* SP_WINSYS_H */