Searched refs:fConicWeights (Results 1 – 13 of 13) sorted by relevance
/third_party/skia/src/core/ |
D | SkPathRef.cpp | 54 fPathRef->fConicWeights.shrinkToFit(); in shrinkToFit() 64 + fConicWeights.reserved() * sizeof(fConicWeights[0]); in approximateBytesUsed() 166 (*dst)->fConicWeights = src.fConicWeights; in CreateTransformedCopy() 232 (*pathRef)->fConicWeights.rewind(); in Rewind() 262 if (fPoints != ref.fPoints || fConicWeights != ref.fConicWeights || fVerbs != ref.fVerbs) { in operator ==() 291 buffer->write32(fConicWeights.count()); in writeToBuffer() 294 buffer->write(fConicWeights.begin(), fConicWeights.bytes()); in writeToBuffer() 302 fVerbs.bytes() + fPoints.bytes() + fConicWeights.bytes() + in writeSize() 310 this->resetToSize(ref.fVerbs.count(), ref.fPoints.count(), ref.fConicWeights.count(), in copy() 314 fConicWeights = ref.fConicWeights; in copy() [all …]
|
D | SkPathPriv.h | 428 const SkScalar* fConicWeights; variable 443 return *fConicWeights; in conicWeight() 507 fConicWeights += cws_count; in next()
|
D | SkPathBuilder.cpp | 36 fConicWeights.reset(); in reset() 129 fConicWeights.push_back(w); in conicTo() 232 fConicWeights, in snapshot() 239 std::move(fConicWeights), in detach()
|
D | SkPath.cpp | 240 fPathRef->fConicWeights == compare.fPathRef->fConicWeights; in isInterpolatable() 1679 fConicWeights = nullptr; in Iter() 1697 fConicWeights = path.fPathRef->conicWeights(); in setPath() 1698 if (fConicWeights) { in setPath() 1699 fConicWeights -= 1; // begin one behind in setPath() 1803 fConicWeights += 1; in next()
|
/third_party/flutter/skia/src/core/ |
D | SkPathRef.cpp | 80 fPathRef->fConicWeights.shrinkToFit(); in shrinkToFit() 192 (*dst)->resetToSize(src.fVerbCnt, src.fPointCnt, src.fConicWeights.count()); in CreateTransformedCopy() 195 (*dst)->fConicWeights = src.fConicWeights; in CreateTransformedCopy() 200 SkASSERT((*dst)->fConicWeights.count() == src.fConicWeights.count()); in CreateTransformedCopy() 365 SkASSERT(conicCount == ref->fConicWeights.count()); in CreateFromBuffer() 369 !buffer->read(ref->fConicWeights.begin(), conicSize) || in CreateFromBuffer() 381 pCount != ref->countPoints() || cCount != ref->fConicWeights.count()) { in CreateFromBuffer() 384 if (!validate_conic_weights(ref->fConicWeights.begin(), ref->fConicWeights.count())) { in CreateFromBuffer() 411 (*pathRef)->fConicWeights.rewind(); in Rewind() 464 if (fConicWeights != ref.fConicWeights) { in operator ==() [all …]
|
D | SkPath.cpp | 1932 fConicWeights = nullptr; in Iter() 1951 fConicWeights = path.fPathRef->conicWeights(); in setPath() 1952 if (fConicWeights) { in setPath() 1953 fConicWeights -= 1; // begin one behind in setPath() 2072 fConicWeights += 1; in next()
|
/third_party/skia/include/private/ |
D | SkPathRef.h | 71 , fConicWeights(std::move(weights)) in SkPathRef() 187 SkScalar conicWeight() const { return *fConicWeights; } in conicWeight() 193 const SkScalar* fConicWeights; variable 302 int countWeights() const { return fConicWeights.count(); } in countWeights() 326 const SkScalar* conicWeights() const { return fConicWeights.begin(); } in conicWeights() 327 const SkScalar* conicWeightsEnd() const { return fConicWeights.end(); } in conicWeightsEnd() 436 fConicWeights.setCount(conicCount); 508 SkTDArray<SkScalar> fConicWeights; variable
|
/third_party/flutter/skia/include/private/ |
D | SkPathRef.h | 138 SkScalar conicWeight() const { return *fConicWeights; } in conicWeight() 144 const SkScalar* fConicWeights; variable 253 int countWeights() const { return fConicWeights.count(); } in countWeights() 275 const SkScalar* conicWeights() const { return fConicWeights.begin(); } in conicWeights() 276 const SkScalar* conicWeightsEnd() const { return fConicWeights.end(); } in conicWeightsEnd() 435 fConicWeights.setCount(conicCount); 555 SkTDArray<SkScalar> fConicWeights; variable
|
/third_party/flutter/skia/src/gpu/ccpr/ |
D | GrCCFillGeometry.h | 55 , fConicWeights(numConicWeights * 3/2) {} 59 float getConicWeight(int idx) const { SkASSERT(!fBuildingContour); return fConicWeights[idx]; } in getConicWeight() 118 SkSTArray<32, float, true> fConicWeights; variable
|
D | GrCCFillGeometry.cpp | 779 fConicWeights.push_back(w); in appendMonotonicConic()
|
/third_party/flutter/skia/include/core/ |
D | SkPath.h | 1455 SkScalar conicWeight() const { return *fConicWeights; } in conicWeight() 1480 const SkScalar* fConicWeights; variable
|
/third_party/skia/include/core/ |
D | SkPath.h | 1488 SkScalar conicWeight() const { return *fConicWeights; } in conicWeight() 1515 const SkScalar* fConicWeights; variable
|
D | SkPathBuilder.h | 224 SkTDArray<SkScalar> fConicWeights; variable
|