mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
anv/pipeline: Fix bind maps for fragment output arrays
Found by inspection. Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Cc: "12.0" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
parent
d316cec1c1
commit
4200c2266e
1 changed files with 1 additions and 1 deletions
|
|
@ -639,7 +639,7 @@ anv_pipeline_compile_fs(struct anv_pipeline *pipeline,
|
|||
assert(num_rts + array_len <= 8);
|
||||
|
||||
for (unsigned i = 0; i < array_len; i++) {
|
||||
rt_bindings[num_rts] = (struct anv_pipeline_binding) {
|
||||
rt_bindings[num_rts + i] = (struct anv_pipeline_binding) {
|
||||
.set = ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS,
|
||||
.binding = 0,
|
||||
.index = rt + i,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue