summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r200/r200_maos.c
blob: 23e1c962a16d31ef3d7cf80a5f08d725b0eccee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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