mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
D3DState: Remove wireframe rasterizer support.
This commit is contained in:
parent
925bbcb85b
commit
c9e469f832
3 changed files with 1 additions and 3 deletions
|
@ -407,7 +407,7 @@ ID3D11RasterizerState* StateCache::Get(RasterizerState state)
|
|||
if (it != m_raster.end())
|
||||
return it->second;
|
||||
|
||||
D3D11_RASTERIZER_DESC rastdc = CD3D11_RASTERIZER_DESC(state.wireframe ? D3D11_FILL_WIREFRAME : D3D11_FILL_SOLID,
|
||||
D3D11_RASTERIZER_DESC rastdc = CD3D11_RASTERIZER_DESC(D3D11_FILL_SOLID,
|
||||
state.cull_mode,
|
||||
false, 0, 0.f, 0, true, true, false, false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue