diff options
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 2 |
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 a6110bd86..12fb8abb7 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -1590,6 +1590,7 @@ public: | |||
| 1590 | TMML_B, // Texture Mip Map Level | 1590 | TMML_B, // Texture Mip Map Level |
| 1591 | TMML, // Texture Mip Map Level | 1591 | TMML, // Texture Mip Map Level |
| 1592 | SUST, // Surface Store | 1592 | SUST, // Surface Store |
| 1593 | SULD, // Surface Load | ||
| 1593 | SUATOM, // Surface Atomic Operation | 1594 | SUATOM, // Surface Atomic Operation |
| 1594 | EXIT, | 1595 | EXIT, |
| 1595 | NOP, | 1596 | NOP, |
| @@ -1875,6 +1876,7 @@ private: | |||
| 1875 | INST("110111110110----", Id::TMML_B, Type::Texture, "TMML_B"), | 1876 | INST("110111110110----", Id::TMML_B, Type::Texture, "TMML_B"), |
| 1876 | INST("1101111101011---", Id::TMML, Type::Texture, "TMML"), | 1877 | INST("1101111101011---", Id::TMML, Type::Texture, "TMML"), |
| 1877 | INST("11101011001-----", Id::SUST, Type::Image, "SUST"), | 1878 | INST("11101011001-----", Id::SUST, Type::Image, "SUST"), |
| 1879 | INST("11101011000-----", Id::SULD, Type::Image, "SULD"), | ||
| 1878 | INST("1110101000------", Id::SUATOM, Type::Image, "SUATOM_D"), | 1880 | INST("1110101000------", Id::SUATOM, Type::Image, "SUATOM_D"), |
| 1879 | INST("0101000010110---", Id::NOP, Type::Trivial, "NOP"), | 1881 | INST("0101000010110---", Id::NOP, Type::Trivial, "NOP"), |
| 1880 | INST("11100000--------", Id::IPA, Type::Trivial, "IPA"), | 1882 | INST("11100000--------", Id::IPA, Type::Trivial, "IPA"), |