i965: Add missing newline to blorp color clear perf_debug message. 83/7383/1
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 9 Jul 2013 17:09:57 +0000 (10:09 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 9 Jul 2013 17:10:46 +0000 (10:10 -0700)
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 <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_blorp_clear.cpp

index bf11135..5745f7f 100644 (file)
@@ -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;
       }
    }