diff options
author | Michal Krol <[email protected]> | 2009-12-23 17:02:03 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2010-01-05 09:26:48 +0100 |
commit | 2c046034dc5c95dd2fe84d0b4fd44f25235480b9 (patch) | |
tree | 5f24ffd3037921e8d4337cc775e8bc892ebadaa2 /src/gallium/include | |
parent | df0826fba37f38e9ea094180c71f2460e5b50e38 (diff) |
Remove TGSI_OPCODE_SHR, map existing usage to TGSI_OPCODE_ISHR.
This is to differentiate it from its unsigned version, TGSI_OPCODE_USHR.
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_shader_tokens.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h index 0288e3dd720..b1507258081 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -264,7 +264,7 @@ struct tgsi_property_data { #define TGSI_OPCODE_NOT 85 #define TGSI_OPCODE_TRUNC 86 #define TGSI_OPCODE_SHL 87 -#define TGSI_OPCODE_SHR 88 + /* gap */ #define TGSI_OPCODE_AND 89 #define TGSI_OPCODE_OR 90 #define TGSI_OPCODE_MOD 91 |