summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/nv40/nv40_clear.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/pipe/nv40/nv40_clear.c')
-rw-r--r--src/mesa/pipe/nv40/nv40_clear.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mesa/pipe/nv40/nv40_clear.c b/src/mesa/pipe/nv40/nv40_clear.c
new file mode 100644
index 0000000000..f3b7a23689
--- /dev/null
+++ b/src/mesa/pipe/nv40/nv40_clear.c
@@ -0,0 +1,21 @@
+#include "pipe/p_context.h"
+#include "pipe/p_defines.h"
+#include "pipe/p_state.h"
+
+#include "nv40_context.h"
+#include "nv40_dma.h"
+
+
+void
+nv40_clear(struct pipe_context *pipe, struct pipe_surface *ps,
+ unsigned clearValue)
+{
+ /*XXX: We're actually Z24_S8... */
+ if (ps->format == PIPE_FORMAT_S8_Z24) {
+ clearValue = (((clearValue & 0xff000000) >> 24) |
+ ((clearValue & 0x00ffffff) << 8));
+ }
+
+ pipe->region_fill(pipe, ps->region, 0, 0, 0, ps->width, ps->height,
+ clearValue);
+}