Lines Matching defs:out
418 void GrShape::asPath(SkPath* out, bool simpleFill) const {
423 out->reset();
424 out->setFillType(kDefaultFillType);
426 out->toggleInverseFillType();
428 } // Else when we're already a path, that will assign the fill type directly to 'out'.
436 out->moveTo(fPoint);
437 out->lineTo(fPoint);
440 out->addRect(fRect, this->dir(), this->startIndex());
443 out->addRRect(fRRect, this->dir(), this->startIndex());
446 *out = fPath;
449 SkPathPriv::CreateDrawArcPath(out, fArc.fOval, fArc.fStartAngle, fArc.fSweepAngle,
454 out->toggleInverseFillType();
458 out->moveTo(fLine.fP1);
459 out->lineTo(fLine.fP2);