Searched refs:fWeights (Results 1 – 9 of 9) sorted by relevance
/external/skia/samplecode/ |
D | SampleVariableWidthStroker.cpp | 63 fWeights.resize(degree + 1, {0}); in ScalarBezCurve() 70 fWeights.insert(fWeights.begin(), weights.begin(), weights.end()); in ScalarBezCurve() 77 for (float w : fWeights) { in extremumWeight() 97 result.fWeights[i] = result.fWeights[i - 1] * (1 - t) + result.fWeights[i] * t; in Eval() 101 return result.fWeights[curve.fDegree]; in Eval() 128 left->fWeights[0] = curve.fWeights[0]; in Split() 129 right->fWeights[degree] = curve.fWeights[degree]; in Split() 134 result.fWeights[i] = result.fWeights[i - 1] * (1 - t) + result.fWeights[i] * t; in Split() 137 left->fWeights[k] = result.fWeights[k]; in Split() 138 right->fWeights[degree - k] = result.fWeights[degree]; in Split() [all …]
|
/external/skia/src/gpu/tessellate/ |
D | GrMidpointContourParser.h | 30 , fWeights(SkPathPriv::ConicWeightData(fPath)) {} in GrMidpointContourParser() 70 return SkPathPriv::Iterate(fVerbs, fVerbs + fVerbsIdx, fPoints, fWeights); in currentContour() 82 fWeights += fWtsIdx; in advance() 95 const float* fWeights; variable
|
/external/skia/src/core/ |
D | SkPathPriv.h | 172 : fVerbsBegin(verbsBegin), fVerbsEnd(verbsEnd), fPoints(points), fWeights(weights) { in Iterate() 174 SkPath::RangeIter begin() { return {fVerbsBegin, fPoints, fWeights}; } in begin() 180 const SkScalar* fWeights; member
|
/external/dng_sdk/source/ |
D | dng_lens_correction.cpp | 966 dng_resample_weights_2d fWeights; member in dng_filter_warp 1013 , fWeights () in dng_filter_warp() 1108 fWeights.Initialize (kernel, in Initialize() 1203 const int32 pad = ConvertUint32ToInt32(fWeights.Radius()); in SrcArea() 1266 srcTileSize.h += ConvertUint32ToInt32(fWeights.Width()); in SrcTileSize() 1267 srcTileSize.v += ConvertUint32ToInt32(fWeights.Width()); in SrcTileSize() 1300 const int32 wCount = fWeights.Width (); in ProcessArea() 1302 const dng_point srcOffset (fWeights.Offset (), in ProcessArea() 1303 fWeights.Offset ()); in ProcessArea() 1394 const real32 *w = fWeights.Weights32 (sFct); in ProcessArea()
|
/external/skia/src/pathops/ |
D | SkOpEdgeBuilder.h | 64 SkTDArray<SkScalar> fWeights; variable
|
D | SkOpEdgeBuilder.cpp | 152 *fWeights.append() = *w; in preFetch() 173 SkScalar* weightPtr = fWeights.begin(); in walk()
|
/external/skqp/src/pathops/ |
D | SkOpEdgeBuilder.h | 64 SkTDArray<SkScalar> fWeights; variable
|
D | SkOpEdgeBuilder.cpp | 158 *fWeights.append() = iter.conicWeight(); in preFetch() 179 SkScalar* weightPtr = fWeights.begin(); in walk()
|
/external/skia/include/core/ |
D | SkPath.h | 1536 : fVerb(verbs), fPoints(points), fWeights(weights) { in RangeIter() 1549 ++fWeights; 1568 return {verb, fPoints + backset, fWeights}; 1595 const SkScalar* fWeights = nullptr; variable
|