diff options
| author | 2019-04-01 23:18:13 -0300 | |
|---|---|---|
| committer | 2019-04-03 17:12:44 -0300 | |
| commit | 04979560fbf3ca4a3cad39fea5d677997ca5441c (patch) | |
| tree | bf9bed28b5ac7b109abb6dd71fc688f1006bb982 /src/video_core/shader | |
| parent | shader_ir/memory: Reduce severity of ST_L cache management and log it (diff) | |
| download | yuzu-04979560fbf3ca4a3cad39fea5d677997ca5441c.tar.gz yuzu-04979560fbf3ca4a3cad39fea5d677997ca5441c.tar.xz yuzu-04979560fbf3ca4a3cad39fea5d677997ca5441c.zip | |
shader_ir/memory: Reduce severity of LD_L cache management and log it
Diffstat (limited to 'src/video_core/shader')
| -rw-r--r-- | src/video_core/shader/decode/memory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/memory.cpp b/src/video_core/shader/decode/memory.cpp index a272c6233..b2b706cb8 100644 --- a/src/video_core/shader/decode/memory.cpp +++ b/src/video_core/shader/decode/memory.cpp | |||
| @@ -86,8 +86,8 @@ u32 ShaderIR::DecodeMemory(NodeBlock& bb, u32 pc) { | |||
| 86 | break; | 86 | break; |
| 87 | } | 87 | } |
| 88 | case OpCode::Id::LD_L: { | 88 | case OpCode::Id::LD_L: { |
| 89 | UNIMPLEMENTED_IF_MSG(instr.ld_l.unknown == 1, "LD_L Unhandled mode: {}", | 89 | LOG_DEBUG(HW_GPU, "LD_L cache management mode: {}", |
| 90 | static_cast<u32>(instr.ld_l.unknown.Value())); | 90 | static_cast<u64>(instr.ld_l.unknown.Value())); |
| 91 | 91 | ||
| 92 | const auto GetLmem = [&](s32 offset) { | 92 | const auto GetLmem = [&](s32 offset) { |
| 93 | ASSERT(offset % 4 == 0); | 93 | ASSERT(offset % 4 == 0); |