From: Rob Clark Date: Wed, 11 May 2016 18:03:24 +0000 (-0400) Subject: anv: fix build break X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5886d1bad13a1c0106b7f42191bbc399fff4a0d9;p=mesa.git anv: fix build break Previous rename of lower-output-to-temps pass predated merging of anv, and apparently vulkan wasn't enabled in my local builds so overlooked this when rebasing. Reported-by: Mark Janes Signed-off-by: Rob Clark --- diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index ba088b6e852..5800e683d39 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -161,7 +161,7 @@ anv_shader_compile_to_nir(struct anv_device *device, nir_remove_dead_variables(nir, nir_var_system_value); nir_validate_shader(nir); - nir_lower_outputs_to_temporaries(entry_point->shader, entry_point); + nir_lower_io_to_temporaries(entry_point->shader, entry_point, true, false); nir_lower_system_values(nir); nir_validate_shader(nir);