summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-10-28 21:05:41 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-10-28 21:05:41 +0100
commit44b552be712a9db83a92710648cde4053adf876d (patch)
treeff128344b1a902ae61557c8515dc2fb546720463 /src/video_core/engines
parentMerge pull request #4851 from ReinUsesLisp/core-threads-race (diff)
downloadyuzu-44b552be712a9db83a92710648cde4053adf876d.tar
yuzu-44b552be712a9db83a92710648cde4053adf876d.tar.gz
yuzu-44b552be712a9db83a92710648cde4053adf876d.tar.bz2
yuzu-44b552be712a9db83a92710648cde4053adf876d.tar.lz
yuzu-44b552be712a9db83a92710648cde4053adf876d.tar.xz
yuzu-44b552be712a9db83a92710648cde4053adf876d.tar.zst
yuzu-44b552be712a9db83a92710648cde4053adf876d.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index d374b73cf..a3c05d1b0 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -1893,6 +1893,7 @@ public:
ICMP_IMM,
FCMP_RR,
FCMP_RC,
+ FCMP_IMMR,
MUFU, // Multi-Function Operator
RRO_C, // Range Reduction Operator
RRO_R,
@@ -2205,6 +2206,7 @@ private:
INST("0111110-0-------", Id::HSET2_IMM, Type::HalfSet, "HSET2_IMM"),
INST("010110111010----", Id::FCMP_RR, Type::Arithmetic, "FCMP_RR"),
INST("010010111010----", Id::FCMP_RC, Type::Arithmetic, "FCMP_RC"),
+ INST("0011011-1010----", Id::FCMP_IMMR, Type::Arithmetic, "FCMP_IMMR"),
INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"),
INST("0100110010010---", Id::RRO_C, Type::Arithmetic, "RRO_C"),
INST("0101110010010---", Id::RRO_R, Type::Arithmetic, "RRO_R"),