summaryrefslogtreecommitdiff
path: root/src/video_core/shader
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-02-12 17:02:59 -0300
committerGravatar ReinUsesLisp2019-02-12 17:03:07 -0300
commite60d4d70bc10cf78ab607f26ea835bce6c79f186 (patch)
tree5d3a0b86b67fc7d0ed6f6b1cbe928760d02b9f30 /src/video_core/shader
parentMerge pull request #2108 from FernandoS27/fix-cc (diff)
downloadyuzu-e60d4d70bc10cf78ab607f26ea835bce6c79f186.tar.gz
yuzu-e60d4d70bc10cf78ab607f26ea835bce6c79f186.tar.xz
yuzu-e60d4d70bc10cf78ab607f26ea835bce6c79f186.zip
gl_shader_decompiler: Re-implement TLDS lod
Diffstat (limited to 'src/video_core/shader')
-rw-r--r--src/video_core/shader/decode/memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/memory.cpp b/src/video_core/shader/decode/memory.cpp
index 523421794..55ec601ff 100644
--- a/src/video_core/shader/decode/memory.cpp
+++ b/src/video_core/shader/decode/memory.cpp
@@ -429,7 +429,7 @@ u32 ShaderIR::DecodeMemory(NodeBlock& bb, u32 pc) {
429 UNIMPLEMENTED_IF_MSG(instr.tlds.UsesMiscMode(TextureMiscMode::MZ), "MZ is not implemented"); 429 UNIMPLEMENTED_IF_MSG(instr.tlds.UsesMiscMode(TextureMiscMode::MZ), "MZ is not implemented");
430 430
431 if (instr.tlds.UsesMiscMode(TextureMiscMode::NODEP)) { 431 if (instr.tlds.UsesMiscMode(TextureMiscMode::NODEP)) {
432 LOG_WARNING(HW_GPU, "TMML.NODEP implementation is incomplete"); 432 LOG_WARNING(HW_GPU, "TLDS.NODEP implementation is incomplete");
433 } 433 }
434 434
435 WriteTexsInstructionFloat(bb, instr, GetTldsCode(instr, texture_type, is_array)); 435 WriteTexsInstructionFloat(bb, instr, GetTldsCode(instr, texture_type, is_array));