From 23873cbb574d1d64501767ab350162775e704b1a Mon Sep 17 00:00:00 2001 From: Georg Lehmann Date: Sat, 7 Aug 2021 21:49:56 +0200 Subject: [PATCH] [d3d9] Disable primitive restart --- src/d3d9/d3d9_util.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/d3d9/d3d9_util.cpp b/src/d3d9/d3d9_util.cpp index 6ca5f1e1..e8d89c05 100644 --- a/src/d3d9/d3d9_util.cpp +++ b/src/d3d9/d3d9_util.cpp @@ -142,13 +142,13 @@ namespace dxvk { return { VK_PRIMITIVE_TOPOLOGY_LINE_LIST, VK_FALSE, 0 }; case D3DPT_LINESTRIP: - return { VK_PRIMITIVE_TOPOLOGY_LINE_STRIP, VK_TRUE, 0 }; + return { VK_PRIMITIVE_TOPOLOGY_LINE_STRIP, VK_FALSE, 0 }; case D3DPT_TRIANGLESTRIP: - return { VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP, VK_TRUE, 0 }; + return { VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP, VK_FALSE, 0 }; case D3DPT_TRIANGLEFAN: - return { VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN, VK_TRUE, 0 }; + return { VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN, VK_FALSE, 0 }; } }