diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/pred.h')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/pred.h | 11 |
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 | ||
| 9 | namespace Shader::IR { | 9 | namespace Shader::IR { |
| 10 | 10 | ||
| 11 | enum class Pred { P0, P1, P2, P3, P4, P5, P6, PT }; | 11 | enum class Pred : u64 { |
| 12 | P0, | ||
| 13 | P1, | ||
| 14 | P2, | ||
| 15 | P3, | ||
| 16 | P4, | ||
| 17 | P5, | ||
| 18 | P6, | ||
| 19 | PT, | ||
| 20 | }; | ||
| 12 | 21 | ||
| 13 | constexpr size_t NUM_USER_PREDS = 6; | 22 | constexpr size_t NUM_USER_PREDS = 6; |
| 14 | constexpr size_t NUM_PREDS = 7; | 23 | constexpr size_t NUM_PREDS = 7; |