summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/pred.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/ir/pred.h')
-rw-r--r--src/shader_recompiler/frontend/ir/pred.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/pred.h b/src/shader_recompiler/frontend/ir/pred.h
index daf23193f..c6f2f82bf 100644
--- a/src/shader_recompiler/frontend/ir/pred.h
+++ b/src/shader_recompiler/frontend/ir/pred.h
@@ -8,7 +8,16 @@
8 8
9namespace Shader::IR { 9namespace Shader::IR {
10 10
11enum class Pred { P0, P1, P2, P3, P4, P5, P6, PT }; 11enum class Pred : u64 {
12 P0,
13 P1,
14 P2,
15 P3,
16 P4,
17 P5,
18 P6,
19 PT,
20};
12 21
13constexpr size_t NUM_USER_PREDS = 6; 22constexpr size_t NUM_USER_PREDS = 6;
14constexpr size_t NUM_PREDS = 7; 23constexpr size_t NUM_PREDS = 7;