i965: Add missing newlines to a few perf_debug messages.
authorKenneth Graunke <kenneth@whitecape.org>
Sat, 14 Jun 2014 08:43:28 +0000 (01:43 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sun, 15 Jun 2014 23:51:05 +0000 (16:51 -0700)
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Cc: "10.2" <mesa-stable@lists.freedesktop.org>
src/mesa/drivers/dri/i965/gen6_clip_state.c

index 0ba190e..25dfb60 100644 (file)
@@ -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");
    }