Module: Mesa Branch: master Commit: 9f54675dbe01518ec4b71e8fc9b4f6e777b27185 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9f54675dbe01518ec4b71e8fc9b4f6e777b27185
Author: Samuel Pitoiset <[email protected]> Date: Wed Dec 20 20:57:21 2017 +0100 radv/gfx9: fix primitive topology when adjacency is used Found by inspection. Cc: 17.3 <[email protected]> Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- src/amd/vulkan/radv_pipeline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 3fc21bb501..14ada20d52 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -1122,7 +1122,7 @@ static void calculate_gfx9_gs_info(const VkGraphicsPipelineCreateInfo *pCreateIn case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY: case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY: case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY: - uses_adjacency = false; + uses_adjacency = true; break; default: uses_adjacency = false; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
