36352bf5e3
NOPRESUBMIT=true BUG=skia: DOCS_PREVIEW= https://skia.org/?cl=1037793002 Review URL: https://codereview.chromium.org/1037793002
81 lines
2.2 KiB
C++
81 lines
2.2 KiB
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Benchmark.h"
|
|
#include "SkBlurMaskFilter.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkPaint.h"
|
|
#include "SkPath.h"
|
|
#include "SkRect.h"
|
|
#include "SkString.h"
|
|
|
|
class BlurRectsBench : public Benchmark {
|
|
public:
|
|
BlurRectsBench(SkRect outer, SkRect inner, SkScalar radius) {
|
|
fRadius = radius;
|
|
fOuter = outer;
|
|
fInner = inner;
|
|
}
|
|
|
|
const char* onGetName() override {
|
|
return fName.c_str();
|
|
}
|
|
|
|
void setName(const SkString& name) {
|
|
fName = name;
|
|
}
|
|
|
|
void onDraw(const int loops, SkCanvas* canvas) override {
|
|
SkPaint paint;
|
|
paint.setMaskFilter(SkBlurMaskFilter::Create(kNormal_SkBlurStyle, fRadius))->unref();
|
|
|
|
SkPath path;
|
|
path.addRect(fOuter, SkPath::kCW_Direction);
|
|
path.addRect(fInner, SkPath::kCW_Direction);
|
|
|
|
for (int i = 0; i < loops; i++) {
|
|
canvas->drawPath(path, paint);
|
|
}
|
|
}
|
|
|
|
private:
|
|
SkString fName;
|
|
SkRect fOuter;
|
|
SkRect fInner;
|
|
SkScalar fRadius;
|
|
|
|
typedef Benchmark INHERITED;
|
|
};
|
|
|
|
class BlurRectsNinePatchBench: public BlurRectsBench {
|
|
public:
|
|
BlurRectsNinePatchBench(SkRect outer, SkRect inner, SkScalar radius)
|
|
: INHERITED(outer, inner, radius) {
|
|
this->setName(SkString("blurrectsninepatch"));
|
|
}
|
|
private:
|
|
typedef BlurRectsBench INHERITED;
|
|
};
|
|
|
|
class BlurRectsNonNinePatchBench: public BlurRectsBench {
|
|
public:
|
|
BlurRectsNonNinePatchBench(SkRect outer, SkRect inner, SkScalar radius)
|
|
: INHERITED(outer, inner, radius) {
|
|
SkString name;
|
|
this->setName(SkString("blurrectsnonninepatch"));
|
|
}
|
|
private:
|
|
typedef BlurRectsBench INHERITED;
|
|
};
|
|
|
|
DEF_BENCH(return new BlurRectsNinePatchBench(SkRect::MakeXYWH(10, 10, 100, 100),
|
|
SkRect::MakeXYWH(20, 20, 60, 60),
|
|
2.3f);)
|
|
DEF_BENCH(return new BlurRectsNonNinePatchBench(SkRect::MakeXYWH(10, 10, 100, 100),
|
|
SkRect::MakeXYWH(50, 50, 10, 10),
|
|
4.3f);)
|