summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_clear.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-04-04 22:30:14 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-04-04 22:30:14 -0700
commita4a853e593c257d3b25f8229706d11b92e1ec8c8 (patch)
tree46f7af753d1ca73de76c45fa707c3edca4261fef /src/gallium/drivers/r300/r300_clear.c
parent7a164411ab678622d6f3194cf708b2884bfde90e (diff)
r300-gallium: Update clear() code.
We have a huge optimization opportunity, but for now we'll just use the util.
Diffstat (limited to 'src/gallium/drivers/r300/r300_clear.c')
-rw-r--r--src/gallium/drivers/r300/r300_clear.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/gallium/drivers/r300/r300_clear.c b/src/gallium/drivers/r300/r300_clear.c
index 8506ed2942..8b9cb819ae 100644
--- a/src/gallium/drivers/r300/r300_clear.c
+++ b/src/gallium/drivers/r300/r300_clear.c
@@ -22,11 +22,14 @@
#include "r300_clear.h"
-/* This gets its own file because Intel's is in its own file.
- * I assume there's a good reason. */
+/* Clears currently bound buffers. */
void r300_clear(struct pipe_context* pipe,
- struct pipe_surface* ps,
- unsigned color)
+ unsigned buffers,
+ const float* rgba,
+ double depth,
+ unsigned stencil)
{
- pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, color);
+ /* XXX we can and should do one clear if both color and zs are set */
+ util_clear(pipe, &r300_context(pipe)->framebuffer_state,
+ buffers, rgba, depth, stencil);
}