vk: profiler: print metrics header twice (top and bottom)

Second header down below the metrics print may help to visually see
the output format without the need to scroll console all the way up.
This commit is contained in:
nilsoncore 2023-09-17 16:35:19 +03:00
parent c07fe8cd9c
commit 6659c83c6d

View File

@ -759,6 +759,7 @@ static void doListMetrics( void ) {
gEngine.Con_Printf( row_format, metric->name, value_with_unit, metric->var_name, metric->src_file, metric->src_line );
}
gEngine.Con_Printf( line_format, line, line, line, line );
gEngine.Con_Printf( header_format, "module.metric_name", "value", "variable", "registration_location" );
}
static void graphCmd( void ) {