dbfd7ab108
'static const' means, there must be at most one of these, and initialize it at compile time if possible or runtime if necessary. This leads to unexpected code execution, and TSAN* will complain about races on the guard variables. Generally 'constexpr' or 'const' are better choices. Neither can cause races: they're either intialized at compile time (constexpr) or intialized each time independently (const). This CL prefers constexpr where possible, and uses const where not. It even prefers constexpr over const where they don't make a difference... I want to have lots of examples of constexpr for people to see and mimic. The scoped-to-class static has nothing to do with any of this, and is not changed. * Not yet on the bots, which use an older TSAN. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2300623005 Review-Url: https://codereview.chromium.org/2300623005
69 lines
1.9 KiB
C++
69 lines
1.9 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 "gm.h"
|
|
#include "SkBlurMask.h"
|
|
#include "SkBlurMaskFilter.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkPaint.h"
|
|
#include "SkString.h"
|
|
|
|
class BlurCirclesGM : public skiagm::GM {
|
|
public:
|
|
BlurCirclesGM() { }
|
|
|
|
protected:
|
|
bool runAsBench() const override { return true; }
|
|
|
|
SkString onShortName() override {
|
|
return SkString("blurcircles");
|
|
}
|
|
|
|
SkISize onISize() override {
|
|
return SkISize::Make(950, 950);
|
|
}
|
|
|
|
void onOnceBeforeDraw() override {
|
|
const float blurRadii[kNumBlurs] = { 1,5,10,20 };
|
|
|
|
for (int i = 0; i < kNumBlurs; ++i) {
|
|
fBlurFilters[i] = SkBlurMaskFilter::Make(
|
|
kNormal_SkBlurStyle,
|
|
SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(blurRadii[i])),
|
|
SkBlurMaskFilter::kHighQuality_BlurFlag);
|
|
}
|
|
}
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
|
canvas->scale(1.5f, 1.5f);
|
|
canvas->translate(50,50);
|
|
|
|
const int circleRadii[] = { 5,10,25,50 };
|
|
|
|
for (size_t i = 0; i < kNumBlurs; ++i) {
|
|
SkAutoCanvasRestore autoRestore(canvas, true);
|
|
canvas->translate(0, SkIntToScalar(150*i));
|
|
for (size_t j = 0; j < SK_ARRAY_COUNT(circleRadii); ++j) {
|
|
SkPaint paint;
|
|
paint.setColor(SK_ColorBLACK);
|
|
paint.setMaskFilter(fBlurFilters[i]);
|
|
|
|
canvas->drawCircle(SkIntToScalar(50),SkIntToScalar(50),SkIntToScalar(circleRadii[j]),paint);
|
|
canvas->translate(SkIntToScalar(150), 0);
|
|
}
|
|
}
|
|
}
|
|
private:
|
|
static constexpr int kNumBlurs = 4;
|
|
|
|
sk_sp<SkMaskFilter> fBlurFilters[kNumBlurs];
|
|
|
|
typedef skiagm::GM INHERITED;
|
|
};
|
|
|
|
DEF_GM(return new BlurCirclesGM();)
|