summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2014-10-21 01:59:24 -0400
committercomex <comexk@gmail.com>2014-10-21 01:59:24 -0400
commit78deebd73281a3c4e451736d6e43bb49b7e7eaed (patch)
treed145736bd8c32c3140913a16f73bec89d696ff7c /Source/Core
parent24e72cd0641c3a5f1430f509d440403c8b5dd082 (diff)
parent72ba13ca8a04da65a34f7ea335e3406ba1b2fd50 (diff)
Merge pull request #1346 from kayru/d3d_clip_enable
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;