speculative change to speedup blurrect bench for large radius, to see if the bots are timing out
git-svn-id: http://skia.googlecode.com/svn/trunk@7098 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/BlurRectBench.cpp b/bench/BlurRectBench.cpp
index 2e79aa4..e9234a8 100644
--- a/bench/BlurRectBench.cpp
+++ b/bench/BlurRectBench.cpp
@@ -51,8 +51,8 @@
int loop_count;
- if (fRadius > SkIntToScalar(50)) {
- loop_count = 10;
+ if (fRadius > SkIntToScalar(25)) {
+ loop_count = 100;
} else if (fRadius > SkIntToScalar(5)) {
loop_count = 1000;
} else {