summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/nv50/nv50_clear.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/pipe/nv50/nv50_clear.c')
-rw-r--r--src/mesa/pipe/nv50/nv50_clear.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mesa/pipe/nv50/nv50_clear.c b/src/mesa/pipe/nv50/nv50_clear.c
new file mode 100644
index 0000000000..85af1af78d
--- /dev/null
+++ b/src/mesa/pipe/nv50/nv50_clear.c
@@ -0,0 +1,15 @@
+#include "pipe/p_context.h"
+#include "pipe/p_defines.h"
+#include "pipe/p_state.h"
+
+#include "nv50_context.h"
+#include "nv50_dma.h"
+
+
+void
+nv50_clear(struct pipe_context *pipe, struct pipe_surface *ps,
+ unsigned clearValue)
+{
+ pipe->region_fill(pipe, ps->region, 0, 0, 0, ps->width, ps->height,
+ clearValue);
+}