From: Samuel Pitoiset Date: Thu, 30 Aug 2018 08:01:26 +0000 (+0200) Subject: radv: do not recompute the output usage mask for clipdist twice X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=732679c25eb470837e21dfc91812687d5698964d;p=mesa.git radv: do not recompute the output usage mask for clipdist twice The shader info pass takes care of this now. Signed-off-by: Samuel Pitoiset Reviewed-by: Dave Airlie --- diff --git a/src/amd/vulkan/radv_nir_to_llvm.c b/src/amd/vulkan/radv_nir_to_llvm.c index d7cd8cc0699..17c76332e18 100644 --- a/src/amd/vulkan/radv_nir_to_llvm.c +++ b/src/amd/vulkan/radv_nir_to_llvm.c @@ -1741,7 +1741,6 @@ visit_emit_vertex(struct ac_shader_abi *abi, unsigned stream, LLVMValueRef *addr length = ctx->num_output_clips + ctx->num_output_culls; if (length > 4) slot_inc = 2; - output_usage_mask = (1 << length) - 1; } for (unsigned j = 0; j < length; j++) { @@ -2711,10 +2710,8 @@ handle_es_outputs_post(struct radv_shader_context *ctx, ctx->shader_info->info.tes.output_usage_mask[i]; } - if (i == VARYING_SLOT_CLIP_DIST0) { + if (i == VARYING_SLOT_CLIP_DIST0) length = ctx->num_output_clips + ctx->num_output_culls; - output_usage_mask = (1 << length) - 1; - } param_index = shader_io_get_unique_index(i);