mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
radv: handle clip dist in es outputs.
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
6279646306
commit
97e0ff30c0
1 changed files with 1 additions and 2 deletions
|
|
@ -4568,8 +4568,7 @@ handle_es_outputs_post(struct nir_to_llvm_context *ctx,
|
|||
|
||||
param_index = shader_io_get_unique_index(i);
|
||||
|
||||
if (param_index > max_output_written)
|
||||
max_output_written = param_index;
|
||||
max_output_written = MAX2(param_index + (length > 4), max_output_written);
|
||||
|
||||
for (j = 0; j < length; j++) {
|
||||
LLVMValueRef out_val = LLVMBuildLoad(ctx->builder, out_ptr[j], "");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue