diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-09-12 15:43:42 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-09-12 15:44:47 +0100 |
commit | a6a48e05597e700df74384a5063f787de45a8d83 (patch) | |
tree | 767da916a66388c75cafd52567085ab2dca9bd65 /perf | |
parent | 0f26f75eda317efc9e448c875110b846b224d463 (diff) |
test: Update ref images
First pass after the recent turmoil in clip and antialias handling.
Diffstat (limited to 'perf')
-rw-r--r-- | perf/cairo-perf-micro.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perf/cairo-perf-micro.c b/perf/cairo-perf-micro.c index f3c6f8d9..10adf30d 100644 --- a/perf/cairo-perf-micro.c +++ b/perf/cairo-perf-micro.c @@ -288,7 +288,8 @@ cairo_perf_run (cairo_perf_t *perf, if (count_func != NULL) { double count = count_func (perf->cr, perf->size, perf->size); fprintf (perf->summary, - "%10lld/%d %#8.3f %#8.3f %#5.2f%% %3d: %.2f\n", + "%.3f [%10lld/%d] %#8.3f %#8.3f %#5.2f%% %3d: %.2f\n", + stats.min_ticks /(double) loops, (long long) stats.min_ticks, loops, _cairo_time_to_s (stats.min_ticks) * 1000.0 / loops, _cairo_time_to_s (stats.median_ticks) * 1000.0 / loops, @@ -296,7 +297,8 @@ cairo_perf_run (cairo_perf_t *perf, count / _cairo_time_to_s (stats.min_ticks)); } else { fprintf (perf->summary, - "%10lld/%d %#8.3f %#8.3f %#5.2f%% %3d\n", + "%.3f [%10lld/%d] %#8.3f %#8.3f %#5.2f%% %3d\n", + stats.min_ticks /(double) loops, (long long) stats.min_ticks, loops, _cairo_time_to_s (stats.min_ticks) * 1000.0 / loops, _cairo_time_to_s (stats.median_ticks) * 1000.0 / loops, |