aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/sksg/effects/SkSGOpacityEffect.h
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/sksg/effects/SkSGOpacityEffect.h')
-rw-r--r--experimental/sksg/effects/SkSGOpacityEffect.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/experimental/sksg/effects/SkSGOpacityEffect.h b/experimental/sksg/effects/SkSGOpacityEffect.h
deleted file mode 100644
index d906775b44..0000000000
--- a/experimental/sksg/effects/SkSGOpacityEffect.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * 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<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);
-
- void onRender(SkCanvas*) const override;
-
- SkRect onRevalidate(InvalidationController*, const SkMatrix&) override;
-
-private:
- float fOpacity;
-
- typedef EffectNode INHERITED;
-};
-
-} // namespace sksg
-
-#endif // SkSGOpacityEffect_DEFINED