Searched defs:lastPt (Results 1 - 8 of 8) sorted by relevance
/external/chromium_org/third_party/skia/src/utils/win/ |
H A D | SkDWriteGeometrySink.cpp | 113 SkPoint lastPt; local 114 fPath->getLastPt(&lastPt); 115 D2D1_POINT_2F prevPt = { SkScalarToFloat(lastPt.fX), SkScalarToFloat(lastPt.fY) };
|
/external/skia/src/utils/win/ |
H A D | SkDWriteGeometrySink.cpp | 113 SkPoint lastPt; local 114 fPath->getLastPt(&lastPt); 115 D2D1_POINT_2F prevPt = { SkScalarToFloat(lastPt.fX), SkScalarToFloat(lastPt.fY) };
|
/external/skia/tests/ |
H A D | PathOpsExtendedTest.cpp | 152 SkPoint firstPt, lastPt; local 164 lastPt = pts[1]; 170 lastPt = pts[2]; 177 lastPt = pts[3]; 181 if (firstPtSet && lastPtSet && firstPt != lastPt) { 182 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY,
|
H A D | PathTest.cpp | 2469 SkPoint lastPt; local 2471 lastPt.set(0, 0); 2479 lastPt = lastMoveTo = pts[0]; 2484 REPORTER_ASSERT(reporter, pts[0] == lastPt); 2486 lastPt = pts[1]; 2492 REPORTER_ASSERT(reporter, pts[0] == lastPt); 2495 lastPt = pts[2]; 2500 REPORTER_ASSERT(reporter, pts[0] == lastPt); 2504 lastPt = pts[3]; 2509 lastPt [all...] |
/external/chromium_org/third_party/skia/src/core/ |
H A D | SkPath.cpp | 576 bool SkPath::getLastPt(SkPoint* lastPt) const { 581 if (lastPt) { 582 *lastPt = fPathRef->atPoint(count - 1); 586 if (lastPt) { 587 lastPt->set(0, 0); 1025 SkPoint lastPt; local 1026 SkAssertResult(path->getLastPt(&lastPt)); 1027 if (lastPt.fX != xOff[0] || lastPt.fY != yOff[0]) { 1788 SkPoint lastPt local [all...] |
/external/skia/src/core/ |
H A D | SkPath.cpp | 576 bool SkPath::getLastPt(SkPoint* lastPt) const { 581 if (lastPt) { 582 *lastPt = fPathRef->atPoint(count - 1); 586 if (lastPt) { 587 lastPt->set(0, 0); 1025 SkPoint lastPt; local 1026 SkAssertResult(path->getLastPt(&lastPt)); 1027 if (lastPt.fX != xOff[0] || lastPt.fY != yOff[0]) { 1788 SkPoint lastPt local [all...] |
/external/chromium_org/third_party/skia/src/pathops/ |
H A D | SkOpSegment.cpp | 421 const SkPoint& lastPt = fPts[SkPathOpsVerbToPoints(fVerb)]; local 439 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT == 1)) {
|
/external/skia/src/pathops/ |
H A D | SkOpSegment.cpp | 421 const SkPoint& lastPt = fPts[SkPathOpsVerbToPoints(fVerb)]; local 439 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT == 1)) {
|
Completed in 1725 milliseconds