Home | History | Annotate | Download | only in filters

Lines Matching refs:clipRight

258 ALWAYS_INLINE void FEConvolveMatrix::fastSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
262 int kernelIncrease = clipRight * 4;
271 pixel += (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
272 int startKernelPixel = (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
275 for (int x = clipRight + 1; x > 0; --x) {
398 ALWAYS_INLINE void FEConvolveMatrix::setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
403 fastSetInteriorPixels<true>(paintingData, clipRight, clipBottom, yStart, yEnd);
405 fastSetInteriorPixels<false>(paintingData, clipRight, clipBottom, yStart, yEnd);
420 param->filter->setInteriorPixels(*param->paintingData, param->clipRight, param->clipBottom, param->yStart, param->yEnd);
452 int clipRight = paintSize.width() - m_kernelSize.width();
455 if (clipRight >= 0 && clipBottom >= 0) {
472 param.clipRight = clipRight;
482 setInteriorPixels(paintingData, clipRight, clipBottom, 0, clipBottom);
485 clipRight += m_targetOffset.x() + 1;
493 if (clipRight < paintSize.width())
494 setOuterPixels(paintingData, clipRight, m_targetOffset.y(), paintSize.width(), clipBottom);