Skip to content
Snippets Groups Projects
Commit 864db001 authored by Connor Abbott's avatar Connor Abbott Committed by Eric Engestrom
Browse files

freedreno/computerator: Fix local_size typo

Fixes: cbc68c79 ("freedreno: Add local_size to ir3_shader_variant")
Part-of: <mesa/mesa!11622>
(cherry picked from commit 56dc84b9)
parent 38e0a766
No related branches found
No related tags found
No related merge requests found
......@@ -9472,7 +9472,7 @@
"description": "freedreno/computerator: Fix local_size typo",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "cbc68c79a51b76e204ca30e532b23a9ccda78242"
},
......@@ -41,8 +41,8 @@ ir3_asm_assemble(struct ir3_compiler *c, FILE *in)
kernel->bin = v->bin;
kernel->base.local_size[0] = v->local_size[0];
kernel->base.local_size[1] = v->local_size[0];
kernel->base.local_size[2] = v->local_size[0];
kernel->base.local_size[1] = v->local_size[1];
kernel->base.local_size[2] = v->local_size[2];
kernel->base.num_bufs = kernel->info.num_bufs;
memcpy(kernel->base.buf_sizes, kernel->info.buf_sizes, sizeof(kernel->base.buf_sizes));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment