Home
last modified time | relevance | path

Searched refs:srcPixelArrayB (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
DFEBlend.cpp116 RefPtr<ByteArray> srcPixelArrayB = in2->asPremultipliedImage(effectBDrawingRect); in apply() local
122 ASSERT(pixelArrayLength == srcPixelArrayB->length()); in apply()
125 unsigned char alphaB = srcPixelArrayB->get(pixelOffset + 3); in apply()
128 unsigned char colorB = srcPixelArrayB->get(pixelOffset + channel); in apply()
DFEDisplacementMap.cpp113 RefPtr<ByteArray> srcPixelArrayB = in2->asUnmultipliedImage(effectBDrawingRect); in apply() local
115 ASSERT(srcPixelArrayA->length() == srcPixelArrayB->length()); in apply()
128 …int srcX = x + static_cast<int>(scaleX * srcPixelArrayB->get(dstIndex + m_xChannelSelector - 1) + … in apply()
129 …int srcY = y + static_cast<int>(scaleY * srcPixelArrayB->get(dstIndex + m_yChannelSelector - 1) + … in apply()
DFEComposite.cpp153 inline void arithmetic(ByteArray* srcPixelArrayA, ByteArray* srcPixelArrayB, in arithmetic() argument
157 ASSERT(pixelArrayLength == static_cast<int>(srcPixelArrayB->length())); in arithmetic()
159 unsigned char* destination = srcPixelArrayB->data(); in arithmetic()