diff options
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/impl.h')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h index 232f8c894..ad09ade7c 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | 11 | ||
| 12 | namespace Shader::Maxwell { | 12 | namespace Shader::Maxwell { |
| 13 | 13 | ||
| 14 | enum class ComparisonOp : u64 { | 14 | enum class CompareOp : u64 { |
| 15 | False, | 15 | False, |
| 16 | LessThan, | 16 | LessThan, |
| 17 | Equal, | 17 | Equal, |
| @@ -23,9 +23,9 @@ enum class ComparisonOp : u64 { | |||
| 23 | }; | 23 | }; |
| 24 | 24 | ||
| 25 | enum class BooleanOp : u64 { | 25 | enum class BooleanOp : u64 { |
| 26 | And, | 26 | AND, |
| 27 | Or, | 27 | OR, |
| 28 | Xor, | 28 | XOR, |
| 29 | }; | 29 | }; |
| 30 | 30 | ||
| 31 | class TranslatorVisitor { | 31 | class TranslatorVisitor { |