Lines Matching full:width
56 bool SkComposePathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
61 if (fPE1->filterPath(&tmp, src, width))
63 return fPE0->filterPath(dst, *ptr, width);
68 bool SkSumPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
71 return fPE0->filterPath(dst, src, width) | fPE1->filterPath(dst, src, width);
84 SkStrokePathEffect::SkStrokePathEffect(SkScalar width, SkPaint::Style style, SkPaint::Join join, SkPaint::Cap cap, SkScalar miter)
85 : fWidth(width), fMiter(miter), fStyle(SkToU8(style)), fJoin(SkToU8(join)), fCap(SkToU8(cap))
91 bool SkStrokePathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
98 *width = 0;