From a13d87c4849f5e9d22646f163139a4cc8d82b241 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 8 Feb 2022 14:31:07 -0500 Subject: [PATCH] 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: --- src/gallium/drivers/panfrost/pan_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index f7089c4cbc5..769f327969e 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); }