Home
last modified time | relevance | path

Searched refs:forceClose (Results 1 – 2 of 2) sorted by relevance

/external/skia/include/core/
DSkPath.h520 Iter(const SkPath&, bool forceClose);
522 void setPath(const SkPath&, bool forceClose);
562 void dump(bool forceClose, const char title[] = NULL) const;
/external/skia/src/core/
DSkPath.cpp973 SkPath::Iter::Iter(const SkPath& path, bool forceClose) { in Iter() argument
974 this->setPath(path, forceClose); in Iter()
977 void SkPath::Iter::setPath(const SkPath& path, bool forceClose) { in setPath() argument
981 fForceClose = SkToU8(forceClose); in setPath()
1254 void SkPath::dump(bool forceClose, const char title[]) const { in dump() argument
1255 Iter iter(*this, forceClose); in dump()
1259 SkDebugf("path: forceClose=%s %s\n", forceClose ? "true" : "false", in dump()