Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEMorphology.cpp112 Uint8ClampedArray* dstPixelArray = paintingData->dstPixelArray; in platformApplyGeneric() local
160 dstPixelArray->set(y * effectWidth + 4 * x + clrChannel, entireExtrema); in platformApplyGeneric()
205 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); in applySoftware() local
206 if (!dstPixelArray) in applySoftware()
211 dstPixelArray->zeroFill(); in applySoftware()
224 paintingData.dstPixelArray = dstPixelArray; in applySoftware()
DFEBlend.h47 …Generic(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
49 …plyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
DFEBlend.cpp154 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); in applySoftware() local
155 if (!dstPixelArray) in applySoftware()
169 …platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArra… in applySoftware()
179 reinterpret_cast<uint32_t*>(dstPixelArray->data())[0] = sourceBAndDest[0]; in applySoftware()
182 …platformApplyGeneric(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelA… in applySoftware()
DFEDisplacementMap.cpp115 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); in applySoftware() local
116 if (!dstPixelArray) in applySoftware()
144 dstPixelArray->set(dstIndex + channel, static_cast<unsigned char>(0)); in applySoftware()
147 dstPixelArray->set(dstIndex + channel, pixelValue); in applySoftware()
DFEGaussianBlur.cpp83 inline void boxBlur(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray, in boxBlur() argument
98 dstPixelArray->set(pixelByteOffset, static_cast<unsigned char>(sum / dx)); in boxBlur()
159 …ers->filter->platformApplyGeneric(parameters->srcPixelArray.get(), parameters->dstPixelArray.get(), in platformApplyWorker()
191 params.dstPixelArray = tmpPixelArray; in platformApply()
194 params.dstPixelArray = Uint8ClampedArray::createUninitialized(blockSize); in platformApply()
DFEComposite.cpp262 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult(); in applySoftware() local
263 if (!dstPixelArray) in applySoftware()
270 in2->copyPremultipliedImage(dstPixelArray, effectBDrawingRect); in applySoftware()
272 platformArithmeticSoftware(srcPixelArray.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4); in applySoftware()
DFEMorphology.h58 Uint8ClampedArray* dstPixelArray; member
DFEGaussianBlur.h59 RefPtr<Uint8ClampedArray> dstPixelArray; member
DFEConvolveMatrix.cpp296 …setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, pa… in fastSetInteriorPixels()
381 …setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, pa… in fastSetOuterPixels()
442 paintingData.dstPixelArray = resultImage; in applySoftware()
DFEConvolveMatrix.h82 Uint8ClampedArray* dstPixelArray; member
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
DFECustomFilter.cpp127 Uint8ClampedArray* dstPixelArray = createUnmultipliedImageResult(); in clearShaderResult() local
128 if (!dstPixelArray) in clearShaderResult()
134 in->copyUnmultipliedImage(dstPixelArray, effectDrawingRect); in clearShaderResult()
172 …Uint8ClampedArray* dstPixelArray = m_customFilterRenderer->premultipliedAlpha() ? createPremultipl… in applyShader() local
173 if (!dstPixelArray) in applyShader()
192 …tic_cast<size_t>(newContextSize.width() * newContextSize.height() * 4) == dstPixelArray->length()); in applyShader()
193 …newContextSize.width(), newContextSize.height(), GL_RGBA, GL_UNSIGNED_BYTE, dstPixelArray->data()); in applyShader()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
DFEBlendNEON.h109 …plyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray, in platformApplyNEON() argument
114 uint8_t* destinationPixel = reinterpret_cast<uint8_t*>(dstPixelArray); in platformApplyNEON()
159 dstPixelArray[colorOffset + 3] = alphaR1; in platformApplyNEON()
160 dstPixelArray[colorOffset + 7] = alphaR2; in platformApplyNEON()
DFEGaussianBlurNEON.h37 inline void boxBlurNEON(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray, in boxBlurNEON() argument
41 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(dstPixelArray->data()); in boxBlurNEON()