Searched refs:capType (Results 1 – 7 of 7) sorted by relevance
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/ |
D | GradientStroke.java | 25 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()
|
D | ShapeStroke.java | 59 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/ |
D | ShapeStrokeParser.java | 42 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()
|
D | GradientStrokeParser.java | 53 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/ |
D | GrDashOp.cpp | 324 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/ |
D | GrDashOp.cpp | 326 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/ |
D | GrCCStroker.cpp | 482 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()
|