blob: fade198d6d95cbc71232df5c8b6fa5471e9df0b8 [file] [log] [blame]
/*
* Copyright 2019 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/pathops/SkPathOps.h"
#include "src/core/SkClipStack.h"
void SkClipStack_AsPath(const SkClipStack& cs, SkPath* path) {
path->reset();
path->setFillType(SkPathFillType::kInverseEvenOdd);
SkClipStack::Iter iter(cs, SkClipStack::Iter::kBottom_IterStart);
while (const SkClipStack::Element* element = iter.next()) {
if (element->getDeviceSpaceType() == SkClipStack::Element::DeviceSpaceType::kShader) {
// TODO: Handle DeviceSpaceType::kShader somehow; it can't be turned into an SkPath
// but perhaps the pdf backend can apply shaders in another way.
continue;
}
SkPath operand;
if (element->getDeviceSpaceType() != SkClipStack::Element::DeviceSpaceType::kEmpty) {
element->asDeviceSpacePath(&operand);
}
SkClipOp elementOp = element->getOp();
if (elementOp == kReplace_SkClipOp) {
*path = operand;
} else {
Op(*path, operand, (SkPathOp)elementOp, path);
}
}
}