Lines Matching refs:fRight
170 if (pts[0].fX >= clip.fRight) { // wholly to the right
172 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse);
200 if (pts[2].fX > clip.fRight) {
201 if (chopMonoQuadAtX(pts, clip.fRight, &t)) {
204 clamp_le(tmp[1].fX, clip.fRight);
205 tmp[2].fX = clip.fRight;
208 this->appendVLine(clip.fRight, tmp[2].fY, tmp[4].fY, reverse);
212 pts[1].fX = std::min(pts[1].fX, clip.fRight);
213 pts[2].fX = std::min(pts[2].fX, clip.fRight);
362 if (pts[0].fX >= clip.fRight) { // wholly to the right
364 this->appendVLine(clip.fRight, pts[0].fY, pts[3].fY, reverse);
387 if (pts[3].fX > clip.fRight) {
389 chop_mono_cubic_at_x(pts, clip.fRight, tmp);
390 tmp[3].fX = clip.fRight;
391 clamp_le(tmp[2].fX, clip.fRight);
394 this->appendVLine(clip.fRight, tmp[3].fY, tmp[6].fY, reverse);
414 return r.fLeft < -limit || r.fTop < -limit || r.fRight > limit || r.fBottom > limit;