diff options
| author | 2018-12-15 17:16:14 -0300 | |
|---|---|---|
| committer | 2019-01-15 17:54:50 -0300 | |
| commit | 9118deb9904f5bb4012d32c8ed63262b3f6e74a3 (patch) | |
| tree | ef12e8eb522133fdff46b5a41a2db9df20f05aab /src | |
| parent | shader_decode: Implement SSY and SYNC (diff) | |
| download | yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar.gz yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar.xz yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.zip | |
shader_decode: Stub DEPBAR
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/shader/decode/other.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/shader/decode/other.cpp b/src/video_core/shader/decode/other.cpp index 4c2d24202..ef0598d4f 100644 --- a/src/video_core/shader/decode/other.cpp +++ b/src/video_core/shader/decode/other.cpp | |||
| @@ -88,6 +88,10 @@ u32 ShaderIR::DecodeOther(BasicBlock& bb, u32 pc) { | |||
| 88 | SetRegister(bb, instr.gpr0, value); | 88 | SetRegister(bb, instr.gpr0, value); |
| 89 | break; | 89 | break; |
| 90 | } | 90 | } |
| 91 | case OpCode::Id::DEPBAR: { | ||
| 92 | LOG_WARNING(HW_GPU, "DEPBAR instruction is stubbed"); | ||
| 93 | break; | ||
| 94 | } | ||
| 91 | default: | 95 | default: |
| 92 | UNIMPLEMENTED_MSG("Unhandled instruction: {}", opcode->get().GetName()); | 96 | UNIMPLEMENTED_MSG("Unhandled instruction: {}", opcode->get().GetName()); |
| 93 | } | 97 | } |