/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/ |
D | GradientStroke.java | 26 private final ShapeStroke.LineJoinType joinType; field in GradientStroke 36 ShapeStroke.LineJoinType joinType, float miterLimit, in GradientStroke() argument 47 this.joinType = joinType; in GradientStroke() 87 return joinType; in getJoinType()
|
D | ShapeStroke.java | 60 private final LineJoinType joinType; field in ShapeStroke 67 LineJoinType joinType, float miterLimit, boolean hidden) { in ShapeStroke() argument 75 this.joinType = joinType; in ShapeStroke() 113 return joinType; in getJoinType()
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/ |
D | ShapeStrokeParser.java | 43 ShapeStroke.LineJoinType joinType = null; in parse() local 68 joinType = ShapeStroke.LineJoinType.values()[reader.nextInt() - 1]; in parse() 122 … name, offset, lineDashPattern, color, opacity, width, capType, joinType, miterLimit, hidden); in parse()
|
D | GradientStrokeParser.java | 54 ShapeStroke.LineJoinType joinType = null; in parse() local 104 joinType = ShapeStroke.LineJoinType.values()[reader.nextInt() - 1]; in parse() 153 name, gradientType, color, opacity, startPoint, endPoint, width, capType, joinType, in parse()
|
/external/skia/src/gpu/tessellate/ |
D | GrStrokeHardwareTessellator.cpp | 93 void updateTolerances(float numRadialSegmentsPerRadian, SkPaint::Join joinType) { in updateTolerances() argument 115 switch (joinType) { in updateTolerances() 130 fStrokeJoinType = JoinType(joinType); in updateTolerances() 516 void internalJoinTo(JoinType joinType, SkPoint junctionPoint, SkPoint nextControlPoint, in internalJoinTo() argument 524 (joinType == JoinType::kRound || joinType == JoinType::kBowtie)) { in internalJoinTo() 554 this->internalJoinTo(joinType, junctionPoint, c0, maxDepth - 1); in internalJoinTo() 557 this->internalJoinTo(joinType, junctionPoint, nextControlPoint, maxDepth - 1); in internalJoinTo() 567 if (joinType == JoinType::kBowtie) { in internalJoinTo()
|
D | GrStrokeTessellateShader.h | 59 constexpr static int NumFixedEdgesInJoin(SkPaint::Join joinType) { in NumFixedEdgesInJoin() argument 60 switch (joinType) { in NumFixedEdgesInJoin()
|
D | GrStrokeFixedCountTessellator.cpp | 183 static int worst_case_edges_in_join(SkPaint::Join joinType, float numRadialSegmentsPerRadian) { in worst_case_edges_in_join() argument 184 int numEdges = GrStrokeTessellateShader::NumFixedEdgesInJoin(joinType); in worst_case_edges_in_join() 185 if (joinType == SkPaint::kRound_Join) { in worst_case_edges_in_join()
|
D | GrStrokeTessellateShader.cpp | 999 SkPaint::Join joinType = shader.fStroke.getJoin(); in onEmitCode() local 1141 float numEdgesInJoin = %i;)", NumFixedEdgesInJoin(joinType)); in onEmitCode() 1210 if (joinType == SkPaint::kMiter_Join || shader.hasDynamicStroke()) { in onEmitCode()
|
/external/skqp/src/gpu/ccpr/ |
D | GrCCStrokeGeometry.h | 113 void recordLeftJoinIfNotEmpty(Verb joinType, SkVector nextNormal);
|
/external/skia/tests/ |
D | StrokeIndirectTest.cpp | 257 static float test_tolerance(SkPaint::Join joinType) { in test_tolerance() argument 261 if (joinType == SkPaint::kRound_Join) { in test_tolerance()
|