Module: Mesa
Branch: master
Commit: 8bc3ab6f0cbea10dff4e78bfa14772b389df0f93
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=8bc3ab6f0cbea10dff4e78bfa14772b389df0f93

Author: Samuel Pitoiset <[email protected]>
Date:   Thu Jul 11 08:44:12 2019 +0200

radv/gfx10: fix number of GS invocations for NGG

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 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:

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to