From: Samuel Pitoiset Date: Wed, 27 Sep 2017 07:30:46 +0000 (+0200) Subject: radeonsi: remove useless check in si_blit_decompress_color() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ab0cff32c410fff28fa8f1dc8c2aa5232e2b16a;p=mesa.git radeonsi: remove useless check in si_blit_decompress_color() That's unnecessary to double-check that dcc_offset is not 0 because all callers already check that. Signed-off-by: Samuel Pitoiset Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/radeonsi/si_blit.c b/src/gallium/drivers/radeonsi/si_blit.c index 159893dfa11..f5ae072f4f8 100644 --- a/src/gallium/drivers/radeonsi/si_blit.c +++ b/src/gallium/drivers/radeonsi/si_blit.c @@ -470,9 +470,11 @@ static void si_blit_decompress_color(struct pipe_context *ctx, "Decompress Color (levels %u - %u, mask 0x%x)\n\n", first_level, last_level, level_mask); - if (rtex->dcc_offset && need_dcc_decompress) { + if (need_dcc_decompress) { custom_blend = sctx->custom_blend_dcc_decompress; + assert(rtex->dcc_offset); + /* disable levels without DCC */ for (int i = first_level; i <= last_level; i++) { if (!vi_dcc_enabled(rtex, i))