shader: Stub VOTE.VTG
This commit is contained in:
parent
bee8188799
commit
5ed8f24384
4 changed files with 15 additions and 4 deletions
|
@ -95,6 +95,10 @@ enum class SpecialRegister : u64 {
|
|||
return ir.WorkgroupIdY();
|
||||
case SpecialRegister::SR_CTAID_Z:
|
||||
return ir.WorkgroupIdZ();
|
||||
case SpecialRegister::SR_WSCALEFACTOR_XY:
|
||||
return ir.Imm32(Common::BitCast<u32>(1.0f));
|
||||
case SpecialRegister::SR_WSCALEFACTOR_Z:
|
||||
return ir.Imm32(Common::BitCast<u32>(1.0f));
|
||||
default:
|
||||
throw NotImplementedException("S2R special register {}", special_register);
|
||||
}
|
||||
|
|
|
@ -329,10 +329,6 @@ void TranslatorVisitor::VADD(u64) {
|
|||
ThrowNotImplemented(Opcode::VADD);
|
||||
}
|
||||
|
||||
void TranslatorVisitor::VOTE_vtg(u64) {
|
||||
ThrowNotImplemented(Opcode::VOTE_vtg);
|
||||
}
|
||||
|
||||
void TranslatorVisitor::VSET(u64) {
|
||||
ThrowNotImplemented(Opcode::VSET);
|
||||
}
|
||||
|
|
|
@ -49,4 +49,8 @@ void TranslatorVisitor::VOTE(u64 insn) {
|
|||
Vote(*this, insn);
|
||||
}
|
||||
|
||||
void TranslatorVisitor::VOTE_vtg(u64) {
|
||||
// Stub
|
||||
}
|
||||
|
||||
} // namespace Shader::Maxwell
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue