/external/skia/src/core/ |
D | SkBlitter_A8.cpp | 45 device[i] = SkToU8(srcA + SkAlphaMul(device[i], scale)); in blitH() 70 unsigned sa = SkAlphaMul(srcA, SkAlpha255To256(aa)); in blitAntiH() 74 device[i] = SkToU8(sa + SkAlphaMul(device[i], scale)); in blitAntiH() 106 if (bw & 0x80) dst[0] = SkToU8(sa + SkAlphaMul(dst[0], dst_scale)); in blend_8_pixels() 107 if (bw & 0x40) dst[1] = SkToU8(sa + SkAlphaMul(dst[1], dst_scale)); in blend_8_pixels() 108 if (bw & 0x20) dst[2] = SkToU8(sa + SkAlphaMul(dst[2], dst_scale)); in blend_8_pixels() 109 if (bw & 0x10) dst[3] = SkToU8(sa + SkAlphaMul(dst[3], dst_scale)); in blend_8_pixels() 110 if (bw & 0x08) dst[4] = SkToU8(sa + SkAlphaMul(dst[4], dst_scale)); in blend_8_pixels() 111 if (bw & 0x04) dst[5] = SkToU8(sa + SkAlphaMul(dst[5], dst_scale)); in blend_8_pixels() 112 if (bw & 0x02) dst[6] = SkToU8(sa + SkAlphaMul(dst[6], dst_scale)); in blend_8_pixels() [all …]
|
D | SkColor.cpp | 97 unsigned p = SkAlphaMul(255 - s, v_scale); in SkHSVToColor() 98 unsigned q = SkAlphaMul(255 - (s * f >> 16), v_scale); in SkHSVToColor() 99 unsigned t = SkAlphaMul(255 - (s * (SK_Fixed1 - f) >> 16), v_scale); in SkHSVToColor()
|
D | SkBlitter.cpp | 659 r = SkFastMin32(SkAlphaMul(r, mul) + add, a); in shadeSpan() 660 g = SkFastMin32(SkAlphaMul(g, mul) + add, a); in shadeSpan() 661 b = SkFastMin32(SkAlphaMul(b, mul) + add, a); in shadeSpan() 680 SkFastMin32(SkAlphaMul(r, mul) + add, a), in shadeSpan() 681 SkFastMin32(SkAlphaMul(g, mul) + add, a), in shadeSpan() 682 SkFastMin32(SkAlphaMul(b, mul) + add, a)); in shadeSpan()
|
D | SkBlitRow_D16.cpp | 147 int d = SkAlphaMul(DITHER_VALUE(x), SkAlpha255To256(a)); in S32A_D565_Opaque_Dither() 183 int dst_scale = SkAlpha255To256(255 - SkAlphaMul(sa, src_scale)); in S32A_D565_Blend_Dither()
|
D | SkBitmap.cpp | 712 r = SkAlphaMul(r, a); in internalErase() 713 g = SkAlphaMul(g, a); in internalErase() 714 b = SkAlphaMul(b, a); in internalErase() 735 r = SkAlphaMul(r, a); in internalErase() 736 g = SkAlphaMul(g, a); in internalErase() 737 b = SkAlphaMul(b, a); in internalErase()
|
D | SkBlitMask_D32.cpp | 275 return dst + SkAlphaMul(src - SkAlphaMul(srcA, dst), mask); in src_alpha_blend()
|
D | SkBlitter_ARGB32.cpp | 50 fSrcR = SkAlphaMul(SkColorGetR(color), scale); in SkARGB32_Blitter() 51 fSrcG = SkAlphaMul(SkColorGetG(color), scale); in SkARGB32_Blitter() 52 fSrcB = SkAlphaMul(SkColorGetB(color), scale); in SkARGB32_Blitter()
|
D | SkBlitter_RGB16.cpp | 546 fColor16 = SkPackRGB16( SkAlphaMul(r, fScale) >> (8 - SK_R16_BITS), in SkRGB16_Blitter() 547 SkAlphaMul(g, fScale) >> (8 - SK_G16_BITS), in SkRGB16_Blitter() 548 SkAlphaMul(b, fScale) >> (8 - SK_B16_BITS)); in SkRGB16_Blitter() 797 int aa = SkAlphaMul(*antialias, alpha); in blitAntiH()
|
D | SkScan_Antihair.cpp | 627 blitter->blitV(L >> 8, top, 1, SkAlphaMul(alpha, R - L)); in do_scanline() 634 blitter->blitV(left, top, 1, SkAlphaMul(alpha, 256 - (L & 0xFF))); in do_scanline() 644 blitter->blitV(rite, top, 1, SkAlphaMul(alpha, R & 0xFF)); in do_scanline()
|
D | SkShader.cpp | 290 unsigned a = SkAlphaMul(SkColorGetA(color), SkAlpha255To256(rec.fPaint->getAlpha())); in ColorShaderContext()
|
D | SkSpriteBlitter_RGB16.cpp | 34 unsigned dst_scale = 255 - SkAlphaMul(sa, src_scale); in D16_S32A_Blend_Pixel_helper()
|
D | SkDraw.cpp | 2002 scale0 = SkAlphaMul(scale0, alphaScale); in shadeSpan() 2003 scale1 = SkAlphaMul(scale1, alphaScale); in shadeSpan() 2004 scale2 = SkAlphaMul(scale2, alphaScale); in shadeSpan()
|
/external/skia/src/effects/ |
D | SkTransparentShader.cpp | 82 SkAlphaMul(r, scale), in shadeSpan() 83 SkAlphaMul(g, scale), in shadeSpan() 84 SkAlphaMul(b, scale)); in shadeSpan() 97 span[i] = SkPackARGB32(SkAlphaMul(src[i], scale), 0, 0, 0); in shadeSpan()
|
D | SkArithmeticMode.cpp | 175 r = SkAlphaMul(r, scale); in xfer32() 176 g = SkAlphaMul(g, scale); in xfer32() 177 b = SkAlphaMul(b, scale); in xfer32()
|
D | SkBlurMask.cpp | 428 *dst = SkToU8(SkAlphaMul(*blur, SkAlpha255To256(*src))); in merge_src_with_blur() 458 *dst = SkToU8(SkAlphaMul(*dst, SkAlpha255To256(255 - *src))); in clamp_with_orig()
|
/external/skia/include/core/ |
D | SkDither.h | 76 dither = SkAlphaMul(dither, SkAlpha255To256(sa)); in SkDitherARGB32For565() 129 dither = SkAlphaMul(dither, SkAlpha255To256(sa)); in SkDitherARGB32To565() 146 dither = SkAlphaMul(dither, SkAlpha255To256(a)); in SkDitherARGB32To4444() 163 dither = SkAlphaMul(dither, SkAlpha255To256(a)); in SkDitherARGB32To4444()
|
D | SkColorPriv.h | 196 #define SkAlphaMul(value, alpha256) (SkMulS16(value, alpha256) >> 8) macro 203 return dst + SkAlphaMul(src - dst, scale256); in SkAlphaBlend() 554 unsigned dst_scale = SkAlpha255To256(255 - SkAlphaMul(SkGetPackedA32(src), src_scale)); in SkBlendARGB32()
|
/external/skia/tests/ |
D | SrcOverTest.cpp | 14 return alpha + SkAlphaMul(dst, SkAlpha255To256(255 - alpha)); in test_srcover0() 19 return alpha + SkAlphaMul(dst, 256 - alpha); in test_srcover1()
|
/external/skia/src/opts/ |
D | SkBlitRow_opts_mips_dsp.cpp | 245 int d = SkAlphaMul(DITHER_VALUE(x), SkAlpha255To256(a)); in S32A_D565_Opaque_Dither_mips_dsp()
|
D | SkBlitRow_opts_SSE2.cpp | 993 int d = SkAlphaMul(DITHER_VALUE(x), SkAlpha255To256(a)); in S32A_D565_Opaque_Dither_SSE2() 1148 int d = SkAlphaMul(DITHER_VALUE(x), SkAlpha255To256(a)); in S32A_D565_Opaque_Dither_SSE2()
|
D | SkBlitRow_opts_arm_neon.cpp | 1393 int d = SkAlphaMul(DITHER_VALUE(my_x), SkAlpha255To256(a)); in S32A_D565_Opaque_Dither_neon() 1549 int d = SkAlphaMul(dither, alpha); in S32A_D565_Opaque_Dither_neon()
|