From: Samuel Pitoiset Date: Thu, 11 Jul 2019 06:44:12 +0000 (+0200) Subject: radv/gfx10: fix number of GS invocations for NGG X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8bc3ab6f0cbea10dff4e78bfa14772b389df0f93;p=mesa.git radv/gfx10: fix number of GS invocations for NGG Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index f259f01bd75..2ea984c8328 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -1651,7 +1651,7 @@ calculate_ngg_info(const VkGraphicsPipelineCreateInfo *pCreateInfo, unsigned max_verts_per_prim = radv_get_num_input_vertices(pipeline); unsigned min_verts_per_prim = gs_type == MESA_SHADER_GEOMETRY ? max_verts_per_prim : 1; - unsigned gs_num_invocations = 1;//MAX2(gs_info->gs.invocations, 1); + unsigned gs_num_invocations = radv_pipeline_has_gs(pipeline) ? MAX2(gs_info->gs.invocations, 1) : 1; bool uses_adjacency; switch(pCreateInfo->pInputAssemblyState->topology) { case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY: