Searched refs:color_alpha (Results 1 – 1 of 1) sorted by relevance
/external/skia/src/core/ |
D | SkXfermode.cpp | 57 static Sk4f color_alpha(const Sk4f& color, float newAlpha) { in color_alpha() function 60 static Sk4f color_alpha(const Sk4f& color, const Sk4f& newAlpha) { in color_alpha() function 61 return color_alpha(color, newAlpha[3]); in color_alpha() 98 return pin_1(s + d - s * da + color_alpha(rc - d * sa, 0)); in overlay_4f() 131 return color_alpha(colors, srcover); in colordodge_4f() 148 return color_alpha(colors, srcover); in colorburn_4f() 172 return color_alpha(s * ida + d * isa + (s2 <= sa).thenElse(darkSrc, liteSrc), // Case 1 or 2/3? in softlight_4f() 178 return s + d - min - color_alpha(min, 0); in difference_4f() 183 return s + d - product - color_alpha(product, 0); in exclusion_4f() 283 return color_alpha(s * inv_alpha(d) + d * inv_alpha(s) + set_argb(0, Sr, Sg, Sb), in hue_4f() [all …]
|