diff options
| author | 2020-04-15 03:16:56 -0400 | |
|---|---|---|
| committer | 2020-04-15 03:16:56 -0400 | |
| commit | 50c0a92db8d72879b73b0d8a08ff3633e1b4dda7 (patch) | |
| tree | 696e10403e644283b81799e07933327bdd2a58af /src/video_core/engines | |
| parent | Merge pull request #3664 from ReinUsesLisp/fe3h-black-squares (diff) | |
| parent | shader/arithmetic: Add FCMP_CR variant (diff) | |
| download | yuzu-50c0a92db8d72879b73b0d8a08ff3633e1b4dda7.tar.gz yuzu-50c0a92db8d72879b73b0d8a08ff3633e1b4dda7.tar.xz yuzu-50c0a92db8d72879b73b0d8a08ff3633e1b4dda7.zip | |
Merge pull request #3663 from ReinUsesLisp/fcmp-rc
shader/arithmetic: Add FCMP_CR variant
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index c66c66f6c..430ee86ba 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -1871,7 +1871,8 @@ public: | |||
| 1871 | ICMP_R, | 1871 | ICMP_R, |
| 1872 | ICMP_CR, | 1872 | ICMP_CR, |
| 1873 | ICMP_IMM, | 1873 | ICMP_IMM, |
| 1874 | FCMP_R, | 1874 | FCMP_RR, |
| 1875 | FCMP_RC, | ||
| 1875 | MUFU, // Multi-Function Operator | 1876 | MUFU, // Multi-Function Operator |
| 1876 | RRO_C, // Range Reduction Operator | 1877 | RRO_C, // Range Reduction Operator |
| 1877 | RRO_R, | 1878 | RRO_R, |
| @@ -2179,7 +2180,8 @@ private: | |||
| 2179 | INST("0101110100100---", Id::HSETP2_R, Type::HalfSetPredicate, "HSETP2_R"), | 2180 | INST("0101110100100---", Id::HSETP2_R, Type::HalfSetPredicate, "HSETP2_R"), |
| 2180 | INST("0111111-0-------", Id::HSETP2_IMM, Type::HalfSetPredicate, "HSETP2_IMM"), | 2181 | INST("0111111-0-------", Id::HSETP2_IMM, Type::HalfSetPredicate, "HSETP2_IMM"), |
| 2181 | INST("0101110100011---", Id::HSET2_R, Type::HalfSet, "HSET2_R"), | 2182 | INST("0101110100011---", Id::HSET2_R, Type::HalfSet, "HSET2_R"), |
| 2182 | INST("010110111010----", Id::FCMP_R, Type::Arithmetic, "FCMP_R"), | 2183 | INST("010110111010----", Id::FCMP_RR, Type::Arithmetic, "FCMP_RR"), |
| 2184 | INST("010010111010----", Id::FCMP_RC, Type::Arithmetic, "FCMP_RC"), | ||
| 2183 | INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"), | 2185 | INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"), |
| 2184 | INST("0100110010010---", Id::RRO_C, Type::Arithmetic, "RRO_C"), | 2186 | INST("0100110010010---", Id::RRO_C, Type::Arithmetic, "RRO_C"), |
| 2185 | INST("0101110010010---", Id::RRO_R, Type::Arithmetic, "RRO_R"), | 2187 | INST("0101110010010---", Id::RRO_R, Type::Arithmetic, "RRO_R"), |