summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-03-26 19:46:11 -0400
committerGravatar FernandoS272019-04-08 11:29:52 -0400
commit4841440382c72047d68bb2c0ce7a7defadab7d3d (patch)
tree849c245021c01d8a121e6d1cbbf25e04d0fed906 /src/video_core/engines
parentImplement TMML_B (diff)
downloadyuzu-4841440382c72047d68bb2c0ce7a7defadab7d3d.tar.gz
yuzu-4841440382c72047d68bb2c0ce7a7defadab7d3d.tar.xz
yuzu-4841440382c72047d68bb2c0ce7a7defadab7d3d.zip
Implement TXQ_B
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 71c22aff0..f7ef9a32a 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -1343,6 +1343,7 @@ public:
1343 TEX, 1343 TEX,
1344 TEX_B, // Texture Load Bindless 1344 TEX_B, // Texture Load Bindless
1345 TXQ, // Texture Query 1345 TXQ, // Texture Query
1346 TXQ_B, // Texture Query Bindless
1346 TEXS, // Texture Fetch with scalar/non-vec4 source/destinations 1347 TEXS, // Texture Fetch with scalar/non-vec4 source/destinations
1347 TLDS, // Texture Load with scalar/non-vec4 source/destinations 1348 TLDS, // Texture Load with scalar/non-vec4 source/destinations
1348 TLD4, // Texture Load 4 1349 TLD4, // Texture Load 4
@@ -1612,6 +1613,7 @@ private:
1612 INST("110000----111---", Id::TEX, Type::Texture, "TEX"), 1613 INST("110000----111---", Id::TEX, Type::Texture, "TEX"),
1613 INST("1101111010111---", Id::TEX_B, Type::Texture, "TEX_B"), 1614 INST("1101111010111---", Id::TEX_B, Type::Texture, "TEX_B"),
1614 INST("1101111101001---", Id::TXQ, Type::Texture, "TXQ"), 1615 INST("1101111101001---", Id::TXQ, Type::Texture, "TXQ"),
1616 INST("1101111101010---", Id::TXQ_B, Type::Texture, "TXQ_B"),
1615 INST("1101-00---------", Id::TEXS, Type::Texture, "TEXS"), 1617 INST("1101-00---------", Id::TEXS, Type::Texture, "TEXS"),
1616 INST("1101101---------", Id::TLDS, Type::Texture, "TLDS"), 1618 INST("1101101---------", Id::TLDS, Type::Texture, "TLDS"),
1617 INST("110010----111---", Id::TLD4, Type::Texture, "TLD4"), 1619 INST("110010----111---", Id::TLD4, Type::Texture, "TLD4"),