diff options
author | mtklein <mtklein@chromium.org> | 2015-06-09 09:29:12 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-09 09:29:12 -0700 |
commit | 257918898a2353e44a45234af48828f9dd6ccb6f (patch) | |
tree | ec4552ca3123c2a8b4dc1a3a8a4e4a80ed6ef25e /bench | |
parent | 6bd8d1c44bbd99f63673677e4ef7618a1948e8e4 (diff) |
Pump up matrix44_setconcat benches 1000x so they can be timed on Android.
BUG=skia:
Review URL: https://codereview.chromium.org/1174583002
Diffstat (limited to 'bench')
-rw-r--r-- | bench/Matrix44Bench.cpp | 2 |
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); } } |