summaryrefslogtreecommitdiff
path: root/r200/r200_maos.c
diff options
context:
space:
mode:
Diffstat (limited to 'r200/r200_maos.c')
-rw-r--r--r200/r200_maos.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/r200/r200_maos.c b/r200/r200_maos.c
new file mode 100644
index 0000000..23e1c96
--- /dev/null
+++ b/r200/r200_maos.c
@@ -0,0 +1,15 @@
+
+
+/* Currently, can only use arrays, verts are not implemented, though
+ * verts are suspected to be faster.
+ * To get an idea how the verts path works, look at the radeon implementation.
+ */
+#include <string.h>
+
+#include "r200_context.h"
+#define R200_MAOS_VERTS 0
+#if (R200_MAOS_VERTS)
+#include "r200_maos_verts.c"
+#else
+#include "r200_maos_arrays.c"
+#endif