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/FontScalerBench.cpp | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'bench/FontScalerBench.cpp') diff --git a/bench/FontScalerBench.cpp b/bench/FontScalerBench.cpp index 4ac6a35e08..ac4f60ec32 100644 --- a/bench/FontScalerBench.cpp +++ b/bench/FontScalerBench.cpp @@ -35,14 +35,16 @@ protected: bool prev = gSkSuppressFontCachePurgeSpew; gSkSuppressFontCachePurgeSpew = true; - // this is critical - we want to time the creation process, so we - // explicitly flush our cache before each run - SkGraphics::PurgeFontCache(); - - for (int ps = 9; ps <= 24; ps += 2) { - paint.setTextSize(SkIntToScalar(ps)); - canvas->drawText(fText.c_str(), fText.size(), - 0, SkIntToScalar(20), paint); + for (int i = 0; i < this->getLoops(); i++) { + // this is critical - we want to time the creation process, so we + // explicitly flush our cache before each run + SkGraphics::PurgeFontCache(); + + for (int ps = 9; ps <= 24; ps += 2) { + paint.setTextSize(SkIntToScalar(ps)); + canvas->drawText(fText.c_str(), fText.size(), + 0, SkIntToScalar(20), paint); + } } gSkSuppressFontCachePurgeSpew = prev; -- cgit v1.2.3