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

  /external/skia/include/core/
SkPathRef.h 47 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
52 SkPoint* points() { return fPathRef->getPoints(); }
53 const SkPoint* points() const { return fPathRef->points(); }
59 SkASSERT((unsigned) i < (unsigned) fPathRef->fPointCnt);
63 SkASSERT((unsigned) i < (unsigned) fPathRef->fPointCnt);
73 SkDEBUGCODE(fPathRef->validate();)
74 return fPathRef->growForVerb(verb, weight);
87 return fPathRef->growForRepeatedVerb(verb, numVbs, weights);
95 fPathRef->resetToSize(newVerbCnt, newPointCnt, newConicCount);
101 SkPathRef* pathRef() { return fPathRef; }
    [all...]
SkPath.h 45 bool unique() const { return fPathRef->unique(); }
158 bool isOval(SkRect* rect) const { return fPathRef->isOval(rect); }
179 return 0 == fPathRef->countVerbs();
188 return fPathRef->isFinite();
286 return fPathRef->getBounds();
813 uint32_t getSegmentMasks() const { return fPathRef->getSegmentMasks(); }
    [all...]
  /external/skia/src/core/
SkPath.cpp 128 : fPathRef(SkPathRef::CreateEmpty()) {
134 //fPathRef is assumed to have been emptied by the caller.
145 : fPathRef(SkRef(that.fPathRef.get())) {
158 fPathRef.reset(SkRef(that.fPathRef.get()));
166 //fPathRef is assumed to have been set by the caller.
178 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get());
183 fPathRef.swap(&that.fPathRef)
    [all...]
SkPathRef.cpp 25 fPathRef = *pathRef;
26 fPathRef->fGenerationID = 0;
27 SkDEBUGCODE(sk_atomic_inc(&fPathRef->fEditorsAttached);)

Completed in 974 milliseconds