skia2/experimental/sksg/geometry/SkSGTrimEffect.h
Florin Malita 38ea40eb75 [skottie] Layer clip support
TBR=

Change-Id: Ibf65efc69031f8f6e19f4f28cccab29c357e704d
Reviewed-on: https://skia-review.googlesource.com/101540
Reviewed-by: Florin Malita <fmalita@chromium.org>
Commit-Queue: Florin Malita <fmalita@chromium.org>
2018-01-29 21:57:44 +00:00

55 lines
1.3 KiB
C++

/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkSGTrimEffect_DEFINED
#define SkSGTrimEffect_DEFINED
#include "SkSGGeometryNode.h"
#include "SkPath.h"
class SkCanvas;
class SkPaint;
namespace sksg {
/**
* Concrete Geometry node, applying a trim effect to its child.
*/
class TrimEffect final : public GeometryNode {
public:
static sk_sp<TrimEffect> Make(sk_sp<GeometryNode> child) {
return child ? sk_sp<TrimEffect>(new TrimEffect(std::move(child))) : nullptr;
}
~TrimEffect() override;
SG_ATTRIBUTE(Start , SkScalar, fStart )
SG_ATTRIBUTE(End , SkScalar, fEnd )
SG_ATTRIBUTE(Offset, SkScalar, fOffset)
protected:
void onClip(SkCanvas*, bool antiAlias) const override;
void onDraw(SkCanvas*, const SkPaint&) const override;
SkRect onRevalidate(InvalidationController*, const SkMatrix&) override;
SkPath onAsPath() const override;
private:
explicit TrimEffect(sk_sp<GeometryNode>);
const sk_sp<GeometryNode> fChild;
SkScalar fStart = 0, // starting t
fEnd = 1, // ending t
fOffset = 0; // t offset
};
} // namespace sksg
#endif // SkSGTrimEffect_DEFINED