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/RepeatTileBench.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bench/RepeatTileBench.cpp') diff --git a/bench/RepeatTileBench.cpp b/bench/RepeatTileBench.cpp index 348f906676..ab7ccf4ccd 100644 --- a/bench/RepeatTileBench.cpp +++ b/bench/RepeatTileBench.cpp @@ -89,7 +89,6 @@ class RepeatTileBench : public SkBenchmark { SkBitmap fBitmap; bool fIsOpaque; SkBitmap::Config fConfig; - enum { N = SkBENCHLOOP(20) }; public: RepeatTileBench(void* param, SkBitmap::Config c, bool isOpaque = false) : INHERITED(param) { const int w = 50; @@ -135,7 +134,7 @@ protected: SkPaint paint(fPaint); this->setupPaint(&paint); - for (int i = 0; i < N; i++) { + for (int i = 0; i < this->getLoops(); i++) { canvas->drawPaint(paint); } } -- cgit v1.2.3