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

Unified Diff: bench/MatrixBench.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/Matrix44Bench.cpp ('k') | bench/MatrixConvolutionBench.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/MatrixBench.cpp
diff --git a/bench/MatrixBench.cpp b/bench/MatrixBench.cpp
index 8a5c5c69b4ac17899cb3627bf2ef9c013021f7c3..c2cc5a2fdd992722d54b3c40ca6427e152368fc9 100644
--- a/bench/MatrixBench.cpp
+++ b/bench/MatrixBench.cpp
@@ -13,7 +13,6 @@
class MatrixBench : public SkBenchmark {
SkString fName;
- enum { N = 100000 };
public:
MatrixBench(void* param, const char name[]) : INHERITED(param) {
fName.printf("matrix_%s", name);
@@ -30,8 +29,7 @@ protected:
}
virtual void onDraw(SkCanvas*) {
- int n = SkBENCHLOOP(N * this->mulLoopCount());
- for (int i = 0; i < n; i++) {
+ for (int i = 0; i < this->getLoops(); i++) {
this->performTest();
}
}
@@ -297,11 +295,11 @@ class ScaleTransMixedMatrixBench : public MatrixBench {
}
private:
enum {
- kCount = SkBENCHLOOP(16)
+ kCount = 16
};
SkMatrix fMatrix;
- SkPoint fSrc [16];
- SkPoint fDst [16];
+ SkPoint fSrc [kCount];
+ SkPoint fDst [kCount];
SkRandom fRandom;
typedef MatrixBench INHERITED;
};
@@ -337,11 +335,11 @@ class ScaleTransDoubleMatrixBench : public MatrixBench {
}
private:
enum {
- kCount = SkBENCHLOOP(16)
+ kCount = 16
};
double fMatrix [9];
- SkPoint fSrc [16];
- SkPoint fDst [16];
+ SkPoint fSrc [kCount];
+ SkPoint fDst [kCount];
SkRandom fRandom;
typedef MatrixBench INHERITED;
};
« no previous file with comments | « bench/Matrix44Bench.cpp ('k') | bench/MatrixConvolutionBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698