Home | History | Annotate | Download | only in effects

Lines Matching defs:dst

20 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
32 this->begin(ir, dst);
40 this->nextSpan(rect.fLeft, y, rect.width(), dst);
44 this->end(dst);
55 SkPoint src, dst;
59 mat.mapPoints(&dst, &src, 1);
60 this->next(dst, x++, y, path);
65 void Sk2DPathEffect::begin(const SkIRect& uvBounds, SkPath* dst) const {}
66 void Sk2DPathEffect::next(const SkPoint& loc, int u, int v, SkPath* dst) const {}
67 void Sk2DPathEffect::end(SkPath* dst) const {}
85 bool SkLine2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
87 if (this->INHERITED::filterPath(dst, src, rec, cullRect)) {
94 void SkLine2DPathEffect::nextSpan(int u, int v, int ucount, SkPath* dst) const {
102 dst->moveTo(dstP[0]);
103 dst->lineTo(dstP[1]);
151 SkPath* dst) const {
152 dst->addPath(fPath, loc.fX, loc.fY);