summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/impl.h')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/impl.h8
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
12namespace Shader::Maxwell { 12namespace Shader::Maxwell {
13 13
14enum class ComparisonOp : u64 { 14enum 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
25enum class BooleanOp : u64 { 25enum class BooleanOp : u64 {
26 And, 26 AND,
27 Or, 27 OR,
28 Xor, 28 XOR,
29}; 29};
30 30
31class TranslatorVisitor { 31class TranslatorVisitor {