From c289743864e2ab926a95e617a5cd1d29b26d1825 Mon Sep 17 00:00:00 2001 From: "mtklein@google.com" Date: Tue, 10 Sep 2013 19:23:38 +0000 Subject: 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 --- bench/Matrix44Bench.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'bench/Matrix44Bench.cpp') diff --git a/bench/Matrix44Bench.cpp b/bench/Matrix44Bench.cpp index c3692889fc..b79233c89c 100644 --- a/bench/Matrix44Bench.cpp +++ b/bench/Matrix44Bench.cpp @@ -12,7 +12,6 @@ class Matrix44Bench : public SkBenchmark { SkString fName; - enum { N = 10000 }; public: Matrix44Bench(void* param, const char name[]) : INHERITED(param) { fName.printf("matrix44_%s", name); @@ -29,8 +28,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(); } } -- cgit v1.2.3