From 5d90bbe8e581a99b34c7b835e120d0dda5100ce5 Mon Sep 17 00:00:00 2001 From: Mel Henning Date: Fri, 13 Mar 2026 17:07:11 -0400 Subject: [PATCH] nvk/lower_descriptors: .base in load_root_table Reviewed-by: Mary Guillemard Part-of: --- src/nouveau/vulkan/nvk_nir_lower_descriptors.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/nouveau/vulkan/nvk_nir_lower_descriptors.c b/src/nouveau/vulkan/nvk_nir_lower_descriptors.c index afe13d691c9..a4cd50f9aa7 100644 --- a/src/nouveau/vulkan/nvk_nir_lower_descriptors.c +++ b/src/nouveau/vulkan/nvk_nir_lower_descriptors.c @@ -570,9 +570,10 @@ _load_root_table(nir_builder *b, unsigned align_mul = bit_size / 8; return nir_ldc_nv(b, num_components, bit_size, nir_imm_int(b, 0), /* Root table */ - nir_imm_int(b, root_table_offset), + nir_imm_int(b, 0), .align_mul = align_mul, - .align_offset = 0); + .align_offset = 0, + .base = root_table_offset); } #define load_root_table(b, nc, bs, member, ctx) \