shader: Stub VOTE.VTG
This commit is contained in:
parent
bee8188799
commit
5ed8f24384
4 changed files with 15 additions and 4 deletions
|
@ -256,6 +256,13 @@ static U1 GetFlowTest(IREmitter& ir, FlowTest flow_test) {
|
|||
return ir.LogicalOr(ir.GetSFlag(), ir.GetZFlag());
|
||||
case FlowTest::RGT:
|
||||
return ir.LogicalAnd(ir.LogicalNot(ir.GetSFlag()), ir.LogicalNot(ir.GetZFlag()));
|
||||
case FlowTest::CSM_TA:
|
||||
case FlowTest::CSM_TR:
|
||||
case FlowTest::CSM_MX:
|
||||
case FlowTest::FCSM_TA:
|
||||
case FlowTest::FCSM_TR:
|
||||
case FlowTest::FCSM_MX:
|
||||
return ir.Imm1(false);
|
||||
default:
|
||||
throw NotImplementedException("Flow test {}", flow_test);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue