From: Nicolai Hähnle Date: Mon, 3 Jul 2017 13:32:29 +0000 (+0200) Subject: radeonsi/nir: lower txp instructions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5741489d3149c4a319df590872ee40c094ecf91;p=mesa.git radeonsi/nir: lower txp instructions Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeonsi/si_shader_nir.c b/src/gallium/drivers/radeonsi/si_shader_nir.c index d87f6b831d8..31da3a560fd 100644 --- a/src/gallium/drivers/radeonsi/si_shader_nir.c +++ b/src/gallium/drivers/radeonsi/si_shader_nir.c @@ -350,6 +350,11 @@ si_lower_nir(struct si_shader_selector* sel) NIR_PASS_V(sel->nir, nir_lower_alu_to_scalar); NIR_PASS_V(sel->nir, nir_lower_phis_to_scalar); + static const struct nir_lower_tex_options lower_tex_options = { + .lower_txp = ~0u, + }; + NIR_PASS_V(sel->nir, nir_lower_tex, &lower_tex_options); + bool progress; do { progress = false;