From 9e8f2bcaf5fabd3729ee0ecc90009fd6cea9e8e9 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Wed, 10 Jun 2015 12:02:17 +0300 Subject: lowlevel-blt-bench: move speed and scaling printing Move the printing of the memory speed and scaling mode into a new function. This will help with implementing a machine-readable output option. Signed-off-by: Pekka Paalanen Reviewed-by: Ben Avison --- test/lowlevel-blt-bench.c | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/test/lowlevel-blt-bench.c b/test/lowlevel-blt-bench.c index aca1819..8ad4ebb 100644 --- a/test/lowlevel-blt-bench.c +++ b/test/lowlevel-blt-bench.c @@ -1030,6 +1030,26 @@ print_explanation (void) printf ("---\n"); } +static void +print_speed_scaling (double bw) +{ + printf ("reference memcpy speed = %.1fMB/s (%.1fMP/s for 32bpp fills)\n", + bw / 1000000., bw / 4000000); + + if (use_scaling) + { + printf ("---\n"); + if (filter == PIXMAN_FILTER_BILINEAR) + printf ("BILINEAR scaling\n"); + else if (filter == PIXMAN_FILTER_NEAREST) + printf ("NEAREST scaling\n"); + else + printf ("UNKNOWN scaling\n"); + } + + printf ("---\n"); +} + static void usage (const char *progname) { @@ -1041,7 +1061,6 @@ usage (const char *progname) int main (int argc, char *argv[]) { - double x; int i; const char *pattern = NULL; for (i = 1; i < argc; i++) @@ -1079,20 +1098,8 @@ main (int argc, char *argv[]) mask = dst + (BUFSIZE / 4); print_explanation (); - bandwidth = x = bench_memcpy (); - printf ("reference memcpy speed = %.1fMB/s (%.1fMP/s for 32bpp fills)\n", - x / 1000000., x / 4000000); - if (use_scaling) - { - printf ("---\n"); - if (filter == PIXMAN_FILTER_BILINEAR) - printf ("BILINEAR scaling\n"); - else if (filter == PIXMAN_FILTER_NEAREST) - printf ("NEAREST scaling\n"); - else - printf ("UNKNOWN scaling\n"); - } - printf ("---\n"); + bandwidth = bench_memcpy (); + print_speed_scaling (bandwidth); if (strcmp (pattern, "all") == 0) { -- cgit v1.2.3