diff options
| author | 2021-03-17 00:53:53 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:23 -0400 | |
| commit | 3b7fd3ad0fcb0419c455c16127f43d01b6dc7fc9 (patch) | |
| tree | 194884a206ae5c4719fa4ddeeca1c3aa45acec36 /src/shader_recompiler/frontend/ir/flow_test.h | |
| parent | shader: Reorder phi nodes when redefined as undefined opcodes (diff) | |
| download | yuzu-3b7fd3ad0fcb0419c455c16127f43d01b6dc7fc9.tar.gz yuzu-3b7fd3ad0fcb0419c455c16127f43d01b6dc7fc9.tar.xz yuzu-3b7fd3ad0fcb0419c455c16127f43d01b6dc7fc9.zip | |
shader: Implement CSET and CSETP
Diffstat (limited to 'src/shader_recompiler/frontend/ir/flow_test.h')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/flow_test.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/flow_test.h b/src/shader_recompiler/frontend/ir/flow_test.h index ac883da13..09e113773 100644 --- a/src/shader_recompiler/frontend/ir/flow_test.h +++ b/src/shader_recompiler/frontend/ir/flow_test.h | |||
| @@ -5,12 +5,13 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <string> | 7 | #include <string> |
| 8 | |||
| 9 | #include <fmt/format.h> | 8 | #include <fmt/format.h> |
| 10 | 9 | ||
| 10 | #include "common/common_types.h" | ||
| 11 | |||
| 11 | namespace Shader::IR { | 12 | namespace Shader::IR { |
| 12 | 13 | ||
| 13 | enum class FlowTest { | 14 | enum class FlowTest : u64 { |
| 14 | F, | 15 | F, |
| 15 | LT, | 16 | LT, |
| 16 | EQ, | 17 | EQ, |