From 3ab0cff32c410fff28fa8f1dc8c2aa5232e2b16a Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 27 Sep 2017 09:30:46 +0200 Subject: [PATCH] radeonsi: remove useless check in si_blit_decompress_color() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/gallium/drivers/radeonsi/si_blit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)) -- 2.30.2