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>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40993>
This commit is contained in:
Erik Faye-Lund 2026-04-16 12:47:43 +02:00 committed by Marge Bot
parent 9931034dca
commit b062062430
2 changed files with 2 additions and 2 deletions

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;