1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-19 05:52:11 +01:00

[d3d11] Fixed triangle strips

This commit is contained in:
Philip Rebohle 2017-12-11 19:38:13 +01:00
parent 68ca71d8a4
commit 5f8976fbd4

View File

@ -589,7 +589,7 @@ namespace dxvk {
break; break;
case D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP: case D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP:
iaState.primitiveTopology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST; iaState.primitiveTopology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP;
iaState.primitiveRestart = VK_TRUE; iaState.primitiveRestart = VK_TRUE;
break; break;