diff options
| author | 2019-02-14 21:42:34 -0500 | |
|---|---|---|
| committer | 2019-02-14 21:42:34 -0500 | |
| commit | a8fc5d6edd9997a791b95f2b08cb1362a7a40555 (patch) | |
| tree | c3bfcb8cfc4f47b062922b5661e48c694800b865 /src/video_core/shader | |
| parent | Merge pull request #2113 from ReinUsesLisp/vulkan-base (diff) | |
| parent | gl_shader_decompiler: Re-implement TLDS lod (diff) | |
| download | yuzu-a8fc5d6edd9997a791b95f2b08cb1362a7a40555.tar.gz yuzu-a8fc5d6edd9997a791b95f2b08cb1362a7a40555.tar.xz yuzu-a8fc5d6edd9997a791b95f2b08cb1362a7a40555.zip | |
Merge pull request #2111 from ReinUsesLisp/fetch-fix
gl_shader_decompiler: Re-implement TLDS lod
Diffstat (limited to 'src/video_core/shader')
| -rw-r--r-- | src/video_core/shader/decode/memory.cpp | 2 |
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)); |