From: Jason Ekstrand Date: Thu, 25 Aug 2016 19:21:51 +0000 (-0700) Subject: anv/pipeline: Fix bind maps for fragment output arrays X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4200c2266e9c1f76e54d667e69a1a69516e6bf57;p=mesa.git anv/pipeline: Fix bind maps for fragment output arrays Found by inspection. Signed-off-by: Jason Ekstrand Cc: "12.0" --- diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 88f414e023a..dd93d4a2ac1 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -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,