Module: Mesa Branch: main Commit: 1ce5be916fa30d40cad4a9bcdb8697ad9e2e65c8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1ce5be916fa30d40cad4a9bcdb8697ad9e2e65c8
Author: Lionel Landwerlin <[email protected]> Date: Fri Feb 18 14:57:26 2022 +0200 intel/nir: specify synchronous value for tracing op Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Caio Oliveira <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17908> --- src/intel/compiler/brw_nir_lower_shader_calls.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/intel/compiler/brw_nir_lower_shader_calls.c b/src/intel/compiler/brw_nir_lower_shader_calls.c index 9a7f330e70c..8c3c644df80 100644 --- a/src/intel/compiler/brw_nir_lower_shader_calls.c +++ b/src/intel/compiler/brw_nir_lower_shader_calls.c @@ -336,7 +336,8 @@ brw_nir_create_trivial_return_shader(const struct brw_compiler *compiler, nir_trace_ray_intel(b, nir_load_btd_global_arg_addr_intel(b), - ray_level, ray_op); + ray_level, ray_op, + .synchronous = false); } nir_push_else(b, NULL); {
