Home
last modified time | relevance | path

Searched refs:fFwDiff (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/utils/
DSkPatchUtils.cpp72 fFwDiff[0] = fCoefs[3]; in restart()
76 fFwDiff[3].set(6.f * fCoefs[0].x() * h3, 6.f * fCoefs[0].y() * h3); //6ah^3 in restart()
77 fFwDiff[2].set(fFwDiff[3].x() + 2.f * fCoefs[1].x() * h2, //6ah^3 + 2bh^2 in restart()
78 fFwDiff[3].y() + 2.f * fCoefs[1].y() * h2); in restart()
79 fFwDiff[1].set(fCoefs[0].x() * h3 + fCoefs[1].x() * h2 + fCoefs[2].x() * h,//ah^3 + bh^2 +ch in restart()
94 SkPoint point = fFwDiff[0]; in next()
95 fFwDiff[0] += fFwDiff[1]; in next()
96 fFwDiff[1] += fFwDiff[2]; in next()
97 fFwDiff[2] += fFwDiff[3]; in next()
108 SkPoint fFwDiff[4], fCoefs[4], fPoints[4]; member in FwDCubicEvaluator