nir: Rename nir_address_format_vk_index_offset to not be vk

It's just a 32-bit index and offset.  We're going to want to use it in
GL as well so stop talking about Vulkan.

Reviewed-by: Kristian H. Kristensen <hoegsberg@chromium.org>
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
This commit is contained in:
Jason Ekstrand
2019-03-09 10:10:37 -06:00
committed by Jason Ekstrand
parent 60af3a93e9
commit c8d42c8cf6
4 changed files with 10 additions and 10 deletions

View File

@@ -600,7 +600,7 @@ anv_pipeline_lower_nir(struct anv_pipeline *pipeline,
NIR_PASS_V(nir, nir_lower_explicit_io,
nir_var_mem_ubo | nir_var_mem_ssbo,
nir_address_format_vk_index_offset);
nir_address_format_32bit_index_offset);
NIR_PASS_V(nir, nir_opt_constant_folding);
}