From: Kenneth Graunke Date: Tue, 9 Jul 2013 17:09:57 +0000 (-0700) Subject: i965: Add missing newline to blorp color clear perf_debug message. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=968c57782d3c3ab646cc8605909604246f5f4f90;p=mesa.git 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 --- 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; } }