Lines Matching refs:SkStrokeRec
44 // from SkStrokeRec output by the the path effect (and no additional path effect).
73 static_assert(SkStrokeRec::kStyleCount <= (1 << kStyleBits));
115 SkStrokeRec::Style recStyle = fStrokeRec.getStyle();
116 if (recStyle != SkStrokeRec::kFill_Style && recStyle != SkStrokeRec::kStrokeAndFill_Style) {
129 bool GrStyle::applyPathEffect(SkPath* dst, SkStrokeRec* strokeRec, const SkPath& src) const {
163 bool GrStyle::applyPathEffectToPath(SkPath *dst, SkStrokeRec *remainingStroke,
166 SkStrokeRec strokeRec = fStrokeRec;
175 bool GrStyle::applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src,
179 SkStrokeRec strokeRec = fStrokeRec;
192 *style = SkStrokeRec::kFill_InitStyle;
197 SkASSERT(SkStrokeRec::kFill_Style == strokeRec.getStyle() ||
198 SkStrokeRec::kHairline_Style == strokeRec.getStyle());
199 *style = strokeRec.getStyle() == SkStrokeRec::kFill_Style
200 ? SkStrokeRec::kFill_InitStyle
201 : SkStrokeRec::kHairline_InitStyle;