aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/MatrixBench.cpp
diff options
context:
space:
mode:
authorGravatar mtklein@google.com <mtklein@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-10 19:23:38 +0000
committerGravatar mtklein@google.com <mtklein@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-10 19:23:38 +0000
commitc289743864e2ab926a95e617a5cd1d29b26d1825 (patch)
tree2c559da19185181efd8bd92791fb758af5969800 /bench/MatrixBench.cpp
parent55ebe8eca0063ab1f3979d629749bc41ec409ac1 (diff)
Major bench refactoring.
- Use FLAGS_. - Remove outer repeat loop. - Tune inner loop automatically. BUG=skia:1590 R=epoger@google.com, scroggo@google.com Review URL: https://codereview.chromium.org/23478013 git-svn-id: http://skia.googlecode.com/svn/trunk@11187 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'bench/MatrixBench.cpp')
-rw-r--r--bench/MatrixBench.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/bench/MatrixBench.cpp b/bench/MatrixBench.cpp
index 8a5c5c69b4..c2cc5a2fdd 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;
};