Searched refs:clipRect (Results 1 – 2 of 2) sorted by relevance
98 if (rect != clipRect) { in setClipRect()101 clipRect = rect; in setClipRect()115 QRect clipRect; variable
575 const QRectF &clipRect, in clipSegmentToRect() argument579 int type0 = clipPointType(x0, y0, clipRect); in clipSegmentToRect()580 int type1 = clipPointType(x1, y1, clipRect); in clipSegmentToRect()595 x = x0 + (x1 - x0) * (clipRect.bottom() - y0) / (y1 - y0); in clipSegmentToRect()596 y = clipRect.bottom() - 0.1; in clipSegmentToRect()598 x = x0 + (x1 - x0) * (clipRect.top() - y0) / (y1 - y0); in clipSegmentToRect()599 y = clipRect.top() + 0.1; in clipSegmentToRect()601 y = y0 + (y1 - y0) * (clipRect.right() - x0) / (x1 - x0); in clipSegmentToRect()602 x = clipRect.right() - 0.1; in clipSegmentToRect()604 y = y0 + (y1 - y0) * (clipRect.left() - x0) / (x1 - x0); in clipSegmentToRect()[all …]