Home
last modified time | relevance | path

Searched refs:capType (Results 1 – 7 of 7) sorted by relevance

/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/
DGradientStroke.java25 private final ShapeStroke.LineCapType capType; field in GradientStroke
35 … AnimatablePointValue endPoint, AnimatableFloatValue width, ShapeStroke.LineCapType capType, in GradientStroke() argument
46 this.capType = capType; in GradientStroke()
83 return capType; in getCapType()
DShapeStroke.java59 private final LineCapType capType; field in ShapeStroke
66 … AnimatableIntegerValue opacity, AnimatableFloatValue width, LineCapType capType, in ShapeStroke() argument
74 this.capType = capType; in ShapeStroke()
109 return capType; in getCapType()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DShapeStrokeParser.java42 ShapeStroke.LineCapType capType = null; in parse() local
65 capType = ShapeStroke.LineCapType.values()[reader.nextInt() - 1]; in parse()
122 … name, offset, lineDashPattern, color, opacity, width, capType, joinType, miterLimit, hidden); in parse()
DGradientStrokeParser.java53 ShapeStroke.LineCapType capType = null; in parse() local
101 capType = ShapeStroke.LineCapType.values()[reader.nextInt() - 1]; in parse()
153 name, gradientType, color, opacity, startPoint, endPoint, width, capType, joinType, in parse()
/external/skia/src/gpu/ops/
DGrDashOp.cpp324 DashCap capType = (this->cap() == SkPaint::kRound_Cap) ? kRound_DashCap : kNonRound_DashCap; in onCreateProgramInfo() local
328 gp = make_dash_gp(arena, this->color(), this->aaMode(), capType, in onCreateProgramInfo()
370 DashCap capType = (SkPaint::kRound_Cap == cap) ? kRound_DashCap : kNonRound_DashCap; in onPrepareDraws() local
619 capType); in onPrepareDraws()
632 draws[i].fPerpendicularScale, capType); in onPrepareDraws()
645 draws[i].fPerpendicularScale, capType); in onPrepareDraws()
/external/skqp/src/gpu/ops/
DGrDashOp.cpp326 DashCap capType = isRoundCap ? kRound_DashCap : kNonRound_DashCap; in onPrepareDraws() local
330 gp = make_dash_gp(this->color(), this->aaMode(), capType, this->viewMatrix(), in onPrepareDraws()
587 draws[i].fIntervals[1], draws[i].fStrokeWidth, capType); in onPrepareDraws()
600 draws[i].fIntervals[1], draws[i].fStrokeWidth, capType); in onPrepareDraws()
613 draws[i].fIntervals[1], draws[i].fStrokeWidth, capType); in onPrepareDraws()
/external/skqp/src/gpu/ccpr/
DGrCCStroker.cpp482 void appendCap(Verb capType, const SkPoint& pt, const SkVector& norm) { in appendCap() argument
489 if (Verb::kSquareCap == capType) { in appendCap()
493 SkASSERT(Verb::kRoundCap == capType); in appendCap()