summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_draw.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-08-02 13:59:31 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2007-08-02 13:59:31 +0100
commit4f442d9ef5db42867c99a7288b4114a0340f73e6 (patch)
tree10f6dbab05ad7ed5d88b565273263f8f74e23354 /src/mesa/state_tracker/st_draw.c
parent1ecc648398a51f734ef1e3b729595f41cedf29f9 (diff)
Reroute some clear functionality.
Still require the intelClear() call to flush batchbuffers. That will be removed later...
Diffstat (limited to 'src/mesa/state_tracker/st_draw.c')
-rw-r--r--src/mesa/state_tracker/st_draw.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/state_tracker/st_draw.c b/src/mesa/state_tracker/st_draw.c
index a424d1dd05..95fa43df4d 100644
--- a/src/mesa/state_tracker/st_draw.c
+++ b/src/mesa/state_tracker/st_draw.c
@@ -107,14 +107,3 @@ void st_destroy_draw( struct st_context *st )
}
-/** XXX temporary here */
-void
-st_clear(struct st_context *st, GLboolean color, GLboolean depth,
- GLboolean stencil, GLboolean accum)
-{
- /* This makes sure the softpipe has the latest scissor, etc values */
- st_validate_state( st );
-
- st->pipe->clear(st->pipe, color, depth, stencil, accum);
-}
-