diff options
author | Ilia Mirkin <[email protected]> | 2014-04-25 01:43:05 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-04-28 19:04:46 -0400 |
commit | a52eaba78737fd6473490ee8fe6a8415cd52ef98 (patch) | |
tree | 2184708689b714ad0650d993c2e68a8ecb5d3e8e /src/gallium/include | |
parent | b125c92aa9837c80d1b7e26554d0b66b4db3f2e1 (diff) |
gallium: add new opcodes for ARB_gs5 bit manipulation support
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/include')
-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 b537166e93c..d095bd3a8f5 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -462,7 +462,16 @@ struct tgsi_property_data { #define TGSI_OPCODE_LODQ 183 -#define TGSI_OPCODE_LAST 184 +#define TGSI_OPCODE_IBFE 184 +#define TGSI_OPCODE_UBFE 185 +#define TGSI_OPCODE_BFI 186 +#define TGSI_OPCODE_BREV 187 +#define TGSI_OPCODE_POPC 188 +#define TGSI_OPCODE_LSB 189 +#define TGSI_OPCODE_IMSB 190 +#define TGSI_OPCODE_UMSB 191 + +#define TGSI_OPCODE_LAST 192 #define TGSI_SAT_NONE 0 /* do not saturate */ #define TGSI_SAT_ZERO_ONE 1 /* clamp to [0,1] */ |