diff options
author | Arcady Goldmints-Orlov <[email protected]> | 2020-02-07 14:18:49 -0600 |
---|---|---|
committer | Caio Marcelo de Oliveira Filho <[email protected]> | 2020-02-12 15:41:49 +0000 |
commit | e9f83185a221b446717c96c4df8dc64ced43e24f (patch) | |
tree | a2ed0de3dd09b2eea186c7fd8b58e591aeb71875 /src/freedreno/vulkan/tu_shader.c | |
parent | e459c7f0a14b65617e16b92f42abad2fe5878872 (diff) |
Rename nir_lower_constant_initializers to nir_lower_variable_initalizers
This is naming is more clear as nir_variables can be initializes not
just with a nir_constant but with a pointer to another nir_variable.
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3047>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3047>
Diffstat (limited to 'src/freedreno/vulkan/tu_shader.c')
-rw-r--r-- | src/freedreno/vulkan/tu_shader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freedreno/vulkan/tu_shader.c b/src/freedreno/vulkan/tu_shader.c index 323a244e81a..9df70400449 100644 --- a/src/freedreno/vulkan/tu_shader.c +++ b/src/freedreno/vulkan/tu_shader.c @@ -414,7 +414,7 @@ tu_shader_create(struct tu_device *dev, } /* multi step inlining procedure */ - NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp); + NIR_PASS_V(nir, nir_lower_variable_initializers, nir_var_function_temp); NIR_PASS_V(nir, nir_lower_returns); NIR_PASS_V(nir, nir_inline_functions); NIR_PASS_V(nir, nir_opt_deref); @@ -423,7 +423,7 @@ tu_shader_create(struct tu_device *dev, exec_node_remove(&func->node); } assert(exec_list_length(&nir->functions) == 1); - NIR_PASS_V(nir, nir_lower_constant_initializers, ~nir_var_function_temp); + NIR_PASS_V(nir, nir_lower_variable_initializers, ~nir_var_function_temp); /* Split member structs. We do this before lower_io_to_temporaries so that * it doesn't lower system values to temporaries by accident. |