HomeSort by relevance Sort by last modified time
    Searched refs:lastPt (Results 1 - 20 of 20) 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/chromium_org/third_party/skia/experimental/StrokePathRenderer/
GrStrokePathRenderer.cpp 126 SkPoint *firstPt = verts, *lastPt = NULL;
137 isOpen = (lastPt == NULL);
151 if (NULL == lastPt) {
165 const SkPoint* pt0 = &(lastPt[offset]);
240 lastPt = verts;
278 lastPt [0] += dir;
279 lastPt [1] += dir;
  /external/skia/experimental/StrokePathRenderer/
GrStrokePathRenderer.cpp 126 SkPoint *firstPt = verts, *lastPt = NULL;
137 isOpen = (lastPt == NULL);
151 if (NULL == lastPt) {
165 const SkPoint* pt0 = &(lastPt[offset]);
240 lastPt = verts;
278 lastPt [0] += dir;
279 lastPt [1] += dir;
  /external/chromium_org/third_party/skia/tests/
PathOpsExtendedTest.cpp 59 SkPoint firstPt = {0, 0}, lastPt = {0, 0};
65 if (firstPtSet && lastPtSet && firstPt != lastPt) {
66 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY,
76 lastPt = pts[1];
82 lastPt = pts[2];
89 lastPt = pts[3];
93 if (firstPtSet && lastPtSet && firstPt != lastPt) {
94 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY
    [all...]
PathTest.cpp     [all...]
  /external/skia/tests/
PathOpsExtendedTest.cpp 153 SkPoint firstPt = {0, 0}, lastPt = {0, 0};
159 if (firstPtSet && lastPtSet && firstPt != lastPt) {
160 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY,
170 lastPt = pts[1];
176 lastPt = pts[2];
183 lastPt = pts[3];
187 if (firstPtSet && lastPtSet && firstPt != lastPt) {
188 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", lastPt.fX, lastPt.fY
    [all...]
PathTest.cpp     [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeDemo.cpp 162 SkPoint lastPt;
201 } else if (pts[0] != lastPt) {
207 lastPt = pts[1];
211 lastPt = pts[2];
215 lastPt = pts[3];
EdgeWalker.cpp     [all...]
  /external/skia/experimental/Intersection/
EdgeDemo.cpp 162 SkPoint lastPt;
201 } else if (pts[0] != lastPt) {
207 lastPt = pts[1];
211 lastPt = pts[2];
215 lastPt = pts[3];
EdgeWalker.cpp     [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 300 for (int lastPt = count - 1, i = 0; i < count; lastPt = i++) {
301 if (pts[lastPt] != pts[i]) {
302 SkVector v = pts[i] - pts[lastPt];
  /external/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 293 for (int lastPt = count - 1, i = 0; i < count; lastPt = i++) {
294 if (pts[lastPt] != pts[i]) {
295 SkVector v = pts[i] - pts[lastPt];
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 616 bool SkPath::getLastPt(SkPoint* lastPt) const {
621 if (lastPt) {
622 *lastPt = fPathRef->atPoint(count - 1);
626 if (lastPt) {
627 lastPt->set(0, 0);
    [all...]
  /external/skia/src/core/
SkPath.cpp 616 bool SkPath::getLastPt(SkPoint* lastPt) const {
621 if (lastPt) {
622 *lastPt = fPathRef->atPoint(count - 1);
626 if (lastPt) {
627 lastPt->set(0, 0);
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPath.h 784 @param lastPt The last point on the path is returned here
786 bool getLastPt(SkPoint* lastPt) const;
    [all...]
  /external/skia/include/core/
SkPath.h 783 @param lastPt The last point on the path is returned here
785 bool getLastPt(SkPoint* lastPt) const;
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpSegment.cpp 558 const SkPoint& lastPt = fPts[SkPathOpsVerbToPoints(fVerb)];
582 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT == 1)) {
    [all...]
  /external/skia/src/pathops/
SkOpSegment.cpp 554 const SkPoint& lastPt = fPts[SkPathOpsVerbToPoints(fVerb)];
578 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT == 1)) {
    [all...]

Completed in 573 milliseconds