summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-03-26 22:05:23 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2019-04-08 17:23:42 +0200
commite28fd3d0a533695242d17350dd929ad3bb56c429 (patch)
treea1cc9ed6da8143f1f314dd47bf482f48dca80145 /src/video_core/engines/shader_bytecode.h
parentImplement Const Buffer Accessor (diff)
downloadyuzu-e28fd3d0a533695242d17350dd929ad3bb56c429.tar
yuzu-e28fd3d0a533695242d17350dd929ad3bb56c429.tar.gz
yuzu-e28fd3d0a533695242d17350dd929ad3bb56c429.tar.bz2
yuzu-e28fd3d0a533695242d17350dd929ad3bb56c429.tar.lz
yuzu-e28fd3d0a533695242d17350dd929ad3bb56c429.tar.xz
yuzu-e28fd3d0a533695242d17350dd929ad3bb56c429.tar.zst
yuzu-e28fd3d0a533695242d17350dd929ad3bb56c429.zip
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-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 7f613370b..2edd3245e 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -1309,6 +1309,7 @@ public:
LDG, // Load from global memory
STG, // Store in global memory
TEX,
+ TEX_B, // Texture Load Bindless
TXQ, // Texture Query
TEXS, // Texture Fetch with scalar/non-vec4 source/destinations
TLDS, // Texture Load with scalar/non-vec4 source/destinations
@@ -1577,6 +1578,7 @@ private:
INST("1110111011010---", Id::LDG, Type::Memory, "LDG"),
INST("1110111011011---", Id::STG, Type::Memory, "STG"),
INST("110000----111---", Id::TEX, Type::Texture, "TEX"),
+ INST("1101111010111---", Id::TEX_B, Type::Texture, "TEX_B"),
INST("1101111101001---", Id::TXQ, Type::Texture, "TXQ"),
INST("1101-00---------", Id::TEXS, Type::Texture, "TEXS"),
INST("1101101---------", Id::TLDS, Type::Texture, "TLDS"),