Home
last modified time | relevance | path

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

/external/skqp/src/core/
DSkCubicMap.cpp176 t = sk_float_pow(x / fCoeff[0].fX, 1.0f / 3); in computeYFromX()
178 t = compute_t_from_x(fCoeff[0].fX, fCoeff[1].fX, fCoeff[2].fX, x); in computeYFromX()
180 float a = fCoeff[0].fY; in computeYFromX()
181 float b = fCoeff[1].fY; in computeYFromX()
182 float c = fCoeff[2].fY; in computeYFromX()
199 (Sk2s(1) + s1 - s2).store(&fCoeff[0]); in setPts()
200 (s2 - s1 - s1).store(&fCoeff[1]); in setPts()
201 s1.store(&fCoeff[2]); in setPts()
206 } else if (coeff_nearly_zero(fCoeff[1].fX) && coeff_nearly_zero(fCoeff[2].fX)) { in setPts()
212 Sk2s a = Sk2s::Load(&fCoeff[0]); in computeFromT()
[all …]
DSkCubicMap.h41 SkPoint fCoeff[3]; variable
/external/skia/src/core/
DSkCubicMap.cpp176 t = sk_float_pow(x / fCoeff[0].fX, 1.0f / 3); in computeYFromX()
178 t = compute_t_from_x(fCoeff[0].fX, fCoeff[1].fX, fCoeff[2].fX, x); in computeYFromX()
180 float a = fCoeff[0].fY; in computeYFromX()
181 float b = fCoeff[1].fY; in computeYFromX()
182 float c = fCoeff[2].fY; in computeYFromX()
199 (Sk2s(1) + s1 - s2).store(&fCoeff[0]); in SkCubicMap()
200 (s2 - s1 - s1).store(&fCoeff[1]); in SkCubicMap()
201 s1.store(&fCoeff[2]); in SkCubicMap()
206 } else if (coeff_nearly_zero(fCoeff[1].fX) && coeff_nearly_zero(fCoeff[2].fX)) { in SkCubicMap()
212 Sk2s a = Sk2s::Load(&fCoeff[0]); in computeFromT()
[all …]
/external/skia/include/core/
DSkCubicMap.h36 SkPoint fCoeff[3]; variable