From: Iago Toral Quiroga Date: Wed, 30 Nov 2016 08:44:20 +0000 (+0100) Subject: i965/nir: enable lowering of texture gradient for cube maps X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f90da64fc65d8da99a5a5a140be7b64c8cf5ee6a;p=mesa.git i965/nir: enable lowering of texture gradient for cube maps This gets the lowering on the Vulkan driver too. Fixes Vulkan CTS cube map texture gradient tests in: dEQP-VK.glsl.texture_functions.texturegrad.* Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c index 763e3ec4b6c..f6bcd452656 100644 --- a/src/mesa/drivers/dri/i965/brw_nir.c +++ b/src/mesa/drivers/dri/i965/brw_nir.c @@ -467,6 +467,7 @@ brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir) .lower_txp = ~0, .lower_txf_offset = true, .lower_rect_offset = true, + .lower_txd_cube_map = true, }; OPT(nir_lower_tex, &tex_options);