mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 03:48:22 -05:00
shader: Implement VOTE
This commit is contained in:
@ -359,6 +359,12 @@ void VisitUsages(Info& info, IR::Inst& inst) {
|
||||
inst.GetAssociatedPseudoOperation(IR::Opcode::GetSparseFromOp) != nullptr;
|
||||
break;
|
||||
}
|
||||
case IR::Opcode::VoteAll:
|
||||
case IR::Opcode::VoteAny:
|
||||
case IR::Opcode::VoteEqual:
|
||||
case IR::Opcode::SubgroupBallot:
|
||||
info.uses_subgroup_vote = true;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user