summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-01-19 14:04:29 +0100
committerMichal Krol <michal@vmware.com>2010-01-19 14:04:29 +0100
commit7dbfe431b96054dd25244ca65bf9ccdb83de9b5b (patch)
tree9c723d27b15032f416a58503a6447c515bc3f5b8
parentd6f3c8c62a159f34679b64050e3d50b468139700 (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 880d18e429..15f8b0d92d 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -333,7 +333,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] */