From 06690e63f76441641379d8606c28b17f83c0776e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Mon, 15 May 2017 19:59:41 +0200 Subject: [PATCH] radeonsi: remove early return in si_upload_descriptors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All updates of descriptors_dirty also set dirty_mask, so the return is unnecessary. The next commit will want this function to be executed even if dirty_mask == 0. Reviewed-by: Nicolai Hähnle --- src/gallium/drivers/radeonsi/si_descriptors.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_descriptors.c b/src/gallium/drivers/radeonsi/si_descriptors.c index 5703f59dbdb..bc27a124d95 100644 --- a/src/gallium/drivers/radeonsi/si_descriptors.c +++ b/src/gallium/drivers/radeonsi/si_descriptors.c @@ -197,9 +197,6 @@ static bool si_upload_descriptors(struct si_context *sctx, { unsigned list_size = desc->num_elements * desc->element_dw_size * 4; - if (!desc->dirty_mask) - return true; - if (sctx->ce_ib && desc->uses_ce) { uint32_t const* list = (uint32_t const*)desc->list;