nouveau: do not report unsupported feature

This hasn't been supported since the TGSI envvar was ripped out. When
converted to NIR, we don't see these instructions at all.

Fixes: c3cbe610df ("nouveau: Delete the NV50_PROG_USE_TGSI env var.")
Reviewed-by: Marek Olšák <maraeo@gmail.com>
(cherry picked from commit b062062430)

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41269>
This commit is contained in:
Erik Faye-Lund 2026-04-16 12:47:43 +02:00 committed by Eric Engestrom
parent 06197643c1
commit 63faa0d700
3 changed files with 3 additions and 3 deletions

View file

@ -4144,7 +4144,7 @@
"description": "nouveau: do not report unsupported feature",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "c3cbe610dfd978c2f25124017a54196757401434",
"notes": null

View file

@ -269,7 +269,7 @@ nv50_init_screen_caps(struct nv50_screen *screen)
caps->cull_distance = true;
caps->shader_array_components = true;
caps->legacy_math_rules = true;
caps->tgsi_tex_txf_lz = true;
caps->tgsi_tex_txf_lz = false;
caps->shader_clock = true;
caps->can_bind_const_buffer_as_vertex = true;
caps->clear_scissored = true;

View file

@ -318,7 +318,7 @@ nvc0_init_screen_caps(struct nvc0_screen *screen)
caps->legacy_math_rules = true;
caps->doubles = true;
caps->int64 = true;
caps->tgsi_tex_txf_lz = true;
caps->tgsi_tex_txf_lz = false;
caps->shader_clock = true;
caps->compute = true;
caps->can_bind_const_buffer_as_vertex = true;