aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/TileBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/TileBench.cpp')
-rw-r--r--bench/TileBench.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/bench/TileBench.cpp b/bench/TileBench.cpp
index 7f2e7a8e95..44235eb409 100644
--- a/bench/TileBench.cpp
+++ b/bench/TileBench.cpp
@@ -34,7 +34,6 @@ class ConstXTileBench : public SkBenchmark {
bool fDoFilter;
bool fDoTrans;
bool fDoScale;
- enum { N = SkBENCHLOOP(20) };
static const int kWidth = 1;
static const int kHeight = 300;
@@ -106,7 +105,7 @@ protected:
SkPaint bgPaint;
bgPaint.setColor(SK_ColorWHITE);
- for (int i = 0; i < N; i++) {
+ for (int i = 0; i < this->getLoops(); i++) {
if (fDoTrans) {
canvas->drawRect(r, bgPaint);
}