summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-01-19 14:04:29 +0100
committerIgor Oliveira <igor.oliveira@openbossa.org>2010-09-29 23:07:26 -0400
commita08424340c990119dcae8b0ffd1d0f43f8c422cb (patch)
tree040d8e349d711594fd9c1c7a5cc72f43b8571f6c
parent0ef2e6932e59505608cf78531e0a0c4ae7a6df5e (diff)
gallium: Add missing DMAD opcode definition.
-rw-r--r--src/gallium/include/pipe/p_shader_tokens.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h
index da23e411fc..3b88288c4e 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -351,7 +351,8 @@ struct tgsi_property_data {
#define TGSI_OPCODE_DSEQ 156
#define TGSI_OPCODE_DRCP 157
#define TGSI_OPCODE_DSQRT 158
-#define TGSI_OPCODE_LAST 159
+#define TGSI_OPCODE_DMAD 159
+#define TGSI_OPCODE_LAST 160
#define TGSI_SAT_NONE 0 /* do not saturate */
#define TGSI_SAT_ZERO_ONE 1 /* clamp to [0,1] */