diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-12-24 05:23:00 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-01-15 21:54:53 +0100 |
commit | a1b845b6514e135a5810b12c20261ec646216c28 (patch) | |
tree | b5b5588952f72c7e1011d7064bb2082838ac466f /src/video_core/engines | |
parent | shader_decode: Implement HSET2 (diff) | |
download | yuzu-a1b845b6514e135a5810b12c20261ec646216c28.tar yuzu-a1b845b6514e135a5810b12c20261ec646216c28.tar.gz yuzu-a1b845b6514e135a5810b12c20261ec646216c28.tar.bz2 yuzu-a1b845b6514e135a5810b12c20261ec646216c28.tar.lz yuzu-a1b845b6514e135a5810b12c20261ec646216c28.tar.xz yuzu-a1b845b6514e135a5810b12c20261ec646216c28.tar.zst yuzu-a1b845b6514e135a5810b12c20261ec646216c28.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 9cb23f375..cdef97bc6 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -1436,6 +1436,7 @@ public: PredicateSetRegister, RegisterSetPredicate, Conversion, + Video, Xmad, Unknown, }; @@ -1567,8 +1568,8 @@ private: INST("11100000--------", Id::IPA, Type::Trivial, "IPA"), INST("1111101111100---", Id::OUT_R, Type::Trivial, "OUT_R"), INST("1110111111010---", Id::ISBERD, Type::Trivial, "ISBERD"), - INST("01011111--------", Id::VMAD, Type::Trivial, "VMAD"), - INST("0101000011110---", Id::VSETP, Type::Trivial, "VSETP"), + INST("01011111--------", Id::VMAD, Type::Video, "VMAD"), + INST("0101000011110---", Id::VSETP, Type::Video, "VSETP"), INST("0011001-1-------", Id::FFMA_IMM, Type::Ffma, "FFMA_IMM"), INST("010010011-------", Id::FFMA_CR, Type::Ffma, "FFMA_CR"), INST("010100011-------", Id::FFMA_RC, Type::Ffma, "FFMA_RC"), |