mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
radv: drop unneeded start
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
a58d03a5a2
commit
6279646306
1 changed files with 2 additions and 2 deletions
|
|
@ -4559,7 +4559,7 @@ handle_es_outputs_post(struct nir_to_llvm_context *ctx,
|
|||
LLVMValueRef *out_ptr = &ctx->outputs[i * 4];
|
||||
int param_index;
|
||||
int length = 4;
|
||||
int start = 0;
|
||||
|
||||
if (!(ctx->output_mask & (1ull << i)))
|
||||
continue;
|
||||
|
||||
|
|
@ -4579,7 +4579,7 @@ handle_es_outputs_post(struct nir_to_llvm_context *ctx,
|
|||
ctx->esgs_ring,
|
||||
out_val, 1,
|
||||
NULL, ctx->es2gs_offset,
|
||||
(4 * param_index + j + start) * 4,
|
||||
(4 * param_index + j) * 4,
|
||||
1, 1, true, true);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue