diff options
author | Rob Clark <[email protected]> | 2016-05-11 14:03:24 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-05-11 14:03:24 -0400 |
commit | 5886d1bad13a1c0106b7f42191bbc399fff4a0d9 (patch) | |
tree | daa8f71c87be8a59815c8288a42d00718906f6e9 | |
parent | 697382eb61a9091ea0fa8b5836c9e7d281e9e1c5 (diff) |
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 <[email protected]>
Signed-off-by: Rob Clark <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |