shader_decode: Stub DEPBAR

This commit is contained in:
ReinUsesLisp 2018-12-15 17:16:14 -03:00
parent 97f33f00cf
commit 9118deb990

View File

@ -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());
}