From fc7ce9b636d4c04192507c2534ce0ddc4e1d4cc4 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 6 Apr 2021 13:22:15 -0400 Subject: [PATCH] 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 Part-of: --- src/gallium/drivers/zink/zink_pipeline.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gallium/drivers/zink/zink_pipeline.c b/src/gallium/drivers/zink/zink_pipeline.c index 51b6c4785c4..3535f69afcb 100644 --- a/src/gallium/drivers/zink/zink_pipeline.c +++ b/src/gallium/drivers/zink/zink_pipeline.c @@ -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 = {};