zink: drop VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT from compute path

this was dropped a while ago from gfx but I failed to pick it up for compute

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10062>
This commit is contained in:
Mike Blumenkrantz 2021-04-06 13:22:15 -04:00 committed by Marge Bot
parent 84d6ee0920
commit fc7ce9b636
1 changed files with 0 additions and 1 deletions

View File

@ -204,7 +204,6 @@ zink_create_compute_pipeline(struct zink_screen *screen, struct zink_compute_pro
{
VkComputePipelineCreateInfo pci = {};
pci.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO;
pci.flags = VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT;
pci.layout = comp->base.layout;
VkPipelineShaderStageCreateInfo stage = {};