GS/DX11: Disable multisampling in rasterizer state

This commit is contained in:
Connor McLaughlin 2023-02-09 21:12:12 +10:00 committed by refractionpcsx2
parent 8a0a8f718f
commit 13ed41d077
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ bool GSDevice11::Create()
rd.SlopeScaledDepthBias = 0;
rd.DepthClipEnable = false; // ???
rd.ScissorEnable = true;
rd.MultisampleEnable = true;
rd.MultisampleEnable = false;
rd.AntialiasedLineEnable = false;
m_dev->CreateRasterizerState(&rd, m_rs.put());