Home | History | Annotate | Download | only in filters

Lines Matching defs:clipRight

240 ALWAYS_INLINE void FEConvolveMatrix::fastSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom)
245 int kernelIncrease = clipRight * 4;
254 for (int x = clipRight + 1; x > 0; --x) {
373 ALWAYS_INLINE void FEConvolveMatrix::setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom)
378 fastSetInteriorPixels<true>(paintingData, clipRight, clipBottom);
380 fastSetInteriorPixels<false>(paintingData, clipRight, clipBottom);
427 int clipRight = paintSize.width() - m_kernelSize.width();
430 if (clipRight >= 0 && clipBottom >= 0) {
431 setInteriorPixels(paintingData, clipRight, clipBottom);
433 clipRight += m_targetOffset.x() + 1;
441 if (clipRight < paintSize.width())
442 setOuterPixels(paintingData, clipRight, m_targetOffset.y(), paintSize.width(), clipBottom);