Searched refs:sourcePixelB (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFEBlend.cpp97 static void platformApply(unsigned char* sourcePixelA, unsigned char* sourcePixelB, argument
103 unsigned char alphaB = sourcePixelB[3];
104 destinationPixel[0] = BlendFunction(sourcePixelA[0], sourcePixelB[0], alphaA, alphaB);
105 destinationPixel[1] = BlendFunction(sourcePixelA[1], sourcePixelB[1], alphaA, alphaB);
106 destinationPixel[2] = BlendFunction(sourcePixelA[2], sourcePixelB[2], alphaA, alphaB);
109 sourcePixelB += 4;
114 void FEBlend::platformApplyGeneric(unsigned char* sourcePixelA, unsigned char* sourcePixelB, argument
119 platformApply<feBlendNormal>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength);
122 platformApply<feBlendMultiply>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength);
125 platformApply<feBlendScreen>(sourcePixelA, sourcePixelB, destinationPixe
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/opencl/
H A DOpenCLFEMerge.cpp53 float4 sourcePixelB = read_imagef(sourceB, sampler, sourceCoordB);
56 destinationPixel = sourcePixelB + destinationPixel * (1 - sourcePixelB.w);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cpu/arm/filters/
H A DFEBlendNEON.h112 uint8_t* sourcePixelB = reinterpret_cast<uint8_t*>(srcPixelArrayB); local
126 uint16x8_t doubblePixelB = vmovl_u8(vld1_u8(sourcePixelB + colorOffset));

Completed in 49 milliseconds