Mesa (master): zink: drop VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT from compute path

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Apr 6 18:21:41 UTC 2021


Module: Mesa
Branch: master
Commit: fc7ce9b636d4c04192507c2534ce0ddc4e1d4cc4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fc7ce9b636d4c04192507c2534ce0ddc4e1d4cc4

Author: Mike Blumenkrantz <michael.blumenkrantz at gmail.com>
Date:   Tue Apr  6 13:22:15 2021 -0400

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 at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10062>

---

 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 = {};



More information about the mesa-commit mailing list