diff options
Diffstat (limited to 'src/native/d3d/D3dCtx.cpp')
-rw-r--r-- | src/native/d3d/D3dCtx.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/native/d3d/D3dCtx.cpp b/src/native/d3d/D3dCtx.cpp index 572f2b0..bc8990a 100644 --- a/src/native/d3d/D3dCtx.cpp +++ b/src/native/d3d/D3dCtx.cpp @@ -1919,6 +1919,13 @@ DWORD D3dCtx::findBehavior() return D3DCREATE_SOFTWARE_VERTEXPROCESSING | behavior; } + // Issue #629 - Intel vcards must use Software Vertex Processing + if(!bForceHwdVertexProcess && !bForceMixVertexProcess && deviceInfo->vendorID == 0x8086 ){ + softwareVertexProcessing = TRUE; + return D3DCREATE_SOFTWARE_VERTEXPROCESSING | behavior; + } + + // below is the default path. // Rule : Shader capable videocards uses Hardware // Low end devices (No shaders support) uses Software |