aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/VertBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/VertBench.cpp')
-rw-r--r--bench/VertBench.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/bench/VertBench.cpp b/bench/VertBench.cpp
index 5456e28825..79dcc9ade2 100644
--- a/bench/VertBench.cpp
+++ b/bench/VertBench.cpp
@@ -26,7 +26,6 @@ class VertBench : public SkBenchmark {
COL = 20,
PTS = (ROW + 1) * (COL + 1),
IDX = ROW * COL * 6,
- N = SkBENCHLOOP(10)
};
SkPoint fPts[PTS];
@@ -82,7 +81,7 @@ protected:
SkPaint paint;
this->setupPaint(&paint);
- for (int i = 0; i < N; i++) {
+ for (int i = 0; i < this->getLoops(); i++) {
canvas->drawVertices(SkCanvas::kTriangles_VertexMode, PTS,
fPts, NULL, fColors, NULL, fIdx, IDX, paint);
}