Module: Mesa Branch: master Commit: 3ab0cff32c410fff28fa8f1dc8c2aa5232e2b16a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3ab0cff32c410fff28fa8f1dc8c2aa5232e2b16a
Author: Samuel Pitoiset <samuel.pitoi...@gmail.com> Date: Wed Sep 27 09:30:46 2017 +0200 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 <samuel.pitoi...@gmail.com> Reviewed-by: Nicolai Hähnle <nicolai.haeh...@amd.com> --- 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 159893dfa1..f5ae072f4f 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)) _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-commit