shader: Implement SHR

This commit is contained in:
ameerj 2021-02-25 00:46:40 -05:00
parent 8810c88b7e
commit cc55d28949
8 changed files with 80 additions and 18 deletions

View file

@ -757,18 +757,6 @@ void TranslatorVisitor::SHFL(u64) {
ThrowNotImplemented(Opcode::SHFL);
}
void TranslatorVisitor::SHR_reg(u64) {
ThrowNotImplemented(Opcode::SHR_reg);
}
void TranslatorVisitor::SHR_cbuf(u64) {
ThrowNotImplemented(Opcode::SHR_cbuf);
}
void TranslatorVisitor::SHR_imm(u64) {
ThrowNotImplemented(Opcode::SHR_imm);
}
void TranslatorVisitor::SSY() {
// SSY is a no-op
}