Home
last modified time | relevance | path

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

/external/skia/src/effects/
DSkBicubicImageFilter.cpp65 inline SkPMColor cubicBlend(const SkScalar c[16], SkScalar t, SkPMColor c0, SkPMColor c1, SkPMColor… in cubicBlend() function
142 SkPMColor s0 = cubicBlend(fCoefficients, fractx, s00, s10, s20, s30); in onFilterImage()
147 SkPMColor s1 = cubicBlend(fCoefficients, fractx, s01, s11, s21, s31); in onFilterImage()
152 SkPMColor s2 = cubicBlend(fCoefficients, fractx, s02, s12, s22, s32); in onFilterImage()
157 SkPMColor s3 = cubicBlend(fCoefficients, fractx, s03, s13, s23, s33); in onFilterImage()
158 *dptr++ = cubicBlend(fCoefficients, fracty, s0, s1, s2, s3); in onFilterImage()