Lines Matching refs:SkStrokeRec
73 GR_STATIC_ASSERT(SkStrokeRec::kStyleCount <= (1 << kStyleBits)); in WriteKey()
115 SkStrokeRec::Style recStyle = fStrokeRec.getStyle(); in initPathEffect()
116 if (recStyle != SkStrokeRec::kFill_Style && recStyle != SkStrokeRec::kStrokeAndFill_Style) { in initPathEffect()
129 bool GrStyle::applyPathEffect(SkPath* dst, SkStrokeRec* strokeRec, const SkPath& src) const { in applyPathEffect()
158 bool GrStyle::applyPathEffectToPath(SkPath *dst, SkStrokeRec *remainingStroke, in applyPathEffectToPath()
161 SkStrokeRec strokeRec = fStrokeRec; in applyPathEffectToPath()
170 bool GrStyle::applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src, in applyToPath()
174 SkStrokeRec strokeRec = fStrokeRec; in applyToPath()
187 *style = SkStrokeRec::kFill_InitStyle; in applyToPath()
192 SkASSERT(SkStrokeRec::kFill_Style == strokeRec.getStyle() || in applyToPath()
193 SkStrokeRec::kHairline_Style == strokeRec.getStyle()); in applyToPath()
194 *style = strokeRec.getStyle() == SkStrokeRec::kFill_Style in applyToPath()
195 ? SkStrokeRec::kFill_InitStyle in applyToPath()
196 : SkStrokeRec::kHairline_InitStyle; in applyToPath()