mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
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:
parent
9931034dca
commit
b062062430
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue