summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_pipeline.c
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2019-03-09 10:10:37 -0600
committerJason Ekstrand <[email protected]>2019-03-15 01:02:19 +0000
commitc8d42c8cf689fcaac1e0fd8477a8ddf269c4fe4d (patch)
tree92f6320cea34aa219c80d359a2ed4a6fc419e594 /src/intel/vulkan/anv_pipeline.c
parent60af3a93e9c25e9d5661bfda215a0b07463fe146 (diff)
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 <[email protected]> Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_pipeline.c')
-rw-r--r--src/intel/vulkan/anv_pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c
index bb9c70a0718..53500fd65d8 100644
--- a/src/intel/vulkan/anv_pipeline.c
+++ b/src/intel/vulkan/anv_pipeline.c
@@ -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);
}