Searched refs:dstPixelArray (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFEBlend.h48 void platformApplyGeneric(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
50 void platformApplyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
H A DFEMorphology.cpp110 Uint8ClampedArray* dstPixelArray = paintingData->dstPixelArray; local
158 dstPixelArray->set(y * effectWidth + 4 * x + clrChannel, entireExtrema);
203 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); local
204 if (!dstPixelArray)
209 dstPixelArray->zeroFill();
222 paintingData.dstPixelArray = dstPixelArray;
H A DFEDisplacementMap.cpp115 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); local
116 if (!dstPixelArray)
144 dstPixelArray->set(dstIndex + channel, static_cast<unsigned char>(0));
147 dstPixelArray->set(dstIndex + channel, pixelValue);
H A DFEMorphology.h58 Uint8ClampedArray* dstPixelArray; member in struct:WebCore::FEMorphology::PaintingData
H A DFECustomFilter.cpp131 Uint8ClampedArray* dstPixelArray = createUnmultipliedImageResult(); local
132 if (!dstPixelArray)
138 in->copyUnmultipliedImage(dstPixelArray, effectDrawingRect);
183 Uint8ClampedArray* dstPixelArray = m_customFilterRenderer->premultipliedAlpha() ? createPremultipliedImageResult() : createUnmultipliedImageResult(); local
184 if (!dstPixelArray)
203 ASSERT(static_cast<size_t>(newContextSize.width() * newContextSize.height() * 4) == dstPixelArray->length());
204 m_context->readPixels(0, 0, newContextSize.width(), newContextSize.height(), GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, dstPixelArray->data());
H A DFEBlend.cpp147 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); local
148 if (!dstPixelArray)
162 platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
171 reinterpret_cast<uint32_t*>(dstPixelArray->data())[0] = sourceBAndDest[0];
174 platformApplyGeneric(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
H A DFEGaussianBlur.h61 RefPtr<Uint8ClampedArray> dstPixelArray; member in struct:WebCore::FEGaussianBlur::PlatformApplyParameters
H A DFEGaussianBlur.cpp83 inline void boxBlur(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray, argument
98 dstPixelArray->set(pixelByteOffset, static_cast<unsigned char>(sum / dx));
159 parameters->filter->platformApplyGeneric(parameters->srcPixelArray.get(), parameters->dstPixelArray.get(),
191 params.dstPixelArray = tmpPixelArray;
194 params.dstPixelArray = Uint8ClampedArray::createUninitialized(blockSize);
H A DFEComposite.cpp258 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); local
259 if (!dstPixelArray)
266 in2->copyPremultipliedImage(dstPixelArray, effectBDrawingRect);
268 platformArithmeticSoftware(srcPixelArray.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4);
H A DFEConvolveMatrix.h83 Uint8ClampedArray* dstPixelArray; member in struct:WebCore::FEConvolveMatrix::PaintingData
H A DFEConvolveMatrix.cpp296 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
381 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
442 paintingData.dstPixelArray = resultImage;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cpu/arm/filters/
H A DFEGaussianBlurNEON.h37 inline void boxBlurNEON(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray, argument
41 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(dstPixelArray->data());
H A DFEBlendNEON.h108 void FEBlend::platformApplyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray, argument
113 uint8_t* destinationPixel = reinterpret_cast<uint8_t*>(dstPixelArray);
158 dstPixelArray[colorOffset + 3] = alphaR1;
159 dstPixelArray[colorOffset + 7] = alphaR2;

Completed in 138 milliseconds