Searched defs:conicTo (Results 1 - 3 of 3) sorted by relevance

/external/skia/src/pathops/
H A DSkPathWriter.cpp33 void SkPathWriter::conicTo(const SkPoint& pt1, const SkOpPtT* pt2, SkScalar weight) { function in class:SkPathWriter
36 SkDebugf("path.conicTo(%1.9g,%1.9g, %1.9g,%1.9g, %1.9g);\n",
39 fCurrent.conicTo(pt1, pt2->fPt, weight);
/external/skia/include/core/
H A DSkPath.h486 void conicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
488 void conicTo(const SkPoint& p1, const SkPoint& p2, SkScalar w) { function in class:SkPath
489 this->conicTo(p1.fX, p1.fY, p2.fX, p2.fY, w);
/external/skia/src/core/
H A DSkPath.cpp799 void SkPath::conicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, function in class:SkPath
828 this->conicTo(pt.fX + dx1, pt.fY + dy1, pt.fX + dx2, pt.fY + dy2, w);
1145 ? 9 // moveTo + 4x conicTo + 3x lineTo + close
1146 : 10; // moveTo + 4x lineTo + 4x conicTo + close
1158 this->conicTo(rectIter.next(), rrectIter.next(), weight);
1161 this->conicTo(rectIter.next(), rrectIter.next(), weight);
1166 this->conicTo(rectIter.next(), rrectIter.next(), weight);
1248 const int kVerbs = 6; // moveTo + 4x conicTo + close
1258 this->conicTo(rectIter.next(), ovalIter.next(), weight);
1322 this->conicTo(conic
[all...]

Completed in 119 milliseconds