Home | History | Annotate | Download | only in gpu

Lines Matching refs:SkStrokeRec

44     //    from SkStrokeRec output by the the path effect (and no additional path effect).
73 GR_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 {
158 bool GrStyle::applyPathEffectToPath(SkPath *dst, SkStrokeRec *remainingStroke,
161 SkStrokeRec strokeRec = fStrokeRec;
170 bool GrStyle::applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src,
174 SkStrokeRec strokeRec = fStrokeRec;
187 *style = SkStrokeRec::kFill_InitStyle;
192 SkASSERT(SkStrokeRec::kFill_Style == strokeRec.getStyle() ||
193 SkStrokeRec::kHairline_Style == strokeRec.getStyle());
194 *style = strokeRec.getStyle() == SkStrokeRec::kFill_Style
195 ? SkStrokeRec::kFill_InitStyle
196 : SkStrokeRec::kHairline_InitStyle;