| Index: tools/Stats.h
|
| diff --git a/tools/Stats.h b/tools/Stats.h
|
| index 3f19af27cc5dfe11087c460a184bfd4460595f4a..4fddc9bc183830c0960bf3437d1725bed43e3b1f 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) {
|
|
|