Home
last modified time | relevance | path

Searched refs:effectWidth (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
DFEMorphology.cpp127 int effectWidth = effectDrawingRect.width() * 4; in apply() local
141 … unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + 4 * j + channel); in apply()
143 unsigned char pixel = srcPixelArray->get(i * effectWidth + 4 * j + channel); in apply()
154 … unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + endX * 4 + channel); in apply()
156 unsigned char pixel = srcPixelArray->get(i * effectWidth + endX * 4 + channel); in apply()
171 dstPixelArray->set(y * effectWidth + 4 * x + channel, entireExtrema); in apply()
DFEGaussianBlur.cpp78 …unsigned dx, int dxLeft, int dxRight, int stride, int strideLine, int effectWidth, int effectHeigh… in boxBlur() argument
85 int maxKernelSize = std::min(dxRight, effectWidth); in boxBlur()
90 for (int x = 0; x < effectWidth; ++x) { in boxBlur()
95 if (x + dxRight < effectWidth) in boxBlur()