Searched refs:fConicWeights (Results 1 - 4 of 4) sorted by relevance

/external/skia/src/core/
H A DSkPathRef.cpp63 (*dst)->resetToSize(src.fVerbCnt, src.fPointCnt, src.fConicWeights.count());
65 (*dst)->fConicWeights = src.fConicWeights;
70 SkASSERT((*dst)->fConicWeights.count() == src.fConicWeights.count());
137 SkASSERT(conicCount == ref->fConicWeights.count());
141 !buffer->read(ref->fConicWeights.begin(), conicCount * sizeof(SkScalar)) ||
162 (*pathRef)->fConicWeights.rewind();
214 if (fConicWeights != ref.fConicWeights) {
[all...]
H A DSkPath.cpp1525 fConicWeights = NULL;
1544 fConicWeights = path.fPathRef->conicWeights() - 1; // begin one behind
1628 lastMoveWeight = fConicWeights;
1649 fConicWeights = lastMoveWeight;
1665 fConicWeights = lastMoveWeight;
1673 fConicWeights += (kConic_Verb == verb);
1681 fConicWeights = lastMoveWeight;
1745 fConicWeights += 1;
1779 fConicWeights = NULL;
1795 fConicWeights
[all...]
/external/skia/include/core/
H A DSkPathRef.h200 int countWeights() const { SkDEBUGCODE(this->validate();) return fConicWeights.count(); }
222 const SkScalar* conicWeights() const { SkDEBUGCODE(this->validate();) return fConicWeights.begin(); }
223 const SkScalar* conicWeightsEnd() const { SkDEBUGCODE(this->validate();) return fConicWeights.end(); }
351 fConicWeights.setCount(conicCount);
449 SkTDArray<SkScalar> fConicWeights; member in class:SkPathRef
H A DSkPath.h860 SkScalar conicWeight() const { return *fConicWeights; }
881 const SkScalar* fConicWeights; member in class:SkPath::Iter
913 SkScalar conicWeight() const { return *fConicWeights; }
919 const SkScalar* fConicWeights; member in class:SkPath::RawIter

Completed in 135 milliseconds