/* * 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 #include "SkSGEffectNode.h" namespace sksg { /** * Concrete Effect node, applying opacity to its descendants. * */ class OpacityEffect final : public EffectNode { public: static sk_sp Make(sk_sp child, float opacity = 1) { return child ? sk_sp(new OpacityEffect(std::move(child), opacity)) : nullptr; } SG_ATTRIBUTE(Opacity, float, fOpacity) protected: OpacityEffect(sk_sp, float); void onRender(SkCanvas*) const override; SkRect onRevalidate(InvalidationController*, const SkMatrix&) override; private: float fOpacity; typedef EffectNode INHERITED; }; } // namespace sksg #endif // SkSGOpacityEffect_DEFINED