summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-06-01 06:03:23 +0200
committerbunnei <bunneidev@gmail.com>2018-06-03 17:14:31 +0200
commite54ea773fcaff6f757a7170b78c7b871372bfc3b (patch)
tree717ae9888640872afc096f910e889aa4ebfffa1d /src/video_core/engines
parentMerge pull request #488 from Subv/thread_masks (diff)
downloadyuzu-e54ea773fcaff6f757a7170b78c7b871372bfc3b.tar
yuzu-e54ea773fcaff6f757a7170b78c7b871372bfc3b.tar.gz
yuzu-e54ea773fcaff6f757a7170b78c7b871372bfc3b.tar.bz2
yuzu-e54ea773fcaff6f757a7170b78c7b871372bfc3b.tar.lz
yuzu-e54ea773fcaff6f757a7170b78c7b871372bfc3b.tar.xz
yuzu-e54ea773fcaff6f757a7170b78c7b871372bfc3b.tar.zst
yuzu-e54ea773fcaff6f757a7170b78c7b871372bfc3b.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index f32a17057..26c891356 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -297,8 +297,10 @@ public:
FMUL_R,
FMUL_IMM,
FMUL32_IMM,
- MUFU, // Multi-Function Operator
- RRO, // Range Reduction Operator
+ MUFU, // Multi-Function Operator
+ RRO_C, // Range Reduction Operator
+ RRO_R,
+ RRO_IMM,
F2F_C,
F2F_R,
F2F_IMM,
@@ -459,7 +461,9 @@ private:
INST("0011100-01101---", Id::FMUL_IMM, Type::Arithmetic, "FMUL_IMM"),
INST("00011110--------", Id::FMUL32_IMM, Type::Arithmetic, "FMUL32_IMM"),
INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"),
- INST("0101110010010---", Id::RRO, Type::Arithmetic, "RRO"),
+ INST("0100110010010---", Id::RRO_C, Type::Arithmetic, "RRO_C"),
+ INST("0101110010010---", Id::RRO_R, Type::Arithmetic, "RRO_R"),
+ INST("0011100-10010---", Id::RRO_IMM, Type::Arithmetic, "RRO_IMM"),
INST("0100110010101---", Id::F2F_C, Type::Conversion, "F2F_C"),
INST("0101110010101---", Id::F2F_R, Type::Conversion, "F2F_R"),
INST("0011100-10101---", Id::F2F_IMM, Type::Conversion, "F2F_IMM"),