From 6238688af0d758660d344ec047243d4efefd6f4d Mon Sep 17 00:00:00 2001 From: mtklein Date: Tue, 15 Jul 2014 10:30:31 -0700 Subject: Give windows boring bars and use 'us' for microseconds. NOTREECHECKS=true BUG=skia: R=bsalomon@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/393673006 --- tools/Stats.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tools/Stats.h') diff --git a/tools/Stats.h b/tools/Stats.h index 3f19af27cc..4fddc9bc18 100644 --- a/tools/Stats.h +++ b/tools/Stats.h @@ -6,7 +6,11 @@ #include "SkString.h" #include "SkTSort.h" -static const char* kBars[] = { "▁", "▂", "▃", "▄", "▅", "▆", "▇", "█" }; +#ifdef SK_BUILD_FOR_WIN + static const char* kBars[] = { ".", "o", "O" }; +#else + static const char* kBars[] = { "▁", "▂", "▃", "▄", "▅", "▆", "▇", "█" }; +#endif struct Stats { Stats(const double samples[], int n) { -- cgit v1.2.3