/* * 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 SkSGMaskEffect_DEFINED #define SkSGMaskEffect_DEFINED #include "SkSGEffectNode.h" namespace sksg { /** * Concrete Effect node, applying a mask to its descendants. * */ class MaskEffect final : public EffectNode { public: static sk_sp Make(sk_sp child, sk_sp mask) { return (child && mask) ? sk_sp(new MaskEffect(std::move(child), std::move(mask))) : nullptr; } ~MaskEffect() override; protected: MaskEffect(sk_sp, sk_sp mask); void onRender(SkCanvas*) const override; SkRect onRevalidate(InvalidationController*, const SkMatrix&) override; private: sk_sp fMaskNode; typedef EffectNode INHERITED; }; } // namespace sksg #endif // SkSGMaskEffect_DEFINED