iris: avoid issues with undefined clip distance
Cc: mesa-stable Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9797 Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Sagar Ghuge <sagar.ghuge@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25177>
This commit is contained in:
@@ -1303,12 +1303,14 @@ iris_compile_vs(struct iris_screen *screen,
|
|||||||
|
|
||||||
if (key->vue.nr_userclip_plane_consts) {
|
if (key->vue.nr_userclip_plane_consts) {
|
||||||
nir_function_impl *impl = nir_shader_get_entrypoint(nir);
|
nir_function_impl *impl = nir_shader_get_entrypoint(nir);
|
||||||
nir_lower_clip_vs(nir, (1 << key->vue.nr_userclip_plane_consts) - 1,
|
/* Check if variables were found. */
|
||||||
true, false, NULL);
|
if (nir_lower_clip_vs(nir, (1 << key->vue.nr_userclip_plane_consts) - 1,
|
||||||
nir_lower_io_to_temporaries(nir, impl, true, false);
|
true, false, NULL)) {
|
||||||
nir_lower_global_vars_to_local(nir);
|
nir_lower_io_to_temporaries(nir, impl, true, false);
|
||||||
nir_lower_vars_to_ssa(nir);
|
nir_lower_global_vars_to_local(nir);
|
||||||
nir_shader_gather_info(nir, impl);
|
nir_lower_vars_to_ssa(nir);
|
||||||
|
nir_shader_gather_info(nir, impl);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
prog_data->use_alt_mode = nir->info.use_legacy_math_rules;
|
prog_data->use_alt_mode = nir->info.use_legacy_math_rules;
|
||||||
|
Reference in New Issue
Block a user