radv: handle arrays in the fmask descriptor.
authorDave Airlie <airlied@redhat.com>
Mon, 19 Mar 2018 07:13:46 +0000 (07:13 +0000)
committerDave Airlie <airlied@redhat.com>
Thu, 10 May 2018 00:42:49 +0000 (10:42 +1000)
This fixes the fmask descriptor generation to handle 2d ms arrays.

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
src/amd/vulkan/radv_image.c

index bfe497caa30f8416cd7b65f8fe519460bf67b743..ad480901eed4ae528a2f1d166a9cb45741a2ce4d 100644 (file)
@@ -619,7 +619,7 @@ si_make_texture_descriptor(struct radv_device *device,
                        S_008F1C_DST_SEL_Y(V_008F1C_SQ_SEL_X) |
                        S_008F1C_DST_SEL_Z(V_008F1C_SQ_SEL_X) |
                        S_008F1C_DST_SEL_W(V_008F1C_SQ_SEL_X) |
-                       S_008F1C_TYPE(radv_tex_dim(image->type, view_type, 1, 0, false, false));
+                       S_008F1C_TYPE(radv_tex_dim(image->type, view_type, image->info.array_size, 0, false, false));
                fmask_state[4] = 0;
                fmask_state[5] = S_008F24_BASE_ARRAY(first_layer);
                fmask_state[6] = 0;