diff options
author | Keith Whitwell <[email protected]> | 2007-08-02 18:25:10 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-08-02 18:25:10 +0100 |
commit | 0e067f1fb20094417e84e1b18f2302251cece2ca (patch) | |
tree | c52e128a9d5d898a25171a45718d732667a449b6 /src/mesa/pipe/softpipe/sp_clear.c | |
parent | 3dfe125861df183fcc325c516639f80b86bfbc19 (diff) |
Remove references to accum buffers in softpipe.
Also some minor clear fixes.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_clear.c')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_clear.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/mesa/pipe/softpipe/sp_clear.c b/src/mesa/pipe/softpipe/sp_clear.c index 09cc643003c..e9b142e780b 100644 --- a/src/mesa/pipe/softpipe/sp_clear.c +++ b/src/mesa/pipe/softpipe/sp_clear.c @@ -63,7 +63,7 @@ color_value(GLuint format, const GLfloat color[4]) void softpipe_clear(struct pipe_context *pipe, GLboolean color, GLboolean depth, - GLboolean stencil, GLboolean accum) + GLboolean stencil) { struct softpipe_context *softpipe = softpipe_context(pipe); GLint x, y, w, h; @@ -152,15 +152,4 @@ softpipe_clear(struct pipe_context *pipe, GLboolean color, GLboolean depth, pipe->region_fill(pipe, ps->region, 0, x, y, w, h, clearVal, mask); } } - - if (accum) { - /* XXX there might be no notion of accum buffers in 'pipe'. - * Just implement them with a deep RGBA surface format... - */ - struct pipe_surface *ps = softpipe->framebuffer.abuf; - GLuint clearVal = 0x0; /* XXX FIX */ - GLuint mask = ~0; - assert(ps); - pipe->region_fill(pipe, ps->region, 0, x, y, w, h, clearVal, mask); - } } |