diff options
author | Jason Ekstrand <[email protected]> | 2017-09-01 22:14:59 -0700 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-10-27 18:55:24 +0100 |
commit | 3b699fdd199da2b82fd75eb7d50ab18de70f1acf (patch) | |
tree | 5ed2f69b0b533864cf1951278f312203fd71d887 /src/intel | |
parent | a2123968fa1a408018f175bb0cc43839781fd3f3 (diff) |
anv/pipeline: Drop nir_lower_clip_cull_distance_arrays
We already handle it in brw_preprocess_nir
Reviewed-by: Lionel Landwerlin <[email protected]>
(cherry picked from commit afa0ddb81e693678069c630751e2091eea796937)
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_pipeline.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 51788928af8..6a0fed35843 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -180,8 +180,6 @@ anv_shader_compile_to_nir(struct anv_pipeline *pipeline, nir = brw_preprocess_nir(compiler, nir); - NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays); - if (stage == MESA_SHADER_FRAGMENT) NIR_PASS_V(nir, anv_nir_lower_input_attachments); |