2018-01-08 21:42:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkSGOpacityEffect_DEFINED
|
|
|
|
#define SkSGOpacityEffect_DEFINED
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "modules/sksg/include/SkSGEffectNode.h"
|
2018-01-08 21:42:59 +00:00
|
|
|
|
|
|
|
namespace sksg {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Concrete Effect node, applying opacity to its descendants.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class OpacityEffect final : public EffectNode {
|
|
|
|
public:
|
|
|
|
static sk_sp<OpacityEffect> Make(sk_sp<RenderNode> child, float opacity = 1) {
|
|
|
|
return child ? sk_sp<OpacityEffect>(new OpacityEffect(std::move(child), opacity)) : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
SG_ATTRIBUTE(Opacity, float, fOpacity)
|
|
|
|
|
|
|
|
protected:
|
|
|
|
OpacityEffect(sk_sp<RenderNode>, float);
|
|
|
|
|
2018-08-09 11:40:01 +00:00
|
|
|
void onRender(SkCanvas*, const RenderContext*) const override;
|
2019-02-12 14:33:21 +00:00
|
|
|
const RenderNode* onNodeAt(const SkPoint&) const override;
|
2018-01-08 21:42:59 +00:00
|
|
|
|
|
|
|
SkRect onRevalidate(InvalidationController*, const SkMatrix&) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
float fOpacity;
|
|
|
|
|
|
|
|
typedef EffectNode INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace sksg
|
|
|
|
|
|
|
|
#endif // SkSGOpacityEffect_DEFINED
|