From: Jason Ekstrand Date: Fri, 15 Jan 2016 02:58:25 +0000 (-0800) Subject: anv/apply_pipeline_layout: Stomp texture array size to 1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=47af950df5782c520f47e23192acfa6b324b98fd;p=mesa.git anv/apply_pipeline_layout: Stomp texture array size to 1 --- diff --git a/src/vulkan/anv_nir_apply_pipeline_layout.c b/src/vulkan/anv_nir_apply_pipeline_layout.c index 7410bd8363f..b7b8bd18ef9 100644 --- a/src/vulkan/anv_nir_apply_pipeline_layout.c +++ b/src/vulkan/anv_nir_apply_pipeline_layout.c @@ -203,6 +203,11 @@ lower_tex(nir_tex_instr *tex, struct apply_pipeline_layout_state *state) lower_tex_deref(tex, tex->sampler, &tex->sampler_index, nir_tex_src_sampler_offset, state); + /* The backend only ever uses this to mark used surfaces. We don't care + * about that little optimization so it just needs to be non-zero. + */ + tex->texture_array_size = 1; + if (tex->texture) cleanup_tex_deref(tex, tex->texture); cleanup_tex_deref(tex, tex->sampler);