From 4c7b212165bcaca2af211db31f9dea3c449a0379 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 16 Apr 2026 13:01:29 +0200 Subject: [PATCH] iris,crocus: remove benign but unsupported cap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These instructions were never supported on Iris, as it never supported TGSI. This didn't lead to any issues because tgsi_to_nir normalized the result. This mistake got carried forward when creating crocus as well. Let's just stop reporting it; it doesn't do anything useful. Reviewed-by: Marek Olšák Part-of: --- src/gallium/drivers/crocus/crocus_screen.c | 1 - src/gallium/drivers/iris/iris_screen.c | 1 - 2 files changed, 2 deletions(-) diff --git a/src/gallium/drivers/crocus/crocus_screen.c b/src/gallium/drivers/crocus/crocus_screen.c index f07eb3225bb..882fc969c8a 100644 --- a/src/gallium/drivers/crocus/crocus_screen.c +++ b/src/gallium/drivers/crocus/crocus_screen.c @@ -272,7 +272,6 @@ crocus_init_screen_caps(struct crocus_screen *screen) caps->texture_float_linear = true; caps->texture_half_float_linear = true; caps->polygon_offset_clamp = true; - caps->tgsi_tex_txf_lz = true; caps->multisample_z_resolve = true; caps->shader_group_vote = true; caps->vs_window_space_position = true; diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c index 6b62f7a43a9..e96672bdada 100644 --- a/src/gallium/drivers/iris/iris_screen.c +++ b/src/gallium/drivers/iris/iris_screen.c @@ -333,7 +333,6 @@ iris_init_screen_caps(struct iris_screen *screen) caps->polygon_offset_clamp = true; caps->query_so_overflow = true; caps->query_buffer_object = true; - caps->tgsi_tex_txf_lz = true; caps->texture_query_samples = true; caps->shader_clock = true; caps->shader_ballot = true;