summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode/other.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2018-12-15 21:16:14 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-01-15 21:54:50 +0100
commit9118deb9904f5bb4012d32c8ed63262b3f6e74a3 (patch)
treeef12e8eb522133fdff46b5a41a2db9df20f05aab /src/video_core/shader/decode/other.cpp
parentshader_decode: Implement SSY and SYNC (diff)
downloadyuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar
yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar.gz
yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar.bz2
yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar.lz
yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar.xz
yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.tar.zst
yuzu-9118deb9904f5bb4012d32c8ed63262b3f6e74a3.zip
Diffstat (limited to 'src/video_core/shader/decode/other.cpp')
-rw-r--r--src/video_core/shader/decode/other.cpp4
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) {
SetRegister(bb, instr.gpr0, value);
break;
}
+ case OpCode::Id::DEPBAR: {
+ LOG_WARNING(HW_GPU, "DEPBAR instruction is stubbed");
+ break;
+ }
default:
UNIMPLEMENTED_MSG("Unhandled instruction: {}", opcode->get().GetName());
}