Searched refs:fCoeff (Results 1 – 2 of 2) sorted by relevance
66 t = sk_float_pow(x / fCoeff[0].fX, 1.0f / 3); in computeYFromX()68 t = compute_t_from_x(fCoeff[0].fX, fCoeff[1].fX, fCoeff[2].fX, x); in computeYFromX()70 float a = fCoeff[0].fY; in computeYFromX()71 float b = fCoeff[1].fY; in computeYFromX()72 float c = fCoeff[2].fY; in computeYFromX()90 (Sk2s(1) + s1 - s2).store(&fCoeff[0]); in SkCubicMap()91 (s2 - s1 - s1).store(&fCoeff[1]); in SkCubicMap()92 s1.store(&fCoeff[2]); in SkCubicMap()97 } else if (coeff_nearly_zero(fCoeff[1].fX) && coeff_nearly_zero(fCoeff[2].fX)) { in SkCubicMap()103 Sk2s a = Sk2s::Load(&fCoeff[0]); in computeFromT()[all …]
40 SkPoint fCoeff[3]; variable