From 754752865a0e832f9b95285465c43a66258e51f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timur=20Krist=C3=B3f?= Date: Tue, 18 Feb 2025 17:34:10 +0100 Subject: [PATCH] nvk: Don't use deprecated NIR_PASS_V macro anymore. Reviewed-by: Alyssa Rosenzweig Part-of: --- src/nouveau/vulkan/nvk_shader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/vulkan/nvk_shader.c b/src/nouveau/vulkan/nvk_shader.c index db2ad2f0396..8794bcab56d 100644 --- a/src/nouveau/vulkan/nvk_shader.c +++ b/src/nouveau/vulkan/nvk_shader.c @@ -184,7 +184,7 @@ nvk_preprocess_nir(struct vk_physical_device *vk_pdev, nir_shader *nir) const struct nvk_physical_device *pdev = container_of(vk_pdev, struct nvk_physical_device, vk); - NIR_PASS_V(nir, nir_lower_io_to_temporaries, + NIR_PASS(_, nir, nir_lower_io_to_temporaries, nir_shader_get_entrypoint(nir), true, false); if (use_nak(pdev, nir->info.stage))