Searched defs:fPathRef (Results 1 - 6 of 6) sorted by relevance

/external/skqp/src/core/
H A DSkPathPriv.h69 auto verbs = path.fPathRef->verbs();
90 path.fPathRef->addGenIDChangeListener(listener);
117 Verbs(const SkPath& path) : fPathRef(path.fPathRef.get()) {}
124 Iter begin() { return Iter{fPathRef->verbs() - 1}; }
125 Iter end() { return Iter{fPathRef->verbs() - fPathRef->countVerbs() - 1}; }
129 SkPathRef* fPathRef; member in struct:SkPathPriv::Verbs
137 return path.fPathRef->verbsMemBegin();
142 return path.fPathRef
[all...]
/external/skia/src/core/
H A DSkPathPriv.h69 auto verbs = path.fPathRef->verbs();
90 path.fPathRef->addGenIDChangeListener(listener);
123 Verbs(const SkPath& path) : fPathRef(path.fPathRef.get()) {}
130 Iter begin() { return Iter{fPathRef->verbs() - 1}; }
131 Iter end() { return Iter{fPathRef->verbs() - fPathRef->countVerbs() - 1}; }
135 SkPathRef* fPathRef; member in struct:SkPathPriv::Verbs
143 return path.fPathRef->verbsMemBegin();
148 return path.fPathRef
[all...]
/external/skia/include/core/
H A DSkPath.h151 bool unique() const { return fPathRef->unique(); }
318 return 0 == fPathRef->countVerbs();
336 return fPathRef->isFinite();
487 return fPathRef->getBounds();
1318 uint32_t getSegmentMasks() const { return fPathRef->getSegmentMasks(); }
1482 fRawIter.setPathRef(*path.fPathRef.get());
1618 bool isValid() const { return this->isValidImpl() && fPathRef->isValid(); }
1621 bool pathRefIsValid() const { return fPathRef->isValid(); }
1625 sk_sp<SkPathRef> fPathRef; member in class:SkPath
1632 /** Resets all fields other than fPathRef t
[all...]
/external/skia/include/private/
H A DSkPathRef.h47 ~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; }
114 SkPathRef* fPathRef; member in class:final::Editor
[all...]
/external/skqp/include/private/
H A DSkPathRef.h47 ~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; }
114 SkPathRef* fPathRef; member in class:final::Editor
[all...]
/external/skqp/include/core/
H A DSkPath.h152 bool unique() const { return fPathRef->unique(); }
303 bool result = fPathRef->isOval(rect, &isCCW, start);
331 bool result = fPathRef->isRRect(rrect, &isCCW, start);
360 return 0 == fPathRef->countVerbs();
378 return fPathRef->isFinite();
529 return fPathRef->getBounds();
1360 uint32_t getSegmentMasks() const { return fPathRef->getSegmentMasks(); }
1524 fRawIter.setPathRef(*path.fPathRef.get());
1658 bool isValid() const { return this->isValidImpl() && fPathRef->isValid(); }
1661 bool pathRefIsValid() const { return fPathRef
1687 sk_sp<SkPathRef> fPathRef; member in class:SkPath
[all...]

Completed in 1013 milliseconds