summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorYuriy O'Donnell <yuriyo@gmail.com>2014-10-21 06:26:20 +0200
committerYuriy O'Donnell <yuriyo@gmail.com>2014-10-21 06:26:20 +0200
commit72ba13ca8a04da65a34f7ea335e3406ba1b2fd50 (patch)
tree67346dcd73a7b663e4e833767610d2df6c6ec911 /Source/Core
parent305d2e18630ffb5660e2c4240fe9b9f344598c07 (diff)
D3D: Enabled depth clipping
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoBackends/D3D/D3DState.cpp2
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;