summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Oliveira <igor.oliveira@openbossa.org>2010-01-19 17:01:50 -0400
committerIgor Oliveira <igor.oliveira@openbossa.org>2010-09-29 23:07:26 -0400
commit479baefe7cf46099742b09f557ab7f95916e1e94 (patch)
treee6187e16962368c018cf8c06fd9359de3bb6ff51
parentaafa90b89ea2476f27655988fed5da370c9523bb (diff)
gallium: add dfrac and dldexp opcodes
-rw-r--r--src/gallium/include/pipe/p_shader_tokens.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h
index 3b88288c4e..bcf6ae9508 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -352,7 +352,9 @@ struct tgsi_property_data {
#define TGSI_OPCODE_DRCP 157
#define TGSI_OPCODE_DSQRT 158
#define TGSI_OPCODE_DMAD 159
-#define TGSI_OPCODE_LAST 160
+#define TGSI_OPCODE_DFRAC 160
+#define TGSI_OPCODE_DLDEXP 161
+#define TGSI_OPCODE_LAST 162
#define TGSI_SAT_NONE 0 /* do not saturate */
#define TGSI_SAT_ZERO_ONE 1 /* clamp to [0,1] */