summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-05-30 14:31:46 +0200
committerGitHub <noreply@github.com>2018-05-30 14:31:46 +0200
commit8df011a57fc393853bc94421dca1e5913e30a0c8 (patch)
tree56e96700d450fd7679efa7471454b05954b92044 /src/video_core/engines
parentMerge pull request #482 from Subv/r8 (diff)
parentgl_shader_decompiler: F2F_R instruction: Implement abs. (diff)
downloadyuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.gz
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.bz2
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.lz
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.xz
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.tar.zst
yuzu-8df011a57fc393853bc94421dca1e5913e30a0c8.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index d75de85e2..198a470c0 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -456,9 +456,9 @@ private:
INST("00011110--------", Id::FMUL32_IMM, Type::Arithmetic, "FMUL32_IMM"),
INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"),
INST("0101110010010---", Id::RRO, Type::Arithmetic, "RRO"),
- INST("0100110010101---", Id::F2F_C, Type::Arithmetic, "F2F_C"),
- INST("0101110010101---", Id::F2F_R, Type::Arithmetic, "F2F_R"),
- INST("0011100-10101---", Id::F2F_IMM, Type::Arithmetic, "F2F_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"),
INST("0100110010110---", Id::F2I_C, Type::Arithmetic, "F2I_C"),
INST("0101110010110---", Id::F2I_R, Type::Arithmetic, "F2I_R"),
INST("0011100-10110---", Id::F2I_IMM, Type::Arithmetic, "F2I_IMM"),