Lines Matching defs:curve
31 // dot product below which we use a round cap between curve segments
34 // dot product above which we consider two adjacent curves to be part of the "same" curve
86 CurveState curve) {
94 *fCurveState.push() = curve;
548 CurveState curve = fCurveState[originalIdx];
552 int perp1Idx = this->addPt(perp1, -outset, coverage, false, curve);
560 perp2Idx = this->addPt(perp2, -outset, coverage, false, curve);
564 if (curve == kCurve_CurveState) {
926 void GrAAConvexTessellator::lineTo(const SkPoint& p, CurveState curve) {
947 this->addPt(p, 0.0f, initialRingCoverage, false, curve);
950 void GrAAConvexTessellator::lineTo(const SkMatrix& m, const SkPoint& p, CurveState curve) {
951 this->lineTo(m.mapXY(p.fX, p.fY), curve);