diff options
author | Timothy Arceri <[email protected]> | 2018-02-05 09:15:52 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-02-07 08:38:01 +1100 |
commit | ffeebcfa7eca90b62ca362a16b5f08ae44ff9ac8 (patch) | |
tree | bde00a5f019968aad8bdc95ec235e1cfdcf2ec74 /src | |
parent | a3e42e7a69600f0a14f08a7f370aabb85d5a8632 (diff) |
i965: remove unused brw_nir_lower_cs_shared()
This has been unused since 8761a04d0d93.
Reviewed-by: Elie Tournier <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/compiler/brw_nir.c | 8 | ||||
-rw-r--r-- | src/intel/compiler/brw_nir.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index 287bd4908d9..cbfafd4db02 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 3bef99417e7..03f52da08e5 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, |