Home | History | Annotate | Download | only in effects

Lines Matching defs:dst

19 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
31 this->begin(ir, dst);
39 this->nextSpan(rect.fLeft, y, rect.width(), dst);
43 this->end(dst);
54 SkPoint src, dst;
58 mat.mapPoints(&dst, &src, 1);
59 this->next(dst, x++, y, path);
64 void Sk2DPathEffect::begin(const SkIRect& uvBounds, SkPath* dst) const {}
65 void Sk2DPathEffect::next(const SkPoint& loc, int u, int v, SkPath* dst) const {}
66 void Sk2DPathEffect::end(SkPath* dst) const {}
82 bool SkLine2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
84 if (this->INHERITED::filterPath(dst, src, rec, cullRect)) {
91 void SkLine2DPathEffect::nextSpan(int u, int v, int ucount, SkPath* dst) const {
99 dst->moveTo(dstP[0]);
100 dst->lineTo(dstP[1]);
130 SkPath* dst) const {
131 dst->addPath(fPath, loc.fX, loc.fY);