From: Marek Olšák Date: Mon, 15 May 2017 17:59:41 +0000 (+0200) Subject: radeonsi: remove early return in si_upload_descriptors X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=06690e63f76441641379d8606c28b17f83c0776e;p=mesa.git radeonsi: remove early return in si_upload_descriptors 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 --- 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;