summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2018-11-21 20:01:35 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2018-11-21 20:12:30 +0100
commit642dfeda2ae2ee435b8b41854058aefcef7750af (patch)
tree7fb1665436f91281a9c11796003ed6bad9eeafe6 /src/video_core/engines
parentMerge pull request #1751 from bunnei/color-mask-fix (diff)
downloadyuzu-642dfeda2ae2ee435b8b41854058aefcef7750af.tar
yuzu-642dfeda2ae2ee435b8b41854058aefcef7750af.tar.gz
yuzu-642dfeda2ae2ee435b8b41854058aefcef7750af.tar.bz2
yuzu-642dfeda2ae2ee435b8b41854058aefcef7750af.tar.lz
yuzu-642dfeda2ae2ee435b8b41854058aefcef7750af.tar.xz
yuzu-642dfeda2ae2ee435b8b41854058aefcef7750af.tar.zst
yuzu-642dfeda2ae2ee435b8b41854058aefcef7750af.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h3
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 83a6fd875..613fdc823 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -1256,6 +1256,7 @@ public:
BFE_C,
BFE_R,
BFE_IMM,
+ BFI_IMM_R,
BRA,
PBK,
LD_A,
@@ -1396,6 +1397,7 @@ public:
ArithmeticHalf,
ArithmeticHalfImmediate,
Bfe,
+ Bfi,
Shift,
Ffma,
Hfma2,
@@ -1613,6 +1615,7 @@ private:
INST("0100110000000---", Id::BFE_C, Type::Bfe, "BFE_C"),
INST("0101110000000---", Id::BFE_R, Type::Bfe, "BFE_R"),
INST("0011100-00000---", Id::BFE_IMM, Type::Bfe, "BFE_IMM"),
+ INST("0011011-11110---", Id::BFI_IMM_R, Type::Bfi, "BFI_IMM_R"),
INST("0100110001000---", Id::LOP_C, Type::ArithmeticInteger, "LOP_C"),
INST("0101110001000---", Id::LOP_R, Type::ArithmeticInteger, "LOP_R"),
INST("0011100001000---", Id::LOP_IMM, Type::ArithmeticInteger, "LOP_IMM"),