aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/sksg/geometry/SkSGPath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/sksg/geometry/SkSGPath.cpp')
-rw-r--r--experimental/sksg/geometry/SkSGPath.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/experimental/sksg/geometry/SkSGPath.cpp b/experimental/sksg/geometry/SkSGPath.cpp
deleted file mode 100644
index 230442d409..0000000000
--- a/experimental/sksg/geometry/SkSGPath.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright 2017 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "SkSGPath.h"
-
-#include "SkCanvas.h"
-#include "SkPaint.h"
-#include "SkRectPriv.h"
-
-namespace sksg {
-
-Path::Path(const SkPath& path) : fPath(path) {}
-
-void Path::onClip(SkCanvas* canvas, bool antiAlias) const {
- canvas->clipPath(fPath, SkClipOp::kIntersect, antiAlias);
-}
-
-void Path::onDraw(SkCanvas* canvas, const SkPaint& paint) const {
- canvas->drawPath(fPath, paint);
-}
-
-SkRect Path::onRevalidate(InvalidationController*, const SkMatrix&) {
- SkASSERT(this->hasInval());
-
- const auto ft = fPath.getFillType();
- return (ft == SkPath::kWinding_FillType || ft == SkPath::kEvenOdd_FillType)
- // "Containing" fills have finite bounds.
- ? fPath.computeTightBounds()
- // Inverse fills are "infinite".
- : SkRectPriv::MakeLargeS32();
-}
-
-SkPath Path::onAsPath() const {
- return fPath;
-}
-
-} // namespace sksg