Searched defs:topPt (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsCurve.h106 SkDPoint topPt = quad.top(startT, endT); local
107 return topPt.asSkPoint();
113 SkDPoint topPt = cubic.top(startT, endT); local
114 return topPt.asSkPoint();
H A DSkDLineIntersection.cpp338 SkDPoint topPt = { x, top }; local
339 if ((t = line.exactPoint(topPt)) >= 0) {
340 insert(t, (double) flipped, topPt);
371 if ((t = line.nearPoint(topPt, NULL)) >= 0) {
372 insert(t, (double) flipped, topPt);
H A DSkPathOpsQuad.cpp52 SkDPoint topPt = sub[0]; local
53 if (topPt.fY > sub[2].fY || (topPt.fY == sub[2].fY && topPt.fX > sub[2].fX)) {
54 topPt = sub[2];
61 if (topPt.fY > test.fY || (topPt.fY == test.fY && topPt.fX > test.fX)) {
62 topPt = test;
66 return topPt;
[all...]
H A DSkPathOpsCubic.cpp373 SkDPoint topPt = sub[0]; local
374 if (topPt.fY > sub[3].fY || (topPt.fY == sub[3].fY && topPt.fX > sub[3].fX)) {
375 topPt = sub[3];
383 if (topPt.fY > mid.fY || (topPt.fY == mid.fY && topPt.fX > mid.fX)) {
384 topPt = mid;
388 return topPt;
[all...]
H A DSkOpSegment.cpp121 SkPoint topPt = {SK_ScalarMax, SK_ScalarMax}; local
136 if (topPt.fY > xy.fY || (topPt.fY == xy.fY && topPt.fX > xy.fX)) {
137 topPt = xy;
144 if (topPt.fY > curveTop.fY || (topPt.fY == curveTop.fY
145 && topPt.fX > curveTop.fX)) {
146 topPt = curveTop;
157 return topPt;
[all...]
/external/skia/src/pathops/
H A DSkPathOpsCurve.h106 SkDPoint topPt = quad.top(startT, endT); local
107 return topPt.asSkPoint();
113 SkDPoint topPt = cubic.top(startT, endT); local
114 return topPt.asSkPoint();
H A DSkDLineIntersection.cpp335 SkDPoint topPt = { x, top }; local
336 if ((t = line.exactPoint(topPt)) >= 0) {
337 insert(t, (double) flipped, topPt);
368 if ((t = line.nearPoint(topPt, NULL)) >= 0) {
369 insert(t, (double) flipped, topPt);
H A DSkPathOpsQuad.cpp52 SkDPoint topPt = sub[0]; local
53 if (topPt.fY > sub[2].fY || (topPt.fY == sub[2].fY && topPt.fX > sub[2].fX)) {
54 topPt = sub[2];
61 if (topPt.fY > test.fY || (topPt.fY == test.fY && topPt.fX > test.fX)) {
62 topPt = test;
66 return topPt;
[all...]
H A DSkOpSegment.cpp121 SkPoint topPt = {SK_ScalarMax, SK_ScalarMax}; local
136 if (topPt.fY > xy.fY || (topPt.fY == xy.fY && topPt.fX > xy.fX)) {
137 topPt = xy;
144 if (topPt.fY > curveTop.fY || (topPt.fY == curveTop.fY
145 && topPt.fX > curveTop.fX)) {
146 topPt = curveTop;
157 return topPt;
[all...]
H A DSkPathOpsCubic.cpp373 SkDPoint topPt = sub[0]; local
374 if (topPt.fY > sub[3].fY || (topPt.fY == sub[3].fY && topPt.fX > sub[3].fX)) {
375 topPt = sub[3];
383 if (topPt.fY > mid.fY || (topPt.fY == mid.fY && topPt.fX > mid.fX)) {
384 topPt = mid;
388 return topPt;
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticUtilities.cpp52 _Point topPt = sub[0]; local
53 if (topPt.y > sub[2].y || (topPt.y == sub[2].y && topPt.x > sub[2].x)) {
54 topPt = sub[2];
62 if (topPt.y > test.y || (topPt.y == test.y && topPt.x > test.x)) {
63 topPt = test;
67 return topPt;
[all...]
H A DCubicUtilities.cpp383 _Point topPt = sub[0]; local
384 if (topPt.y > sub[3].y || (topPt.y == sub[3].y && topPt.x > sub[3].x)) {
385 topPt = sub[3];
394 if (topPt.y > mid.y || (topPt.y == mid.y && topPt.x > mid.x)) {
395 topPt = mid;
399 return topPt;
[all...]
H A DSimplify.cpp491 _Point topPt = top(quad, startT, endT); local
492 return topPt.asSkPoint();
497 _Point topPt = top(cubic, startT, endT); local
498 return topPt.asSkPoint();
1351 SkPoint topPt = {SK_ScalarMax, SK_ScalarMax};
1370 if (topPt.fY > xy.fY || (topPt.fY == xy.fY && topPt.fX > xy.fX)) {
1371 topPt = xy;
1378 if (topPt
[all...]
/external/skia/experimental/Intersection/
H A DQuadraticUtilities.cpp52 _Point topPt = sub[0]; local
53 if (topPt.y > sub[2].y || (topPt.y == sub[2].y && topPt.x > sub[2].x)) {
54 topPt = sub[2];
62 if (topPt.y > test.y || (topPt.y == test.y && topPt.x > test.x)) {
63 topPt = test;
67 return topPt;
[all...]
H A DCubicUtilities.cpp383 _Point topPt = sub[0]; local
384 if (topPt.y > sub[3].y || (topPt.y == sub[3].y && topPt.x > sub[3].x)) {
385 topPt = sub[3];
394 if (topPt.y > mid.y || (topPt.y == mid.y && topPt.x > mid.x)) {
395 topPt = mid;
399 return topPt;
[all...]
H A DSimplify.cpp491 _Point topPt = top(quad, startT, endT); local
492 return topPt.asSkPoint();
497 _Point topPt = top(cubic, startT, endT); local
498 return topPt.asSkPoint();
1351 SkPoint topPt = {SK_ScalarMax, SK_ScalarMax};
1370 if (topPt.fY > xy.fY || (topPt.fY == xy.fY && topPt.fX > xy.fX)) {
1371 topPt = xy;
1378 if (topPt
[all...]

Completed in 640 milliseconds