Module: Mesa Branch: master Commit: 06690e63f76441641379d8606c28b17f83c0776e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=06690e63f76441641379d8606c28b17f83c0776e
Author: Marek Olšák <[email protected]> Date: Mon May 15 19:59:41 2017 +0200 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 <[email protected]> --- 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 5703f59dbd..bc27a124d9 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
