From: Scott D Phillips Date: Tue, 28 Nov 2017 23:52:08 +0000 (-0800) Subject: aubinator: honor --color option when printing the header X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4f0a2ff4c12c7a7a45c7a360a67f82a859a9634e;p=mesa.git aubinator: honor --color option when printing the header Reviewed-by: Jordan Justen --- diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index ed7446cf1ee..46b0a47bcdd 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tools/aubinator.c @@ -192,8 +192,12 @@ handle_trace_header(uint32_t *p) gen_batch_decode_ctx_init(&batch_ctx, &devinfo, outfile, batch_flags, xml_path, get_gen_batch_bo, NULL); + char *color = GREEN_HEADER, *reset_color = NORMAL; + if (option_color == COLOR_NEVER) + color = reset_color = ""; + fprintf(outfile, "%sAubinator: Intel AUB file decoder.%-80s%s\n", - GREEN_HEADER, "", NORMAL); + color, "", reset_color); if (input_file) fprintf(outfile, "File name: %s\n", input_file);