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

Unified Diff: bench/TextBench.cpp

Issue 23478013: Major bench refactoring. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: merge with head agani 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
« no previous file with comments | « bench/TableBench.cpp ('k') | bench/TileBench.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/TextBench.cpp
diff --git a/bench/TextBench.cpp b/bench/TextBench.cpp
index 9334c334765eeb53bd5a299ce6f3036690d4f47b..7aac2c0ab0e89c2edf3b91c660a8d7ca0137258c 100644
--- a/bench/TextBench.cpp
+++ b/bench/TextBench.cpp
@@ -45,7 +45,6 @@ class TextBench : public SkBenchmark {
FontQuality fFQ;
bool fDoPos;
SkPoint* fPos;
- enum { N = SkBENCHLOOP(800) };
public:
TextBench(void* param, const char text[], int ps,
SkColor color, FontQuality fq, bool doPos = false) : INHERITED(param) {
@@ -112,7 +111,7 @@ protected:
canvas->translate(SK_Scalar1, SK_Scalar1);
}
- for (int i = 0; i < N; i++) {
+ for (int i = 0; i < this->getLoops(); i++) {
if (fDoPos) {
canvas->drawPosText(fText.c_str(), fText.size(), fPos, paint);
} else {
« no previous file with comments | « bench/TableBench.cpp ('k') | bench/TileBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698