From a331717ed7c403ecf056869d3930ab8460e27d86 Mon Sep 17 00:00:00 2001 From: Christian Gmeiner Date: Sun, 17 Nov 2019 20:37:40 +0100 Subject: [PATCH] etnaviv: rs: Color resolve works No special treatment is needed and is helps MSAA. Signed-off-by: Christian Gmeiner Reviewed-by: Lucas Stach Part-of: --- src/gallium/drivers/etnaviv/etnaviv_rs.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/gallium/drivers/etnaviv/etnaviv_rs.c b/src/gallium/drivers/etnaviv/etnaviv_rs.c index d984a039a9b..951ceddc09b 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_rs.c +++ b/src/gallium/drivers/etnaviv/etnaviv_rs.c @@ -837,14 +837,6 @@ etna_blit_rs(struct pipe_context *pctx, const struct pipe_blit_info *blit_info) * For the rest, fall back to util_blitter * XXX this goes wrong when source surface is supertiled. */ - if (blit_info->src.resource->nr_samples > 1 && - blit_info->dst.resource->nr_samples <= 1 && - !util_format_is_depth_or_stencil(blit_info->src.resource->format) && - !util_format_is_pure_integer(blit_info->src.resource->format)) { - DBG("color resolve unimplemented"); - return false; - } - return etna_try_rs_blit(pctx, blit_info); }