Lines Matching refs:fRight
170 if (pts[0].fX >= clip.fRight) { // wholly to the right in clipMonoQuad()
172 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse); in clipMonoQuad()
200 if (pts[2].fX > clip.fRight) { in clipMonoQuad()
201 if (chopMonoQuadAtX(pts, clip.fRight, &t)) { in clipMonoQuad()
204 clamp_le(tmp[1].fX, clip.fRight); in clipMonoQuad()
205 tmp[2].fX = clip.fRight; in clipMonoQuad()
208 this->appendVLine(clip.fRight, tmp[2].fY, tmp[4].fY, reverse); in clipMonoQuad()
212 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse); in clipMonoQuad()
360 if (pts[0].fX >= clip.fRight) { // wholly to the right in clipMonoCubic()
362 this->appendVLine(clip.fRight, pts[0].fY, pts[3].fY, reverse); in clipMonoCubic()
385 if (pts[3].fX > clip.fRight) { in clipMonoCubic()
387 chop_mono_cubic_at_x(pts, clip.fRight, tmp); in clipMonoCubic()
388 tmp[3].fX = clip.fRight; in clipMonoCubic()
389 clamp_le(tmp[2].fX, clip.fRight); in clipMonoCubic()
392 this->appendVLine(clip.fRight, tmp[3].fY, tmp[6].fY, reverse); in clipMonoCubic()
412 return r.fLeft < -limit || r.fTop < -limit || r.fRight > limit || r.fBottom > limit; in too_big_for_reliable_float_math()