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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEBlend.h 48 void platformApplyGeneric(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
50 void platformApplyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
FEMorphology.h 58 Uint8ClampedArray* dstPixelArray;
FEMorphology.cpp 119 Uint8ClampedArray* dstPixelArray = paintingData->dstPixelArray;
167 dstPixelArray->set(y * effectWidth + 4 * x + clrChannel, entireExtrema);
212 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult();
213 if (!dstPixelArray)
218 dstPixelArray->zeroFill();
231 paintingData.dstPixelArray = dstPixelArray;
FEBlend.cpp 159 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult();
160 if (!dstPixelArray)
174 platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
183 reinterpret_cast<uint32_t*>(dstPixelArray->data())[0] = sourceBAndDest[0];
186 platformApplyGeneric(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
FEDisplacementMap.cpp 120 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult();
121 if (!dstPixelArray)
149 dstPixelArray->set(dstIndex + channel, static_cast<unsigned char>(0));
152 dstPixelArray->set(dstIndex + channel, pixelValue);
FEGaussianBlur.h 59 RefPtr<Uint8ClampedArray> dstPixelArray;
FEConvolveMatrix.h 82 Uint8ClampedArray* dstPixelArray;
FEGaussianBlur.cpp 86 inline void boxBlur(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray,
101 dstPixelArray->set(pixelByteOffset, static_cast<unsigned char>(sum / dx));
162 parameters->filter->platformApplyGeneric(parameters->srcPixelArray.get(), parameters->dstPixelArray.get(),
194 params.dstPixelArray = tmpPixelArray;
197 params.dstPixelArray = Uint8ClampedArray::createUninitialized(blockSize);
FEComposite.cpp 314 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult();
315 if (!dstPixelArray)
322 in2->copyPremultipliedImage(dstPixelArray, effectBDrawingRect);
324 platformArithmeticSoftware(srcPixelArray.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4);
FEConvolveMatrix.cpp 300 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
385 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
446 paintingData.dstPixelArray = resultImage;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cpu/arm/filters/
FEGaussianBlurNEON.h 37 inline void boxBlurNEON(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray,
41 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(dstPixelArray->data());
FEBlendNEON.h 109 void FEBlend::platformApplyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
114 uint8_t* destinationPixel = reinterpret_cast<uint8_t*>(dstPixelArray);
159 dstPixelArray[colorOffset + 3] = alphaR1;
160 dstPixelArray[colorOffset + 7] = alphaR2;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
FECustomFilter.cpp 130 Uint8ClampedArray* dstPixelArray = createUnmultipliedImageResult();
131 if (!dstPixelArray)
137 in->copyUnmultipliedImage(dstPixelArray, effectDrawingRect);
175 Uint8ClampedArray* dstPixelArray = m_customFilterRenderer->premultipliedAlpha() ? createPremultipliedImageResult() : createUnmultipliedImageResult();
176 if (!dstPixelArray)
195 ASSERT(static_cast<size_t>(newContextSize.width() * newContextSize.height() * 4) == dstPixelArray->length());
196 m_context->readPixels(0, 0, newContextSize.width(), newContextSize.height(), GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, dstPixelArray->data());

Completed in 213 milliseconds