Home | History | Annotate | Download | only in core

Lines Matching refs:fRight

146     if (pts[0].fX >= clip.fRight) {  // wholly to the right
147 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse);
172 if (pts[2].fX > clip.fRight) {
173 if (chopMonoQuadAtX(pts, clip.fRight, &t)) {
175 clamp_le(tmp[1].fX, clip.fRight);
176 clamp_le(tmp[2].fX, clip.fRight);
178 this->appendVLine(clip.fRight, tmp[2].fY, tmp[4].fY, reverse);
182 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse);
343 if (pts[0].fX >= clip.fRight) { // wholly to the right
344 this->appendVLine(clip.fRight, pts[0].fY, pts[3].fY, reverse);
375 if (pts[3].fX > clip.fRight) {
377 if (chopMonoCubicAtX(pts, clip.fRight, &t)) {
380 clamp_le(tmp[1].fX, clip.fRight);
381 clamp_le(tmp[2].fX, clip.fRight);
382 clamp_le(tmp[3].fX, clip.fRight);
384 this->appendVLine(clip.fRight, tmp[3].fY, tmp[6].fY, reverse);
388 this->appendVLine(clip.fRight, pts[0].fY, pts[3].fY, reverse);