diff options
author | Kenneth Graunke <[email protected]> | 2013-07-09 10:09:57 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-07-09 10:10:46 -0700 |
commit | 968c57782d3c3ab646cc8605909604246f5f4f90 (patch) | |
tree | 3e280d8a68c85723d4f3be93cb6e49948071749e /src/mesa | |
parent | f0260f4e3d939c93ec6ef3b6b330383fe9944d93 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp_clear.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |