HomeSort by relevance Sort by last modified time
    Searched refs:pixelByteOffset (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 131 for (unsigned pixelByteOffset = 0; pixelByteOffset < pixelArrayLength; pixelByteOffset += 4) {
132 double red = pixelArray->get(pixelByteOffset);
133 double green = pixelArray->get(pixelByteOffset + 1);
134 double blue = pixelArray->get(pixelByteOffset + 2);
135 double alpha = pixelArray->get(pixelByteOffset + 3);
152 pixelArray->set(pixelByteOffset, red);
153 pixelArray->set(pixelByteOffset + 1, green);
154 pixelArray->set(pixelByteOffset + 2, blue)
    [all...]
FEGaussianBlur.cpp 91 int pixelByteOffset = line + x * stride + channel;
92 dstPixelArray->set(pixelByteOffset, static_cast<unsigned char>(sum / dx));
94 sum -= srcPixelArray->get(pixelByteOffset - dxLeft * stride);
96 sum += srcPixelArray->get(pixelByteOffset + dxRight * stride);

Completed in 50 milliseconds