HomeSort by relevance Sort by last modified time
    Searched refs:lastPt (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteGeometrySink.cpp 113 SkPoint lastPt;
114 fPath->getLastPt(&lastPt);
115 D2D1_POINT_2F prevPt = { SkScalarToFloat(lastPt.fX), SkScalarToFloat(lastPt.fY) };
  /external/skia/src/utils/win/
SkDWriteGeometrySink.cpp 113 SkPoint lastPt;
114 fPath->getLastPt(&lastPt);
115 D2D1_POINT_2F prevPt = { SkScalarToFloat(lastPt.fX), SkScalarToFloat(lastPt.fY) };
  /external/skia/tests/
PathOpsExtendedTest.cpp 152 SkPoint firstPt, lastPt;
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,
PathTest.cpp     [all...]
  /external/chromium_org/third_party/skia/src/core/
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);
    [all...]
  /external/skia/src/core/
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);
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPath.h 748 @param lastPt The last point on the path is returned here
750 bool getLastPt(SkPoint* lastPt) const;
    [all...]
  /external/skia/include/core/
SkPath.h 748 @param lastPt The last point on the path is returned here
750 bool getLastPt(SkPoint* lastPt) const;
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpSegment.cpp 421 const SkPoint& lastPt = fPts[SkPathOpsVerbToPoints(fVerb)];
439 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT == 1)) {
    [all...]
  /external/skia/src/pathops/
SkOpSegment.cpp 421 const SkPoint& lastPt = fPts[SkPathOpsVerbToPoints(fVerb)];
439 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT == 1)) {
    [all...]

Completed in 191 milliseconds