aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/sksg/geometry/SkSGPlane.h
blob: c0a26375b2a07de22c7fffe8127c827d967bf865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * 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