From: Alyssa Rosenzweig Date: Tue, 8 Feb 2022 19:31:07 +0000 (-0500) Subject: panfrost: Annotate slow clears as such X-Git-Tag: upstream/22.3.5~12366 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a13d87c4849f5e9d22646f163139a4cc8d82b241;p=platform%2Fupstream%2Fmesa.git panfrost: Annotate slow clears as such We should realistically be using the clear shaders from PanVK once they're moved to common. Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index f7089c4..769f327 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++ b/src/gallium/drivers/panfrost/pan_context.c @@ -71,7 +71,7 @@ panfrost_clear( * color/depth/stencil value, thus avoiding the generation of extra * fragment jobs. */ - struct panfrost_batch *batch = panfrost_get_fresh_batch_for_fbo(ctx, "Clear"); + struct panfrost_batch *batch = panfrost_get_fresh_batch_for_fbo(ctx, "Slow clear"); panfrost_batch_clear(batch, buffers, color, depth, stencil); }