Searched refs:fWeights (Results 1 – 7 of 7) sorted by relevance
/third_party/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 …]
|
/third_party/skia/src/gpu/tessellate/ |
D | PathWedgeTessellator.cpp | 45 , fWeights(SkPathPriv::ConicWeightData(fPath)) {} in MidpointContourParser() 95 return SkPathPriv::Iterate(fVerbs, fVerbs + fVerbsIdx, fPoints, fWeights); in currentContour() 107 fWeights += fWtsIdx; in advance() 120 const float* fWeights; member in skgpu::__anonfb92dd590111::MidpointContourParser
|
/third_party/skia/third_party/externals/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()
|
/third_party/skia/src/core/ |
D | SkPathPriv.h | 173 : fVerbsBegin(verbsBegin), fVerbsEnd(verbsEnd), fPoints(points), fWeights(weights) { in Iterate() 175 SkPath::RangeIter begin() { return {fVerbsBegin, fPoints, fWeights}; } in begin() 181 const SkScalar* fWeights; member
|
/third_party/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
|
/third_party/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()
|