Home
last modified time | relevance | path

Searched refs:fStrokeWidth (Results 1 – 15 of 15) sorted by relevance

/external/skia/src/pdf/
DSkPDFGraphicState.h63 return 0 == memcmp(&fStrokeWidth, &rhs.fStrokeWidth, 12);
65 uint32_t hash() const { return SkOpts::hash(&fStrokeWidth, 12); } in hash()
68 const SkScalar fStrokeWidth;
DSkPDFGraphicState.cpp100 : fStrokeWidth(p.getStrokeWidth()) in SkPDFGraphicState()
200 dict->insertScalar("LW", fStrokeWidth); in emitObject()
/external/skia/bench/
DDashBench.cpp214 SkScalar fStrokeWidth; member in DashLineBench
221 fStrokeWidth = width; in DashLineBench()
236 paint.setStrokeWidth(fStrokeWidth); in onDraw()
251 int fStrokeWidth; member in DrawPointsDashingBench
260 fStrokeWidth = strokeWidth; in DrawPointsDashingBench()
277 p.setStrokeWidth(SkIntToScalar(fStrokeWidth)); in onDraw()
299 SkScalar fStrokeWidth; member in GiantDashBench
319 fStrokeWidth = width; in GiantDashBench()
361 p.setStrokeWidth(fStrokeWidth); in onDraw()
377 int fStrokeWidth; member in DashGridBench
[all …]
DLineBench.cpp20 SkScalar fStrokeWidth; member in LineBench
30 fStrokeWidth = width; in LineBench()
51 paint.setStrokeWidth(fStrokeWidth); in onDraw()
/external/skia/src/gpu/ops/
DGrNonAAStrokeRectOp.cpp60 fColor, fRect.fLeft, fRect.fTop, fRect.fRight, fRect.fBottom, fStrokeWidth); in dumpInfo()
78 op->fStrokeWidth = stroke.getWidth(); in Make()
80 SkScalar rad = SkScalarHalf(op->fStrokeWidth); in Make()
128 if (fStrokeWidth > 0) { in onPrepareDraws()
146 if (fStrokeWidth > 0) { in onPrepareDraws()
148 init_stroke_rect_strip(vertex, fRect, fStrokeWidth); in onPrepareDraws()
178 SkScalar fStrokeWidth; member in NonAAStrokeRectOp
DGrAALinearizingConvexPathRenderer.cpp142 path.fColor, path.fStrokeWidth, path.fStyle, path.fJoin, path.fMiterLimit); in dumpInfo()
243 GrAAConvexTessellator tess(args.fStyle, args.fStrokeWidth, in onPrepareDraws()
311 SkScalar fStrokeWidth; member
DGrAAConvexTessellator.h40 , fStrokeWidth(strokeWidth) in fSide()
280 SkScalar fStrokeWidth; variable
DGrAAConvexTessellator.cpp234 SkScalar effectiveStrokeWidth = scaleFactor * fStrokeWidth; in tessellate()
268 SkASSERT(fStrokeWidth >= 0.0f); in tessellate()
271 SkScalar effectiveStrokeWidth = scaleFactor * fStrokeWidth; in tessellate()
286 SkASSERT(fStrokeWidth >= 0.0f); in tessellate()
287 SkScalar effectiveStrokeWidth = scaleFactor * fStrokeWidth; in tessellate()
DGrDashOp.cpp321 SkScalar fStrokeWidth; member
555 draw.fStrokeWidth = strokeWidth; in onPrepareDraws()
582 draws[i].fIntervals[1], draws[i].fStrokeWidth, in onPrepareDraws()
599 draws[i].fIntervals[1], draws[i].fStrokeWidth, capType, in onPrepareDraws()
616 draws[i].fIntervals[1], draws[i].fStrokeWidth, capType, in onPrepareDraws()
/external/skia/gm/
Dshadows.cpp80 SkScalar fStrokeWidth; in onDraw() member
95 setup(&paint, gRec[0].fColor, gRec[0].fStrokeWidth); in onDraw()
99 setup(&paint, gRec[1].fColor, gRec[1].fStrokeWidth); in onDraw()
103 setup(&paint, gRec[2].fColor, gRec[2].fStrokeWidth); in onDraw()
/external/skia/experimental/svg/model/
DSkSVGAttribute.cpp21 result.fStrokeWidth.set(SkSVGLength(1)); in MakeInitial()
DSkSVGAttribute.h67 SkTLazy<SkSVGLength> fStrokeWidth; member
DSkSVGNode.cpp92 fPresentationAttributes.fStrokeWidth.set(strokeWidth); in setStrokeWidth()
DSkSVGRenderContext.cpp187 auto strokeWidth = ctx.lengthContext().resolve(*attrs.fStrokeWidth.get(), in commitToPaint()
/external/skia/samplecode/
DSampleStrokePath.cpp89 int fStrokeWidth; member
141 paint->setStrokeWidth(SkIntToScalar(gRec[i].fStrokeWidth)); in drawSet()