Mesa (master): i965: Add missing newlines to a few perf_debug messages.

Kenneth Graunke kwg at kemper.freedesktop.org
Sun Jun 15 23:50:02 UTC 2014


Module: Mesa
Branch: master
Commit: 847abaccc04026b5c150748b6484061f2f8b3165
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=847abaccc04026b5c150748b6484061f2f8b3165

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Sat Jun 14 01:43:28 2014 -0700

i965: Add missing newlines to a few perf_debug messages.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Matt Turner <mattst88 at gmail.com>
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");
    }
 




More information about the mesa-commit mailing list