summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_rast.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-09 14:29:25 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-09 14:29:25 +0100
commite0e2008f1dcd73a59a184e0ef4c1dd77ac2a1cbf (patch)
tree5797aebf8466e77f78515f7a3cd1a8eefa1584d8 /src/gallium/drivers/llvmpipe/lp_rast.h
parent295aea04895676aae5b67a7016c62bab8e40b996 (diff)
llvmpipe: trivial/clear works
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.h b/src/gallium/drivers/llvmpipe/lp_rast.h
index 72f897503d..9dfdf25cda 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast.h
+++ b/src/gallium/drivers/llvmpipe/lp_rast.h
@@ -37,6 +37,7 @@
* individual function calls like this.
*/
struct lp_rasterizer;
+struct pipe_screen;
#define TILESIZE 64
@@ -118,19 +119,17 @@ struct lp_rast_triangle {
-struct lp_rasterizer *lp_rast_create( void );
+struct lp_rasterizer *lp_rast_create( struct pipe_screen *screen );
-void lp_rast_begin( struct lp_rasterizer *,
- unsigned width,
- unsigned height);
+boolean lp_rast_begin( struct lp_rasterizer *rast,
+ struct pipe_surface *cbuf,
+ struct pipe_surface *zsbuf,
+ boolean write_color,
+ boolean write_zstencil,
+ unsigned width,
+ unsigned height );
-void lp_rast_bind_color( struct lp_rasterizer *,
- struct pipe_surface *cbuf,
- boolean write_when_done );
-
-void lp_rast_bind_zstencil( struct lp_rasterizer *,
- struct pipe_surface *zsbuf,
- boolean write_when_done );
+void lp_rast_end( struct lp_rasterizer * );
/* Begining of each tile:
*/