Searched refs:sourcePixelA (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
102 unsigned char alphaA = sourcePixelA[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);
108 sourcePixelA += 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, sourcePixel
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/opencl/
H A DOpenCLFEMerge.cpp52 float4 sourcePixelA = read_imagef(sourceA, sampler, sourceCoordA);
55 destinationPixel = sourcePixelA + destinationPixel * (1 - sourcePixelA.w);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cpu/arm/filters/
H A DFEBlendNEON.h111 uint8_t* sourcePixelA = reinterpret_cast<uint8_t*>(srcPixelArrayA); local
125 uint16x8_t doubblePixelA = vmovl_u8(vld1_u8(sourcePixelA + colorOffset));

Completed in 112 milliseconds