HomeSort by relevance Sort by last modified time
    Searched defs:SkPath (Results 1 - 2 of 2) sorted by null

  /external/skia/include/core/
SkPath.h 22 /** \class SkPath
24 The SkPath class encapsulates compound (multiple contour) geometric paths
27 SkPath is not thread safe unless you've first called SkPath::updateBoundsCache().
29 class SK_API SkPath {
38 SkPath();
39 SkPath(const SkPath&);
40 ~SkPath();
42 SkPath& operator=(const SkPath&)
    [all...]
  /external/skia/src/core/
SkPath.cpp 39 static bool is_degenerate(const SkPath& path) {
40 SkPath::Iter iter(path, false);
42 return SkPath::kDone_Verb == iter.next(pts);
47 SkAutoDisableDirectionCheck(SkPath* path) : fPath(path) {
56 SkPath* fPath;
75 SkAutoPathBoundsUpdate(SkPath* path, const SkRect& r) : fRect(r) {
79 SkAutoPathBoundsUpdate(SkPath* path, SkScalar left, SkScalar top,
86 fPath->setConvexity(fDegenerate ? SkPath::kConvex_Convexity
87 : SkPath::kUnknown_Convexity);
94 SkPath* fPath
    [all...]

Completed in 248 milliseconds