summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Oliveira <igor.oliveira@openbossa.org>2010-01-19 17:01:50 -0400
committerMichal Krol <michal@vmware.com>2010-01-20 13:05:23 +0100
commit1ce170eef554cf99a355523cf3665a5079e1dec6 (patch)
treece5ddfb912b06a2491caaf1417c0f24401e2027b
parentf842aa7efba1d48c161c5b6ffa1e222488c8030d (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 15f8b0d92d..9ab18c47e0 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -334,7 +334,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] */