aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-17 21:10:05 +0000
committerGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-17 21:10:05 +0000
commit13fd5a15a170c0d024f4907991d8a57d8adf755e (patch)
tree5a72b4216218c13e59465965771c0d2e2343c880 /tools
parent66bcbd12bf075145e0c38f3e36c9f13e65f5e10e (diff)
Set DEFAULT_REPEATS to 1
bench defaults to 1 repeat, so bench_pictures should do the same. This is causing the Android build cycles to be *hours* long. Review URL: https://codereview.appspot.com/6490123 git-svn-id: http://skia.googlecode.com/svn/trunk@5575 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools')
-rw-r--r--tools/bench_pictures_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bench_pictures_main.cpp b/tools/bench_pictures_main.cpp
index d6837e9079..62d89ffc0e 100644
--- a/tools/bench_pictures_main.cpp
+++ b/tools/bench_pictures_main.cpp
@@ -17,7 +17,7 @@
#include "SkTArray.h"
#include "picture_utils.h"
-const int DEFAULT_REPEATS = 100;
+const int DEFAULT_REPEATS = 1;
static void usage(const char* argv0) {
SkDebugf("SkPicture benchmarking tool\n");