diff --git a/.pick_status.json b/.pick_status.json index 3c6f78e1eca..e4f1c419f90 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1364,7 +1364,7 @@ "description": "brw/nir/rt: ensure we can load 2 RT_DISPATCH_GLOBALS", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/intel/compiler/brw/brw_nir_rt_builder.h b/src/intel/compiler/brw/brw_nir_rt_builder.h index 1ff103ec757..c3c8bfb804b 100644 --- a/src/intel/compiler/brw/brw_nir_rt_builder.h +++ b/src/intel/compiler/brw/brw_nir_rt_builder.h @@ -62,7 +62,7 @@ brw_nir_rt_store(nir_builder *b, nir_def *addr, unsigned align, static inline nir_def * brw_nir_rt_load_const(nir_builder *b, unsigned components, nir_def *addr) { - return nir_load_global_constant_uniform_block_intel( + return nir_build_load_global_constant( b, components, 32, addr, .access = ACCESS_CAN_REORDER | ACCESS_NON_WRITEABLE, .align_mul = 64);