intel/nir: fixup preserved metadata in rayquery lowering

Another case of not clearing the metadata correctly.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: c78be5da30 ("intel/fs: lower ray query intrinsics")
Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16970>
This commit is contained in:
Lionel Landwerlin
2022-04-13 16:04:25 +03:00
committed by Marge Bot
parent 9dba8d8aa1
commit 1ffd28149f

View File

@@ -548,6 +548,8 @@ brw_nir_lower_ray_queries(nir_shader *shader,
nir_remove_dead_variables(shader,
nir_var_shader_temp | nir_var_function_temp,
NULL);
nir_metadata_preserve(impl, nir_metadata_none);
}
ralloc_free(state.queries);