Lines Matching refs:stroke
80 // Don't bother with stroke stencilling or inverse fills yet. The Skia API doesn't support
81 // clipping by a stroke, and the stencilling code already knows how to invert a fill.
128 // Outset the viewport to pad for the stroke width.
129 const SkStrokeRec& stroke = args.fShape->style().strokeRec();
131 if (stroke.isHairlineStyle()) {
133 // find the inflation of an equivalent stroke in device space with a width of 1.
134 inflationRadius = SkStrokeRec::GetInflationRadius(stroke.getJoin(),
135 stroke.getMiter(),
136 stroke.getCap(), 1);
138 inflationRadius = stroke.getInflationRadius() * args.fViewMatrix->getMaxScale();
149 const SkStrokeRec& stroke = args.fShape->style().strokeRec();
150 SkASSERT(stroke.getStyle() != SkStrokeRec::kStrokeAndFill_Style);
152 path, stroke, std::move(args.fPaint));