diff options
author | Roland Scheidegger <[email protected]> | 2004-05-28 14:50:36 +0000 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2004-05-28 14:50:36 +0000 |
commit | 957b7343228e28d62a1c1e96903bb2a0b74dec20 (patch) | |
tree | 20fcf14f1a0d38602c663e10719b7a7308b8f058 /src/mesa/drivers/dri/r200/r200_maos.c | |
parent | 8cdccc82d7948daee256e092a5253d49e277ef75 (diff) |
remove never finished verts path (r200_maos_vbtmp.h, r200_maos_verts.c) and unused R200_OLD_PACKET macro
Diffstat (limited to 'src/mesa/drivers/dri/r200/r200_maos.c')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_maos.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_maos.c b/src/mesa/drivers/dri/r200/r200_maos.c index a97736457fd..23e1c962a16 100644 --- a/src/mesa/drivers/dri/r200/r200_maos.c +++ b/src/mesa/drivers/dri/r200/r200_maos.c @@ -1,13 +1,14 @@ -/* If using new packets, can choose either verts or arrays. - * Otherwise, must use verts. +/* 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) || (R200_OLD_PACKETS) +#if (R200_MAOS_VERTS) #include "r200_maos_verts.c" #else #include "r200_maos_arrays.c" |