summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-06-09 22:56:50 +0200
committerSubv <subv2112@gmail.com>2018-06-09 22:56:50 +0200
commit3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04 (patch)
tree535e373b9efb3e0cb1d078aff88a7e83308e1b6c /src/video_core/engines/shader_bytecode.h
parentMerge pull request #550 from Subv/ssy (diff)
downloadyuzu-3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04.tar
yuzu-3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04.tar.gz
yuzu-3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04.tar.bz2
yuzu-3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04.tar.lz
yuzu-3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04.tar.xz
yuzu-3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04.tar.zst
yuzu-3cb753eeb104ff7bc7f7158d23e7046ee0bf6c04.zip
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r--src/video_core/engines/shader_bytecode.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index d748026b8..9f17225f8 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -487,6 +487,9 @@ public:
ISETP_C,
ISETP_IMM,
ISETP_R,
+ ISET_R,
+ ISET_C,
+ ISET_IMM,
PSETP,
XMAD_IMM,
XMAD_CR,
@@ -506,6 +509,7 @@ public:
Memory,
FloatSet,
FloatSetPredicate,
+ IntegerSet,
IntegerSetPredicate,
PredicateSetPredicate,
Conversion,
@@ -677,6 +681,9 @@ private:
INST("010010110110----", Id::ISETP_C, Type::IntegerSetPredicate, "ISETP_C"),
INST("010110110110----", Id::ISETP_R, Type::IntegerSetPredicate, "ISETP_R"),
INST("0011011-0110----", Id::ISETP_IMM, Type::IntegerSetPredicate, "ISETP_IMM"),
+ INST("010110110101----", Id::ISET_R, Type::IntegerSet, "ISET_R"),
+ INST("010010110101----", Id::ISET_C, Type::IntegerSet, "ISET_C"),
+ INST("0011011-0101----", Id::ISET_IMM, Type::IntegerSet, "ISET_IMM"),
INST("0101000010010---", Id::PSETP, Type::PredicateSetPredicate, "PSETP"),
INST("0011011-00------", Id::XMAD_IMM, Type::Arithmetic, "XMAD_IMM"),
INST("0100111---------", Id::XMAD_CR, Type::Arithmetic, "XMAD_CR"),