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> (cherry picked from commitb062062430) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41269>
This commit is contained in:
parent
06197643c1
commit
63faa0d700
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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