mirror of https://github.com/PCSX2/pcsx2.git
GS/DX12: Fix incorrect blend factor for primid DATE
This commit is contained in:
parent
822e508d13
commit
a65f3bd116
|
@ -1201,7 +1201,7 @@ bool GSDevice12::CompileConvertPipelines()
|
|||
gpb.SetPixelShader(ps.get());
|
||||
gpb.SetNoDepthTestState();
|
||||
gpb.SetNoStencilState();
|
||||
gpb.SetBlendState(0, true, D3D12_BLEND_ONE, D3D12_BLEND_ZERO, D3D12_BLEND_OP_MIN,
|
||||
gpb.SetBlendState(0, true, D3D12_BLEND_ONE, D3D12_BLEND_ONE, D3D12_BLEND_OP_MIN,
|
||||
D3D12_BLEND_ZERO, D3D12_BLEND_ZERO, D3D12_BLEND_OP_ADD, D3D12_COLOR_WRITE_ENABLE_RED);
|
||||
|
||||
for (u32 ds = 0; ds < 2; ds++)
|
||||
|
|
Loading…
Reference in New Issue