3361471a35
I'm not quite sure why I wrote such a convoluted API with setLoops()/getLoops(). This replaces it with a loops argument passed to onDraw(). This CL is largely mechanical translation from the old API to the new one. MathBench used this->getLoops() outside onDraw(), which seems incorrect. I fixed it. BUG= R=djsollen@google.com Author: mtklein@google.com Review URL: https://codereview.chromium.org/99893003 git-svn-id: http://skia.googlecode.com/svn/trunk@12466 2bbb7eff-a529-9590-31e7-b0007b416f81
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SkBenchmark.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkGraphics.h"
|
|
#include "SkPaint.h"
|
|
#include "SkRandom.h"
|
|
#include "SkString.h"
|
|
|
|
extern bool gSkSuppressFontCachePurgeSpew;
|
|
|
|
class FontScalerBench : public SkBenchmark {
|
|
SkString fName;
|
|
SkString fText;
|
|
bool fDoLCD;
|
|
public:
|
|
FontScalerBench(bool doLCD) {
|
|
fName.printf("fontscaler_%s", doLCD ? "lcd" : "aa");
|
|
fText.set("abcdefghijklmnopqrstuvwxyz01234567890");
|
|
fDoLCD = doLCD;
|
|
}
|
|
|
|
protected:
|
|
virtual const char* onGetName() { return fName.c_str(); }
|
|
virtual void onDraw(const int loops, SkCanvas* canvas) {
|
|
SkPaint paint;
|
|
this->setupPaint(&paint);
|
|
paint.setLCDRenderText(fDoLCD);
|
|
|
|
bool prev = gSkSuppressFontCachePurgeSpew;
|
|
gSkSuppressFontCachePurgeSpew = true;
|
|
|
|
for (int i = 0; i < loops; 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;
|
|
}
|
|
private:
|
|
typedef SkBenchmark INHERITED;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_BENCH( return SkNEW_ARGS(FontScalerBench, (false)); )
|
|
DEF_BENCH( return SkNEW_ARGS(FontScalerBench, (true)); )
|