Module: Mesa Branch: master Commit: ffeebcfa7eca90b62ca362a16b5f08ae44ff9ac8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ffeebcfa7eca90b62ca362a16b5f08ae44ff9ac8
Author: Timothy Arceri <[email protected]> Date: Mon Feb 5 09:15:52 2018 +1100 i965: remove unused brw_nir_lower_cs_shared() This has been unused since 8761a04d0d93. Reviewed-by: Elie Tournier <[email protected]> --- src/intel/compiler/brw_nir.c | 8 -------- src/intel/compiler/brw_nir.h | 1 - 2 files changed, 9 deletions(-) diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index 287bd4908d..cbfafd4db0 100644 --- a/src/intel/compiler/brw_nir.c +++ b/src/intel/compiler/brw_nir.c @@ -503,14 +503,6 @@ brw_nir_lower_fs_outputs(nir_shader *nir) nir_lower_io(nir, nir_var_shader_out, type_size_dvec4, 0); } -void -brw_nir_lower_cs_shared(nir_shader *nir) -{ - nir_assign_var_locations(&nir->shared, &nir->num_shared, - type_size_scalar_bytes); - nir_lower_io(nir, nir_var_shared, type_size_scalar_bytes, 0); -} - #define OPT(pass, ...) ({ \ bool this_progress = false; \ NIR_PASS(this_progress, nir, pass, ##__VA_ARGS__); \ diff --git a/src/intel/compiler/brw_nir.h b/src/intel/compiler/brw_nir.h index 3bef99417e..03f52da08e 100644 --- a/src/intel/compiler/brw_nir.h +++ b/src/intel/compiler/brw_nir.h @@ -113,7 +113,6 @@ void brw_nir_lower_vue_outputs(nir_shader *nir, bool is_scalar); void brw_nir_lower_tcs_outputs(nir_shader *nir, const struct brw_vue_map *vue, GLenum tes_primitive_mode); void brw_nir_lower_fs_outputs(nir_shader *nir); -void brw_nir_lower_cs_shared(nir_shader *nir); nir_shader *brw_postprocess_nir(nir_shader *nir, const struct brw_compiler *compiler, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
