diff options
author | Subv <subv2112@gmail.com> | 2018-05-19 18:41:14 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-05-19 18:41:14 +0200 |
commit | a056d5ad8cde507a2723e906ba8b90121639506c (patch) | |
tree | 7721b814019c278eeeacfac80580bd09ce898e97 /src/video_core/engines | |
parent | Merge pull request #436 from bunnei/multi-core (diff) | |
download | yuzu-a056d5ad8cde507a2723e906ba8b90121639506c.tar yuzu-a056d5ad8cde507a2723e906ba8b90121639506c.tar.gz yuzu-a056d5ad8cde507a2723e906ba8b90121639506c.tar.bz2 yuzu-a056d5ad8cde507a2723e906ba8b90121639506c.tar.lz yuzu-a056d5ad8cde507a2723e906ba8b90121639506c.tar.xz yuzu-a056d5ad8cde507a2723e906ba8b90121639506c.tar.zst yuzu-a056d5ad8cde507a2723e906ba8b90121639506c.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index e1ceec268..7eb1bf8d9 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -320,6 +320,7 @@ public: ISETP_C, ISETP_IMM, ISETP_R, + PSETP, }; enum class Type { @@ -331,6 +332,7 @@ public: FloatSet, FloatSetPredicate, IntegerSetPredicate, + PredicateSetPredicate, Conversion, Unknown, }; @@ -477,6 +479,7 @@ private: INST("010010110110----", Id::ISETP_C, Type::IntegerSetPredicate, "ISETP_C"), INST("010110110110----", Id::ISETP_R, Type::IntegerSetPredicate, "ISETP_R"), INST("0011011-0110----", Id::ISETP_IMM, Type::IntegerSetPredicate, "ISETP_IMM"), + INST("0101000010010---", Id::PSETP, Type::PredicateSetPredicate, "PSETP"), }; #undef INST std::stable_sort(table.begin(), table.end(), [](const auto& a, const auto& b) { |