Lines Matching refs:halfStrokeWidth
104 , halfStrokeWidth(paint->getStrokeWidth() * 0.5f) in PaintInfo()
117 if (isAA && halfStrokeWidth != 0 && inverseScaleX == inverseScaleY && in PaintInfo()
118 2 * halfStrokeWidth < inverseScaleX) { in PaintInfo()
120 maxAlpha *= (2 * halfStrokeWidth) / inverseScaleX; in PaintInfo()
121 halfStrokeWidth = 0.0f; in PaintInfo()
130 float halfStrokeWidth; member
134 if (halfStrokeWidth == 0.0f) { in scaleOffsetForStrokeWidth()
139 offset *= halfStrokeWidth; in scaleOffsetForStrokeWidth()
158 if (halfStrokeWidth == 0.0f) return 2; in capExtraDivisions()
161 return MathUtils::divisionsNeededToApproximateArc(halfStrokeWidth, PI, threshold); in capExtraDivisions()
173 if (halfStrokeWidth == 0) { in expandBoundsForStroke()
179 bounds->outset(halfStrokeWidth + fabs(inverseScaleX) * Vertex::GeometryFudgeFactor(), in expandBoundsForStroke()
180 halfStrokeWidth + fabs(inverseScaleY) * Vertex::GeometryFudgeFactor()); in expandBoundsForStroke()
774 float radius = paintInfo.halfStrokeWidth; in tessellatePoints()