From: Erik Faye-Lund Date: Tue, 29 Oct 2019 13:12:02 +0000 (+0100) Subject: zink: drop nop descriptor-updates X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c4ac2d4d5184f154deaa611b231053ec33e73ce;p=mesa.git 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 --- 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,