Lines Matching defs:inner
70 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) {
73 just connecting the two inner segments may "show through" as a funny
78 inner->lineTo(pivot.fX, pivot.fY);
81 inner->lineTo(pivot.fX - after.fX, pivot.fY - after.fY);
84 static void BluntJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
92 swap(outer, inner);
97 HandleInnerJoin(inner, pivot, after);
100 static void RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
115 swap(outer, inner);
131 HandleInnerJoin(inner, pivot, after);
137 static void MiterJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
161 swap(outer, inner);
214 HandleInnerJoin(inner, pivot, after);