Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: bench/VertBench.cpp

Issue 23478013: Major bench refactoring. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: scroggo Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: bench/VertBench.cpp
diff --git a/bench/VertBench.cpp b/bench/VertBench.cpp
index 5456e28825ee2d7a306214f6a0ed860aa88fb36b..79dcc9ade294db74cb1253f1e1e5ed99c3e0bafb 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);
}

Powered by Google App Engine
This is Rietveld 408576698