mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-11 03:00:16 +01:00
[amdgpu] Stub V_INTERP_MOV_F32
This commit is contained in:
parent
1ea8e148fa
commit
ec0c3f80c0
|
|
@ -3600,6 +3600,11 @@ void convertVintrp(Fragment &fragment, Vintrp inst) {
|
|||
fragment.setVectorOperand(inst.vdst, {channelType, attrChan});
|
||||
break;
|
||||
}
|
||||
case Vintrp::Op::V_INTERP_MOV_F32: {
|
||||
fragment.setVectorOperand(
|
||||
inst.vdst, fragment.getScalarOperand(inst.vsrc, TypeId::Float32x4));
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
inst.dump();
|
||||
|
|
|
|||
Loading…
Reference in a new issue