i965: Fix missing newlines in perf_debug messages.

perf_debug() doesn't append a newline for you.
This commit is contained in:
Kenneth Graunke 2017-08-17 23:41:50 -07:00
parent 9c8f017f77
commit 5af7f1ccec
2 changed files with 3 additions and 3 deletions

View file

@ -387,7 +387,7 @@ brw_predraw_resolve_inputs(struct brw_context *brw)
if (!aux_supported && brw->gen >= 9 &&
intel_disable_rb_aux_buffer(brw, tex_obj->mt->bo)) {
perf_debug("Sampling renderbuffer with non-compressible format - "
"turning off compression");
"turning off compression\n");
}
brw_render_cache_set_check_flush(brw, tex_obj->mt->bo);
@ -414,7 +414,7 @@ brw_predraw_resolve_inputs(struct brw_context *brw)
if (tex_obj->mt->aux_usage == ISL_AUX_USAGE_CCS_E &&
intel_disable_rb_aux_buffer(brw, tex_obj->mt->bo)) {
perf_debug("Using renderbuffer as shader image - turning "
"off lossless compression");
"off lossless compression\n");
}
brw_render_cache_set_check_flush(brw, tex_obj->mt->bo);

View file

@ -3686,7 +3686,7 @@ genX(upload_3dstate_streamout)(struct brw_context *brw, bool active,
sos.RenderingDisable = true;
} else {
perf_debug("Rasterizer discard with a GL_PRIMITIVES_GENERATED "
"query active relies on the clipper.");
"query active relies on the clipper.\n");
}
}