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:
Mike Blumenkrantz 2023-05-12 12:34:20 -04:00 committed by Eric Engestrom
parent cc47a898b2
commit 2db2907859
2 changed files with 4 additions and 1 deletions

View file

@ -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
},

View file

@ -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 &&