[Mesa-dev] [PATCH 3/3] i965: Add missing newlines to a few perf_debug messages.

Kenneth Graunke kenneth at whitecape.org
Sat Jun 14 01:43:28 PDT 2014


Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Cc: "10.2" <mesa-stable at lists.freedesktop.org>
---
 src/mesa/drivers/dri/i965/gen6_clip_state.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/gen6_clip_state.c b/src/mesa/drivers/dri/i965/gen6_clip_state.c
index 0ba190e..25dfb60 100644
--- a/src/mesa/drivers/dri/i965/gen6_clip_state.c
+++ b/src/mesa/drivers/dri/i965/gen6_clip_state.c
@@ -106,7 +106,7 @@ upload_clip_state(struct brw_context *brw)
          dw2 &= ~GEN6_CLIP_GB_TEST;
          if (brw->gen >= 8) {
             perf_debug("Disabling GB clipping due to lack of Gen8 viewport "
-                       "clipping setup code.  This should be fixed.");
+                       "clipping setup code.  This should be fixed.\n");
          }
          break;
       }
@@ -116,7 +116,7 @@ upload_clip_state(struct brw_context *brw)
    if (ctx->RasterDiscard) {
       dw2 |= GEN6_CLIP_MODE_REJECT_ALL;
       perf_debug("Rasterizer discard is currently implemented via the clipper; "
-                 "%s be faster.", brw->gen >= 7 ? "using the SOL unit may" :
+                 "%s be faster.\n", brw->gen >= 7 ? "using the SOL unit may" :
                  "having the GS not write primitives would likely");
    }
 
-- 
1.9.1



More information about the mesa-dev mailing list