Home
last modified time | relevance | path

Searched refs:joinType (Results 1 – 10 of 10) sorted by relevance

/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/
DGradientStroke.java26 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()
DShapeStroke.java60 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/
DShapeStrokeParser.java43 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()
DGradientStrokeParser.java54 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/
DGrStrokeHardwareTessellator.cpp93 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()
DGrStrokeTessellateShader.h59 constexpr static int NumFixedEdgesInJoin(SkPaint::Join joinType) { in NumFixedEdgesInJoin() argument
60 switch (joinType) { in NumFixedEdgesInJoin()
DGrStrokeFixedCountTessellator.cpp183 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()
DGrStrokeTessellateShader.cpp999 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/
DGrCCStrokeGeometry.h113 void recordLeftJoinIfNotEmpty(Verb joinType, SkVector nextNormal);
/external/skia/tests/
DStrokeIndirectTest.cpp257 static float test_tolerance(SkPaint::Join joinType) { in test_tolerance() argument
261 if (joinType == SkPaint::kRound_Join) { in test_tolerance()