From 968c57782d3c3ab646cc8605909604246f5f4f90 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Tue, 9 Jul 2013 10:09:57 -0700 Subject: [PATCH] i965: Add missing newline to blorp color clear perf_debug message. perf_debug() doesn't add a newline for you; without this, all the INTEL_DEBUG=perf output was jumbled together. Signed-off-by: Kenneth Graunke --- src/mesa/drivers/dri/i965/brw_blorp_clear.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp b/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp index bf11135189d..5745f7f2016 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp +++ b/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp @@ -153,7 +153,7 @@ is_color_fast_clear_compatible(struct intel_context *intel, for (int i = 0; i < 4; i++) { if (color->f[i] != 0.0 && color->f[i] != 1.0) { perf_debug("Clear color unsupported by fast color clear. " - "Falling back to slow clear."); + "Falling back to slow clear.\n"); return false; } } -- 2.30.2