[Mesa-dev] [PATCH 5/8] i965: Add performance debug for fast clear fallbacks.
Eric Anholt
eric at anholt.net
Tue Aug 7 11:04:13 PDT 2012
---
src/mesa/drivers/dri/i965/brw_clear.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/src/mesa/drivers/dri/i965/brw_clear.c b/src/mesa/drivers/dri/i965/brw_clear.c
index 31c2e45..71d7c48 100644
--- a/src/mesa/drivers/dri/i965/brw_clear.c
+++ b/src/mesa/drivers/dri/i965/brw_clear.c
@@ -107,14 +107,22 @@ brw_fast_clear_depth(struct gl_context *ctx)
* a previous clear had happened at a different clear value and resolve it
* first.
*/
- if (ctx->Scissor.Enabled)
+ if (ctx->Scissor.Enabled) {
+ perf_debug("Failed to fast clear depth due to scissor being enabled. "
+ "Possible 5%% performance win if avoided.\n");
return false;
+ }
/* The rendered area has to be 8x4 samples, not resolved pixels, so we look
* at the miptree slice dimensions instead of renderbuffer size.
*/
if (mt->level[depth_irb->mt_level].width % 8 != 0 ||
mt->level[depth_irb->mt_level].height % 4 != 0) {
+ perf_debug("Failed to fast clear depth due to width/height %d,%d not "
+ "being aligned to 8,4. Possible 5%% performance win if "
+ "avoided\n",
+ mt->level[depth_irb->mt_level].width,
+ mt->level[depth_irb->mt_level].height);
return false;
}
--
1.7.10.4
More information about the mesa-dev
mailing list