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

  /external/skia/include/core/
SkPath.h 19 /** \class SkPath
20 SkPath contain geometry. SkPath may be empty, or contain one or more verbs that
21 outline a figure. SkPath always starts with a move verb to a Cartesian_Coordinate,
24 SkPath may contain any number of contours, each beginning with a move verb.
26 SkPath contours may contain only a move verb, or may also contain lines,
27 quadratic beziers, conics, and cubic beziers. SkPath contours may be open or
30 When used to draw a filled area, SkPath describes whether the fill is inside or
31 outside the geometry. SkPath also describes the winding rule used to fill
34 Internally, SkPath lazily computes metrics likes bounds and convexity. Cal
    [all...]
  /external/skqp/include/core/
SkPath.h 19 /** \class SkPath
21 outline a figure. SkPath always starts with a move verb to a Cartesian_Coordinate,
26 SkPath contours may contain only a move verb, or may also contain lines,
27 quadratic beziers, conics, and cubic beziers. SkPath contours may be open or
30 When used to draw a filled area, SkPath describes whether the fill is inside or
31 outside the geometry. SkPath also describes the winding rule used to fill
34 Internally, SkPath lazily computes metrics likes bounds and convexity. Call
35 SkPath::updateBoundsCache to make SkPath thread safe.
37 class SK_API SkPath {
    [all...]
  /external/skia/src/core/
SkPath.cpp 43 static bool is_degenerate(const SkPath& path) {
44 SkPath::Iter iter(path, false);
46 return SkPath::kDone_Verb == iter.next(pts);
51 SkAutoDisableDirectionCheck(SkPath* path) : fPath(path) {
60 SkPath* fPath;
79 SkAutoPathBoundsUpdate(SkPath* path, const SkRect& r) : fRect(r) {
83 SkAutoPathBoundsUpdate(SkPath* path, SkScalar left, SkScalar top,
90 fPath->setConvexity(fDegenerate ? SkPath::kConvex_Convexity
91 : SkPath::kUnknown_Convexity);
98 SkPath* fPath
    [all...]
  /external/skqp/src/core/
SkPath.cpp 42 static bool is_degenerate(const SkPath& path) {
43 SkPath::Iter iter(path, false);
45 return SkPath::kDone_Verb == iter.next(pts);
50 SkAutoDisableDirectionCheck(SkPath* path) : fPath(path) {
59 SkPath* fPath;
78 SkAutoPathBoundsUpdate(SkPath* path, const SkRect& r) : fRect(r) {
82 SkAutoPathBoundsUpdate(SkPath* path, SkScalar left, SkScalar top,
89 fPath->setConvexity(fDegenerate ? SkPath::kConvex_Convexity
90 : SkPath::kUnknown_Convexity);
97 SkPath* fPath
    [all...]

Completed in 602 milliseconds