summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-08-19 19:45:01 +0200
committerSubv <subv2112@gmail.com>2018-08-19 19:57:08 +0200
commit656758fd81b679196e734224f07b133a95d51f0b (patch)
treec50b5bf3ad0c0c33921075ae34753dd60b66f5a8 /src/video_core/engines/shader_bytecode.h
parentMerge pull request #1109 from Subv/ldg_decode (diff)
downloadyuzu-656758fd81b679196e734224f07b133a95d51f0b.tar
yuzu-656758fd81b679196e734224f07b133a95d51f0b.tar.gz
yuzu-656758fd81b679196e734224f07b133a95d51f0b.tar.bz2
yuzu-656758fd81b679196e734224f07b133a95d51f0b.tar.lz
yuzu-656758fd81b679196e734224f07b133a95d51f0b.tar.xz
yuzu-656758fd81b679196e734224f07b133a95d51f0b.tar.zst
yuzu-656758fd81b679196e734224f07b133a95d51f0b.zip
Diffstat (limited to '')
-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 8ae0e6df2..7a21fba25 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -524,9 +524,11 @@ public:
LDG, // Load from global memory
STG, // Store in global memory
TEX,
- TEXQ, // Texture Query
- TEXS, // Texture Fetch with scalar/non-vec4 source/destinations
- TLDS, // Texture Load with scalar/non-vec4 source/destinations
+ TEXQ, // Texture Query
+ TEXS, // Texture Fetch with scalar/non-vec4 source/destinations
+ TLDS, // Texture Load with scalar/non-vec4 source/destinations
+ TLD4, // Texture Load 4
+ TLD4S, // Texture Load 4 with scalar / non - vec4 source / destinations
EXIT,
IPA,
FFMA_IMM, // Fused Multiply and Add
@@ -740,6 +742,8 @@ private:
INST("1101111101001---", Id::TEXQ, Type::Memory, "TEXQ"),
INST("1101100---------", Id::TEXS, Type::Memory, "TEXS"),
INST("1101101---------", Id::TLDS, Type::Memory, "TLDS"),
+ INST("110010----111---", Id::TLD4, Type::Memory, "TLD4"),
+ INST("1101111100------", Id::TLD4S, Type::Memory, "TLD4S"),
INST("111000110000----", Id::EXIT, Type::Trivial, "EXIT"),
INST("11100000--------", Id::IPA, Type::Trivial, "IPA"),
INST("0011001-1-------", Id::FFMA_IMM, Type::Ffma, "FFMA_IMM"),