diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index d2388673e..9bfeff5b6 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -670,7 +670,7 @@ public: | |||
| 670 | LDG, // Load from global memory | 670 | LDG, // Load from global memory |
| 671 | STG, // Store in global memory | 671 | STG, // Store in global memory |
| 672 | TEX, | 672 | TEX, |
| 673 | TEXQ, // Texture Query | 673 | TXQ, // Texture Query |
| 674 | TEXS, // Texture Fetch with scalar/non-vec4 source/destinations | 674 | TEXS, // Texture Fetch with scalar/non-vec4 source/destinations |
| 675 | TLDS, // Texture Load with scalar/non-vec4 source/destinations | 675 | TLDS, // Texture Load with scalar/non-vec4 source/destinations |
| 676 | TLD4, // Texture Load 4 | 676 | TLD4, // Texture Load 4 |
| @@ -894,7 +894,7 @@ private: | |||
| 894 | INST("1110111011010---", Id::LDG, Type::Memory, "LDG"), | 894 | INST("1110111011010---", Id::LDG, Type::Memory, "LDG"), |
| 895 | INST("1110111011011---", Id::STG, Type::Memory, "STG"), | 895 | INST("1110111011011---", Id::STG, Type::Memory, "STG"), |
| 896 | INST("110000----111---", Id::TEX, Type::Memory, "TEX"), | 896 | INST("110000----111---", Id::TEX, Type::Memory, "TEX"), |
| 897 | INST("1101111101001---", Id::TEXQ, Type::Memory, "TEXQ"), | 897 | INST("1101111101001---", Id::TXQ, Type::Memory, "TXQ"), |
| 898 | INST("1101100---------", Id::TEXS, Type::Memory, "TEXS"), | 898 | INST("1101100---------", Id::TEXS, Type::Memory, "TEXS"), |
| 899 | INST("1101101---------", Id::TLDS, Type::Memory, "TLDS"), | 899 | INST("1101101---------", Id::TLDS, Type::Memory, "TLDS"), |
| 900 | INST("110010----111---", Id::TLD4, Type::Memory, "TLD4"), | 900 | INST("110010----111---", Id::TLD4, Type::Memory, "TLD4"), |