Mesa (master): zink: drop nop descriptor-updates

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Oct 30 10:29:36 UTC 2019


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

Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Tue Oct 29 14:12:02 2019 +0100

zink: drop nop descriptor-updates

If there's nothing to be done, let's actually do nothing. Seems like a
good idea.

Reviewed-by: Dave Airlie <airlied at redhat.com>

---

 src/gallium/drivers/zink/zink_context.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/gallium/drivers/zink/zink_context.c b/src/gallium/drivers/zink/zink_context.c
index b97cc16455d..9219d019811 100644
--- a/src/gallium/drivers/zink/zink_context.c
+++ b/src/gallium/drivers/zink/zink_context.c
@@ -1174,10 +1174,11 @@ zink_draw_vbo(struct pipe_context *pctx,
    if (ctx->gfx_pipeline_state.blend_state->need_blend_constants)
       vkCmdSetBlendConstants(batch->cmdbuf, ctx->blend_constants);
 
-   for (int i = 0; i < num_wds; ++i)
-      wds[i].dstSet = desc_set;
-
-   vkUpdateDescriptorSets(screen->dev, num_wds, wds, 0, NULL);
+   if (num_wds > 0) {
+      for (int i = 0; i < num_wds; ++i)
+         wds[i].dstSet = desc_set;
+      vkUpdateDescriptorSets(screen->dev, num_wds, wds, 0, NULL);
+   }
 
    vkCmdBindPipeline(batch->cmdbuf, VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline);
    vkCmdBindDescriptorSets(batch->cmdbuf, VK_PIPELINE_BIND_POINT_GRAPHICS,




More information about the mesa-commit mailing list