summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Oliveira <igor.oliveira@openbossa.org>2010-01-19 19:20:53 -0400
committerMichal Krol <michal@vmware.com>2010-01-20 13:05:29 +0100
commit15681c5f83181574b8853e2c96a695d3b4a1843d (patch)
treeab62acd769f80ee972f04ccc697f04e7401abf8a
parent991b1d0ce000908cef3403c954a0a4c34adced09 (diff)
gallium: add DFRACEXP opcode
-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 9ab18c47e0..e0c191cae6 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -336,7 +336,8 @@ struct tgsi_property_data {
#define TGSI_OPCODE_DMAD 159
#define TGSI_OPCODE_DFRAC 160
#define TGSI_OPCODE_DLDEXP 161
-#define TGSI_OPCODE_LAST 162
+#define TGSI_OPCODE_DFRACEXP 162
+#define TGSI_OPCODE_LAST 163
#define TGSI_SAT_NONE 0 /* do not saturate */
#define TGSI_SAT_ZERO_ONE 1 /* clamp to [0,1] */