iris: Add missing newline to debug log message
authorCaleb Callaway <caleb.callaway@intel.com>
Thu, 20 Aug 2020 00:12:10 +0000 (17:12 -0700)
committerCaleb Callaway <caleb.callaway@intel.com>
Fri, 21 Aug 2020 01:42:31 +0000 (01:42 +0000)
Without this newline, log messages get lumped together on a single line,
making the debug log difficult to read.

Reviewed-by: Mark Janes <mark.a.janes@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6413>

src/gallium/drivers/iris/iris_clear.c

index 3d60c6bfbe3a3b06606eb2b889c27f8ce8f8dfc5..cf0699726fdcab188b0ab2cd10e424a99d70aeee 100644 (file)
@@ -44,7 +44,7 @@ iris_is_color_fast_clear_compatible(struct iris_context *ice,
    const struct gen_device_info *devinfo = &batch->screen->devinfo;
 
    if (isl_format_has_int_channel(format)) {
-      perf_debug(&ice->dbg, "Integer fast clear not enabled for %s",
+      perf_debug(&ice->dbg, "Integer fast clear not enabled for %s\n",
                  isl_format_get_name(format));
       return false;
    }