diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-12-11 23:12:29 +0100 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-12-12 00:53:17 +0100 |
commit | af89723fa3d4ca13fc2ce7be545170d093eb4c31 (patch) | |
tree | 584e8189da320a63c6bce2d91dae547f49d2826c /src/video_core/engines | |
parent | Gl_Shader_compiler: Correct Depth Compare for Texture Gather operations. (diff) | |
download | yuzu-af89723fa3d4ca13fc2ce7be545170d093eb4c31.tar yuzu-af89723fa3d4ca13fc2ce7be545170d093eb4c31.tar.gz yuzu-af89723fa3d4ca13fc2ce7be545170d093eb4c31.tar.bz2 yuzu-af89723fa3d4ca13fc2ce7be545170d093eb4c31.tar.lz yuzu-af89723fa3d4ca13fc2ce7be545170d093eb4c31.tar.xz yuzu-af89723fa3d4ca13fc2ce7be545170d093eb4c31.tar.zst yuzu-af89723fa3d4ca13fc2ce7be545170d093eb4c31.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 290d929df..d6a2cc8b8 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -1292,6 +1292,7 @@ union Instruction { BitField<50, 1, u64> dc_flag; BitField<51, 1, u64> aoffi_flag; BitField<52, 2, u64> component; + BitField<55, 1, u64> fp16_flag; bool UsesMiscMode(TextureMiscMode mode) const { switch (mode) { @@ -1972,7 +1973,7 @@ private: INST("1101-01---------", Id::TLDS, Type::Texture, "TLDS"), INST("110010----111---", Id::TLD4, Type::Texture, "TLD4"), INST("1101111011111---", Id::TLD4_B, Type::Texture, "TLD4_B"), - INST("1101111100------", Id::TLD4S, Type::Texture, "TLD4S"), + INST("11011111--00----", Id::TLD4S, Type::Texture, "TLD4S"), INST("110111110110----", Id::TMML_B, Type::Texture, "TMML_B"), INST("1101111101011---", Id::TMML, Type::Texture, "TMML"), INST("11011110011110--", Id::TXD_B, Type::Texture, "TXD_B"), |