mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
nvk/lower_descriptors: .base in load_root_table
Reviewed-by: Mary Guillemard <mary@mary.zone> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40639>
This commit is contained in:
parent
4bdbd6c341
commit
5d90bbe8e5
1 changed files with 3 additions and 2 deletions
|
|
@ -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) \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue