diff options
author | Igor Oliveira <igor.oliveira@openbossa.org> | 2010-01-18 13:54:19 -0400 |
---|---|---|
committer | Michal Krol <michal@vmware.com> | 2010-01-19 13:33:50 +0100 |
commit | 3f5472a26c129c79eb7593a3a22a0469620227cc (patch) | |
tree | b5d331b765bdfe9023d78778c92e0e0f874c170b | |
parent | 5b953f12274043653e34e850d560d7292d4b4808 (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.h | 11 |
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 59751469c2..ccfe41cb48 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -323,7 +323,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] */ |