summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/tgsi/exec/tgsi_dump.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-09 14:36:14 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-09 14:36:14 -0600
commit31bd01f93b0f5795e290897e79c3f16d90e1f202 (patch)
tree2d029b3a04252526a18002639afbdf115afbff56 /src/mesa/pipe/tgsi/exec/tgsi_dump.c
parent47ff9428ee09a948e6b412f7e3e46ed1305881a1 (diff)
New ATTRIB interpolation type for vertex program inputs/declarations.
Diffstat (limited to 'src/mesa/pipe/tgsi/exec/tgsi_dump.c')
-rwxr-xr-xsrc/mesa/pipe/tgsi/exec/tgsi_dump.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_dump.c b/src/mesa/pipe/tgsi/exec/tgsi_dump.c
index c179659aee..463f841dde 100755
--- a/src/mesa/pipe/tgsi/exec/tgsi_dump.c
+++ b/src/mesa/pipe/tgsi/exec/tgsi_dump.c
@@ -189,14 +189,16 @@ static const char *TGSI_INTERPOLATES[] =
{
"INTERPOLATE_CONSTANT",
"INTERPOLATE_LINEAR",
- "INTERPOLATE_PERSPECTIVE"
+ "INTERPOLATE_PERSPECTIVE",
+ "INTERPOLATE_ATTRIB"
};
static const char *TGSI_INTERPOLATES_SHORT[] =
{
"CONSTANT",
"LINEAR",
- "PERSPECTIVE"
+ "PERSPECTIVE",
+ "ATTRIB"
};
static const char *TGSI_SEMANTICS[] =