From 33bf3d510c98a22706eb25815f1214d2e1a0e868 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tapani=20P=C3=A4lli?= Date: Wed, 20 Feb 2019 09:18:39 +0200 Subject: [PATCH] anv: retain the is_array state in create_plane_tex_instr_implicit MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This does not seem to fix anything ATM but is the right thing todo. Signed-off-by: Tapani Pälli Fixes: f3e91e78a33775 ("anv: add nir lowering pass for ycbcr textures") Reviewed-by: Lionel Landwerlin --- src/intel/vulkan/anv_nir_lower_ycbcr_textures.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_nir_lower_ycbcr_textures.c b/src/intel/vulkan/anv_nir_lower_ycbcr_textures.c index 104c58dc5e2..0567a1be939 100644 --- a/src/intel/vulkan/anv_nir_lower_ycbcr_textures.c +++ b/src/intel/vulkan/anv_nir_lower_ycbcr_textures.c @@ -269,6 +269,7 @@ create_plane_tex_instr_implicit(struct ycbcr_state *state, tex->texture_index = old_tex->texture_index; tex->texture_array_size = old_tex->texture_array_size; tex->sampler_index = old_tex->sampler_index; + tex->is_array = old_tex->is_array; nir_ssa_dest_init(&tex->instr, &tex->dest, old_tex->dest.ssa.num_components, -- 2.30.2