skia2/modules/sksg/include/SkSGPath.h
Mike Reed 3e7af41224 Revert "switch to new filltype for SkPath"
This reverts commit 3a50981a83.

Reason for revert: chrome win build found compile-problem in xpsdevice

Original change's description:
> switch to new filltype for SkPath
> 
> Change-Id: I7793324a9acf4afb0eb38c1e20fbb38eac25d636
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/256102
> Reviewed-by: Florin Malita <fmalita@chromium.org>
> Commit-Queue: Mike Reed <reed@google.com>

TBR=fmalita@chromium.org,reed@google.com

Change-Id: Iacb3566da61c2512b9bd6b7e42b592febc85e031
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/256530
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
2019-11-26 03:34:30 +00:00

63 lines
1.4 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 SkSGPath_DEFINED
#define SkSGPath_DEFINED
#include "modules/sksg/include/SkSGGeometryNode.h"
#include "include/core/SkPath.h"
class SkCanvas;
class SkPaint;
namespace sksg {
/**
* Concrete Geometry node, wrapping an SkPath.
*/
class Path : public GeometryNode {
public:
static sk_sp<Path> Make() { return sk_sp<Path>(new Path(SkPath())); }
static sk_sp<Path> Make(const SkPath& r) { return sk_sp<Path>(new Path(r)); }
SG_ATTRIBUTE(Path, SkPath, fPath)
// Temporarily inlined for SkPathFillType staging
// SG_MAPPED_ATTRIBUTE(FillType, SkPathFillType, fPath)
SkPath::FillType getFillType() const {
return fPath.getFillType();
}
void setFillType(SkPath::FillType fillType) {
if (fillType != fPath.getFillType()) {
fPath.setFillType(fillType);
this->invalidate();
}
}
protected:
void onClip(SkCanvas*, bool antiAlias) const override;
void onDraw(SkCanvas*, const SkPaint&) const override;
bool onContains(const SkPoint&) const override;
SkRect onRevalidate(InvalidationController*, const SkMatrix&) override;
SkPath onAsPath() const override;
private:
explicit Path(const SkPath&);
SkPath fPath;
using INHERITED = GeometryNode;
};
} // namespace sksg
#endif // SkSGPath_DEFINED