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

  /external/chromium_org/third_party/skia/include/core/
SkPath.h 25 /** \class SkPath
27 The SkPath class encapsulates compound (multiple contour) geometric paths
30 class SK_API SkPath {
32 SK_DECLARE_INST_COUNT_ROOT(SkPath);
34 SkPath();
35 SkPath(const SkPath&);
36 ~SkPath();
38 SkPath& operator=(const SkPath&)
    [all...]
  /external/skia/include/core/
SkPath.h 25 /** \class SkPath
27 The SkPath class encapsulates compound (multiple contour) geometric paths
30 class SK_API SkPath {
32 SK_DECLARE_INST_COUNT_ROOT(SkPath);
34 SkPath();
35 SkPath(const SkPath&);
36 ~SkPath();
38 SkPath& operator=(const SkPath&)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 13 #include "SkPath.h"
32 static bool is_degenerate(const SkPath& path) {
33 SkPath::Iter iter(path, false);
35 return SkPath::kDone_Verb == iter.next(pts);
40 SkAutoDisableDirectionCheck(SkPath* path) : fPath(path) {
41 fSaved = static_cast<SkPath::Direction>(fPath->fDirection);
49 SkPath* fPath;
50 SkPath::Direction fSaved;
68 SkAutoPathBoundsUpdate(SkPath* path, const SkRect& r) : fRect(r) {
72 SkAutoPathBoundsUpdate(SkPath* path, SkScalar left, SkScalar top
    [all...]
  /external/skia/src/core/
SkPath.cpp 13 #include "SkPath.h"
32 static bool is_degenerate(const SkPath& path) {
33 SkPath::Iter iter(path, false);
35 return SkPath::kDone_Verb == iter.next(pts);
40 SkAutoDisableDirectionCheck(SkPath* path) : fPath(path) {
41 fSaved = static_cast<SkPath::Direction>(fPath->fDirection);
49 SkPath* fPath;
50 SkPath::Direction fSaved;
68 SkAutoPathBoundsUpdate(SkPath* path, const SkRect& r) : fRect(r) {
72 SkAutoPathBoundsUpdate(SkPath* path, SkScalar left, SkScalar top
    [all...]

Completed in 149 milliseconds