Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/graphics/filters/
DFEBlend.cpp108 ByteArray* dstPixelArray = createPremultipliedImageResult(); in apply() local
109 if (!dstPixelArray) in apply()
131 dstPixelArray->set(pixelOffset + channel, result); in apply()
134 dstPixelArray->set(pixelOffset + 3, alphaR); in apply()
DFEDisplacementMap.cpp105 ByteArray* dstPixelArray = createPremultipliedImageResult(); in apply() local
106 if (!dstPixelArray) in apply()
132 dstPixelArray->set(dstIndex + channel, static_cast<unsigned char>(0)); in apply()
135 dstPixelArray->set(dstIndex + channel, pixelValue); in apply()
DFEComposite.cpp211 ByteArray* dstPixelArray = createPremultipliedImageResult(); in apply() local
212 if (!dstPixelArray) in apply()
219 in2->copyPremultipliedImage(dstPixelArray, effectBDrawingRect); in apply()
221 arithmetic(srcPixelArray.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4); in apply()
DFEMorphology.cpp112 ByteArray* dstPixelArray = createPremultipliedImageResult(); in apply() local
113 if (!dstPixelArray) in apply()
171 dstPixelArray->set(y * effectWidth + 4 * x + channel, entireExtrema); in apply()
DFEGaussianBlur.cpp77 inline void boxBlur(ByteArray* srcPixelArray, ByteArray* dstPixelArray, in boxBlur() argument
92 dstPixelArray->set(pixelByteOffset, static_cast<unsigned char>(sum / dx)); in boxBlur()
DFEConvolveMatrix.cpp279 …setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, pa… in fastSetInteriorPixels()
364 …setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, pa… in fastSetOuterPixels()
421 paintingData.dstPixelArray = resultImage; in apply()
DFEConvolveMatrix.h88 ByteArray* dstPixelArray; member