diff options
| author | Yuriy O'Donnell <yuriyo@gmail.com> | 2014-10-21 06:26:20 +0200 |
|---|---|---|
| committer | Yuriy O'Donnell <yuriyo@gmail.com> | 2014-10-21 06:26:20 +0200 |
| commit | 72ba13ca8a04da65a34f7ea335e3406ba1b2fd50 (patch) | |
| tree | 67346dcd73a7b663e4e833767610d2df6c6ec911 /Source/Core | |
| parent | 305d2e18630ffb5660e2c4240fe9b9f344598c07 (diff) | |
D3D: Enabled depth clipping
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoBackends/D3D/D3DState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/D3D/D3DState.cpp b/Source/Core/VideoBackends/D3D/D3DState.cpp index f24532b385..bf250c52d0 100644 --- a/Source/Core/VideoBackends/D3D/D3DState.cpp +++ b/Source/Core/VideoBackends/D3D/D3DState.cpp @@ -262,7 +262,7 @@ ID3D11RasterizerState* StateCache::Get(RasterizerState state) D3D11_RASTERIZER_DESC rastdc = CD3D11_RASTERIZER_DESC(state.wireframe ? D3D11_FILL_WIREFRAME : D3D11_FILL_SOLID, state.cull_mode, - false, 0, 0.f, 0, false, true, false, false); + false, 0, 0.f, 0, true, true, false, false); ID3D11RasterizerState* res = nullptr; |
