Lines Matching defs:dst
129 bool GrStyle::applyPathEffect(SkPath* dst, SkStrokeRec* strokeRec, const SkPath& src) const {
150 if (!SkDashPath::InternalFilter(dst, src, strokeRec,
156 } else if (!fPathEffect->filterPath(dst, src, strokeRec, nullptr)) {
159 dst->setIsVolatile(true);
163 bool GrStyle::applyPathEffectToPath(SkPath *dst, SkStrokeRec *remainingStroke,
165 SkASSERT(dst);
168 if (!this->applyPathEffect(dst, &strokeRec, src)) {
175 bool GrStyle::applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src,
178 SkASSERT(dst);
182 if (this->applyPathEffect(dst, &strokeRec, src)) {
183 pathForStrokeRec = dst;
188 if (!strokeRec.applyToPath(dst, *pathForStrokeRec)) {
191 dst->setIsVolatile(true);