skia2/experimental/sksg/geometry/SkSGPlane.h
Florin Malita 97b3d2bcdb [sksg] Add 'plane' geometry node
SG geometry corresponding to SkCanvas::drawPaint().

TBR=

Change-Id: I3b368adda187fb92f524756496a3694c03a3113d
Reviewed-on: https://skia-review.googlesource.com/108562
Reviewed-by: Florin Malita <fmalita@chromium.org>
Commit-Queue: Florin Malita <fmalita@chromium.org>
2018-02-20 17:08:53 +00:00

41 lines
822 B
C++

/*
* 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 SkSGPlane_DEFINED
#define SkSGPlane_DEFINED
#include "SkSGGeometryNode.h"
class SkCanvas;
class SkPaint;
namespace sksg {
/**
* Concrete Geometry node, representing the whole canvas.
*/
class Plane final : public GeometryNode {
public:
static sk_sp<Plane> Make() { return sk_sp<Plane>(new Plane()); }
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:
Plane();
using INHERITED = GeometryNode;
};
} // namespace sksg
#endif // SkSGPlane_DEFINED