summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Oliveira <igor.oliveira@openbossa.org>2010-01-18 13:54:19 -0400
committerIgor Oliveira <igor.oliveira@openbossa.org>2010-09-29 23:07:25 -0400
commit6386f88499cae2435a4f753c960869f3301011b6 (patch)
treeecd3e946091a2235afbf3e1408c94838e47d8d9d
parentbf3a4ef0ac00ca2e851dfd92dc7919d1425089e3 (diff)
gallium: add double opcodes ddiv, dmul, dmax, dmin, dslt, dsge, dseq, drcp and dqsrt
-rw-r--r--src/gallium/include/pipe/p_shader_tokens.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h
index 3a55de3ae6..7eae5f59e1 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -341,7 +341,16 @@ struct tgsi_property_data {
#define TGSI_OPCODE_D2F 146
#define TGSI_OPCODE_DMOV 147
#define TGSI_OPCODE_DADD 148
-#define TGSI_OPCODE_LAST 149
+#define TGSI_OPCODE_DDIV 149
+#define TGSI_OPCODE_DMUL 150
+#define TGSI_OPCODE_DMAX 151
+#define TGSI_OPCODE_DMIN 152
+#define TGSI_OPCODE_DSLT 153
+#define TGSI_OPCODE_DSGE 154
+#define TGSI_OPCODE_DSEQ 155
+#define TGSI_OPCODE_DRCP 156
+#define TGSI_OPCODE_DSQRT 157
+#define TGSI_OPCODE_LAST 158
#define TGSI_SAT_NONE 0 /* do not saturate */
#define TGSI_SAT_ZERO_ONE 1 /* clamp to [0,1] */