mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-15 15:38:22 +02:00
zink: disable have_EXT_vertex_input_dynamic_state without EDS2
this is disabled already in the draw paths but not the pipeline paths
cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22996>
(cherry picked from commit 6debee51f3)
This commit is contained in:
parent
cc47a898b2
commit
2db2907859
2 changed files with 4 additions and 1 deletions
|
|
@ -3901,7 +3901,7 @@
|
|||
"description": "zink: disable have_EXT_vertex_input_dynamic_state without EDS2",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2391,6 +2391,9 @@ init_driver_workarounds(struct zink_screen *screen)
|
|||
default:
|
||||
break;
|
||||
}
|
||||
/* EXT_vertex_input_dynamic_state is only used with EDS2 and above */
|
||||
if (!screen->info.have_EXT_extended_dynamic_state2)
|
||||
screen->info.have_EXT_vertex_input_dynamic_state = false;
|
||||
if (screen->info.line_rast_feats.stippledRectangularLines &&
|
||||
screen->info.line_rast_feats.stippledBresenhamLines &&
|
||||
screen->info.line_rast_feats.stippledSmoothLines &&
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue