Home | History | Annotate | Download | only in core

Lines Matching refs:fX

79     return chopMonoQuadAt(pts[0].fX, pts[1].fX, pts[2].fX, x, t);
140 if (pts[0].fX > pts[2].fX) {
144 SkASSERT(pts[0].fX <= pts[1].fX);
145 SkASSERT(pts[1].fX <= pts[2].fX);
149 if (pts[2].fX <= clip.fLeft) { // wholly to the left
153 if (pts[0].fX >= clip.fRight) { // wholly to the right
162 if (pts[0].fX < clip.fLeft) {
166 clamp_ge(tmp[2].fX, clip.fLeft);
167 clamp_ge(tmp[3].fX, clip.fLeft);
179 if (pts[2].fX > clip.fRight) {
182 clamp_le(tmp[1].fX, clip.fRight);
183 clamp_le(tmp[2].fX, clip.fRight);
271 return chopMonoCubicAt(pts[0].fX, pts[1].fX, pts[2].fX, pts[3].fX, x, t);
335 if (pts[0].fX > pts[3].fX) {
343 if (pts[3].fX <= clip.fLeft) { // wholly to the left
347 if (pts[0].fX >= clip.fRight) { // wholly to the right
356 if (pts[0].fX < clip.fLeft) {
360 clamp_ge(tmp[3].fX, clip.fLeft);
361 clamp_ge(tmp[4].fX, clip.fLeft);
362 clamp_ge(tmp[5].fX, clip.fLeft);
375 if (pts[3].fX > clip.fRight) {
378 clamp_le(tmp[1].fX, clip.fRight);
379 clamp_le(tmp[2].fX, clip.fRight);
380 clamp_le(tmp[3].fX, clip.fRight);
519 assert_monotonic(&pts[0].fX, count);