aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/Matrix44Bench.cpp
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-06-09 09:29:12 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-09 09:29:12 -0700
commit257918898a2353e44a45234af48828f9dd6ccb6f (patch)
treeec4552ca3123c2a8b4dc1a3a8a4e4a80ed6ef25e /bench/Matrix44Bench.cpp
parent6bd8d1c44bbd99f63673677e4ef7618a1948e8e4 (diff)
Pump up matrix44_setconcat benches 1000x so they can be timed on Android.
Diffstat (limited to 'bench/Matrix44Bench.cpp')
-rw-r--r--bench/Matrix44Bench.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/Matrix44Bench.cpp b/bench/Matrix44Bench.cpp
index 81452b4a3d..a990763b62 100644
--- a/bench/Matrix44Bench.cpp
+++ b/bench/Matrix44Bench.cpp
@@ -271,7 +271,7 @@ public:
protected:
virtual void performTest() {
fM0.reset(); // just to normalize this test with prescale/postscale
- for (int i = 0; i < 10; ++i) {
+ for (int i = 0; i < 10000; ++i) {
fM0.setConcat(fM1, fM2);
}
}