mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
iris,crocus: remove benign but unsupported cap
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 <maraeo@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40993>
This commit is contained in:
parent
a4bec6a001
commit
4c7b212165
2 changed files with 0 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue