OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:srcPixelArray
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/filters/
FEGaussianBlur.cpp
77
inline void boxBlur(ByteArray*
srcPixelArray
, ByteArray* dstPixelArray,
87
sum +=
srcPixelArray
->get(line + i * stride + channel);
94
sum -=
srcPixelArray
->get(pixelByteOffset - dxLeft * stride);
96
sum +=
srcPixelArray
->get(pixelByteOffset + dxRight * stride);
176
ByteArray*
srcPixelArray
= createPremultipliedImageResult();
177
if (!
srcPixelArray
)
183
in->copyPremultipliedImage(
srcPixelArray
, effectDrawingRect);
204
boxBlur(
srcPixelArray
, tmpPixelArray, kernelSizeX, dxLeft, dxRight, 4, stride, paintSize.width(), paintSize.height(), isAlphaImage());
207
tmpPixelArray =
srcPixelArray
;
208
srcPixelArray
= auxPixelArray
[
all
...]
FEConvolveMatrix.cpp
266
totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(kernelPixel++));
267
totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(kernelPixel++));
268
totals[2] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(kernelPixel++));
270
totals[3] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(kernelPixel));
279
setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.
srcPixelArray
);
349
totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(pixelIndex));
350
totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(pixelIndex + 1));
351
totals[2] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(pixelIndex + 2));
354
totals[3] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.
srcPixelArray
->get(pixelIndex + 3));
364
setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.
srcPixelArray
);
[
all
...]
FEMorphology.cpp
125
RefPtr<ByteArray>
srcPixelArray
= in->asPremultipliedImage(effectDrawingRect);
141
unsigned char columnExtrema =
srcPixelArray
->get(startY * effectWidth + 4 * j + channel);
143
unsigned char pixel =
srcPixelArray
->get(i * effectWidth + 4 * j + channel);
154
unsigned char columnExtrema =
srcPixelArray
->get(startY * effectWidth + endX * 4 + channel);
156
unsigned char pixel =
srcPixelArray
->get(i * effectWidth + endX * 4 + channel);
FEConvolveMatrix.h
87
ByteArray*
srcPixelArray
;
FEComposite.cpp
216
RefPtr<ByteArray>
srcPixelArray
= in->asPremultipliedImage(effectADrawingRect);
221
arithmetic(
srcPixelArray
.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4);
FELighting.cpp
350
ByteArray*
srcPixelArray
= createUnmultipliedImageResult();
351
if (!
srcPixelArray
)
357
in->copyUnmultipliedImage(
srcPixelArray
, effectDrawingRect);
365
drawLighting(
srcPixelArray
, absolutePaintSize.width(), absolutePaintSize.height());
/external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMasker.cpp
163
RefPtr<ByteArray>
srcPixelArray
= maskerData->maskImage->getUnmultipliedImageData(maskImageRect);
165
unsigned pixelArrayLength =
srcPixelArray
->length();
167
unsigned char a =
srcPixelArray
->get(pixelOffset + 3);
170
unsigned char r =
srcPixelArray
->get(pixelOffset);
171
unsigned char g =
srcPixelArray
->get(pixelOffset + 1);
172
unsigned char b =
srcPixelArray
->get(pixelOffset + 2);
175
srcPixelArray
->set(pixelOffset + 3, luma);
178
maskerData->maskImage->putUnmultipliedImageData(
srcPixelArray
.get(), maskImageRect.size(), maskImageRect, IntPoint());
Completed in 197 milliseconds