From: Jason Ekstrand Date: Tue, 5 Jan 2016 21:42:00 +0000 (-0800) Subject: anv/pipeline: Lower indirect temporaries and inputs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ec899f6b4220509626c14b32a2b048dc3df49cce;p=mesa.git anv/pipeline: Lower indirect temporaries and inputs --- diff --git a/src/vulkan/anv_pipeline.c b/src/vulkan/anv_pipeline.c index 97ad96b46bd..769afe8ed72 100644 --- a/src/vulkan/anv_pipeline.c +++ b/src/vulkan/anv_pipeline.c @@ -143,6 +143,12 @@ anv_shader_compile_to_nir(struct anv_device *device, nir_shader_gather_info(nir, entry_point->impl); + uint32_t indirect_mask = (1 << nir_var_shader_in); + if (compiler->glsl_compiler_options[stage].EmitNoIndirectTemp) + indirect_mask |= 1 << nir_var_local; + + nir_lower_indirect_derefs(nir, indirect_mask); + return nir; }