Home | History | Annotate | Download | only in core

Lines Matching refs:fRight

153     if (pts[0].fX >= clip.fRight) {  // wholly to the right
154 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse);
179 if (pts[2].fX > clip.fRight) {
180 if (chopMonoQuadAtX(pts, clip.fRight, &t)) {
182 clamp_le(tmp[1].fX, clip.fRight);
183 clamp_le(tmp[2].fX, clip.fRight);
185 this->appendVLine(clip.fRight, tmp[2].fY, tmp[4].fY, reverse);
189 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse);
347 if (pts[0].fX >= clip.fRight) { // wholly to the right
348 this->appendVLine(clip.fRight, pts[0].fY, pts[3].fY, reverse);
375 if (pts[3].fX > clip.fRight) {
376 if (chopMonoCubicAtX(pts, clip.fRight, &t)) {
378 clamp_le(tmp[1].fX, clip.fRight);
379 clamp_le(tmp[2].fX, clip.fRight);
380 clamp_le(tmp[3].fX, clip.fRight);
382 this->appendVLine(clip.fRight, tmp[3].fY, tmp[6].fY, reverse);
386 this->appendVLine(clip.fRight, pts[0].fY, pts[3].fY, reverse);