aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/StrokeBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/StrokeBench.cpp')
-rw-r--r--bench/StrokeBench.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/bench/StrokeBench.cpp b/bench/StrokeBench.cpp
index 15c9befe6b..33772dd2be 100644
--- a/bench/StrokeBench.cpp
+++ b/bench/StrokeBench.cpp
@@ -58,7 +58,6 @@ class StrokeRRectBench : public SkBenchmark {
SkPaint::Join fJoin;
RRectRec fRec;
DrawProc fProc;
- enum { N = SkBENCHLOOP(500) };
public:
StrokeRRectBench(void* param, SkPaint::Join j, DrawProc proc) : SkBenchmark(param) {
static const char* gJoinName[] = {
@@ -85,7 +84,7 @@ protected:
fRec.fPaint.setStyle(SkPaint::kStroke_Style);
fRec.fPaint.setStrokeJoin(fJoin);
fRec.fPaint.setStrokeWidth(5);
- fProc(&fRec, N);
+ fProc(&fRec, this->getLoops());
}
private: