HomeSort by relevance Sort by last modified time
    Searched refs:destinationPixel (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEBlend.cpp 105 unsigned char* destinationPixel, unsigned pixelArrayLength)
111 destinationPixel[0] = BlendFunction(sourcePixelA[0], sourcePixelB[0], alphaA, alphaB);
112 destinationPixel[1] = BlendFunction(sourcePixelA[1], sourcePixelB[1], alphaA, alphaB);
113 destinationPixel[2] = BlendFunction(sourcePixelA[2], sourcePixelB[2], alphaA, alphaB);
114 destinationPixel[3] = 255 - fastDivideBy255((255 - alphaA) * (255 - alphaB));
117 destinationPixel += 4;
122 unsigned char* destinationPixel, unsigned pixelArrayLength)
126 platformApply<feBlendNormal>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength);
129 platformApply<feBlendMultiply>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength);
132 platformApply<feBlendScreen>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength)
    [all...]
FilterEffect.cpp 355 unsigned char *destinationPixel = destination->data() + ((yDest * rect.width()) + xDest) * 4;
359 memcpy(destinationPixel, sourcePixel, size);
360 destinationPixel += destinationScanline;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FECompositeArithmeticNEON.h 48 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(destination);
49 uint32_t* destinationEndPixel = destinationPixel + (pixelArrayLength >> 2);
51 while (destinationPixel < destinationEndPixel) {
56 temporary1 = vset_lane_u32(*destinationPixel, temporary1, 0);
70 *destinationPixel++ = vget_lane_u32(vreinterpret_u32_u8(temporary4), 0);
FEGaussianBlurNEON.h 41 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(dstPixelArray->data());
61 storeFloatAsRGBA8(result, destinationPixel + pixelOffset);
FEBlendNEON.h 114 uint8_t* destinationPixel = reinterpret_cast<uint8_t*>(dstPixelArray);
154 vst1_u8(destinationPixel + colorOffset, vmovn_u16(result));

Completed in 3474 milliseconds