summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Oliveira <igor.oliveira@openbossa.org>2010-01-19 19:20:53 -0400
committerIgor Oliveira <igor.oliveira@openbossa.org>2010-09-29 23:07:26 -0400
commit26a7edf37a98eca6ac788d052360e1dc8fee437c (patch)
tree8b2c599fdc88fbc590976991ab8311c73a2441f3
parenta81e03b7c698498d6f16966d22aef32a0f81b52a (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 bcf6ae9508..a4a2d3dc9b 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -354,7 +354,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] */