Home | History | Annotate | Download | only in filters

Lines Matching refs:clipRight

262 ALWAYS_INLINE void FEConvolveMatrix::fastSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
266 int kernelIncrease = clipRight * 4;
275 pixel += (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
276 int startKernelPixel = (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
279 for (int x = clipRight + 1; x > 0; --x) {
402 ALWAYS_INLINE void FEConvolveMatrix::setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
407 fastSetInteriorPixels<true>(paintingData, clipRight, clipBottom, yStart, yEnd);
409 fastSetInteriorPixels<false>(paintingData, clipRight, clipBottom, yStart, yEnd);
424 param->filter->setInteriorPixels(*param->paintingData, param->clipRight, param->clipBottom, param->yStart, param->yEnd);
456 int clipRight = paintSize.width() - m_kernelSize.width();
459 if (clipRight >= 0 && clipBottom >= 0) {
476 param.clipRight = clipRight;
486 setInteriorPixels(paintingData, clipRight, clipBottom, 0, clipBottom);
489 clipRight += m_targetOffset.x() + 1;
497 if (clipRight < paintSize.width())
498 setOuterPixels(paintingData, clipRight, m_targetOffset.y(), paintSize.width(), clipBottom);