Home
last modified time | relevance | path

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

/external/skia/tests/
DColorTest.cpp74 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a0) == dst); in test_fast_interp()
75 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a255) == src); in test_fast_interp()
DColorPrivTest.cpp31 const SkPMColor fast = SkFastFourByteInterp(src, dst, scale); in DEF_TEST()
/external/skia/bench/
DColorPrivBench.cpp61 junk ^= SkFastFourByteInterp(src, dst, scale); in onDraw()
/external/skia/src/core/
DSkBlitter_ARGB32.cpp203 device[0] = SkFastFourByteInterp(fPMColor, device[0], a0); in blitAntiH2()
204 device[1] = SkFastFourByteInterp(fPMColor, device[1], a1); in blitAntiH2()
211 device[0] = SkFastFourByteInterp(fPMColor, device[0], a0); in blitAntiV2()
213 device[0] = SkFastFourByteInterp(fPMColor, device[0], a1); in blitAntiV2()
/external/skia/src/effects/gradients/
DSkLinearGradient.cpp213 SkPMColor lerp = SkFastFourByteInterp(cache[index1], cache[index0], remainder); in shadeSpan_linear_vertical_lerp()
216 SkPMColor dlerp = SkFastFourByteInterp(cache[index1], cache[index0], remainder); in shadeSpan_linear_vertical_lerp()
/external/skia/include/core/
DSkColorPriv.h524 static inline SkPMColor SkFastFourByteInterp(SkPMColor src, in SkFastFourByteInterp() function