HomeSort by relevance Sort by last modified time
    Searched defs:halfStrokeWidth (Results 1 - 3 of 3) sorted by null

  /frameworks/base/libs/hwui/
PathTessellator.cpp 104 , halfStrokeWidth(paint->getStrokeWidth() * 0.5f)
117 if (isAA && halfStrokeWidth != 0 && inverseScaleX == inverseScaleY &&
118 2 * halfStrokeWidth < inverseScaleX) {
120 maxAlpha *= (2 * halfStrokeWidth) / inverseScaleX;
121 halfStrokeWidth = 0.0f;
130 float halfStrokeWidth;
134 if (halfStrokeWidth == 0.0f) {
139 offset *= halfStrokeWidth;
158 if (halfStrokeWidth == 0.0f) return 2;
161 return MathUtils::divisionsNeededToApproximateArc(halfStrokeWidth, PI, threshold)
    [all...]
  /external/skia/src/gpu/ops/
GrDashOp.cpp 339 SkScalar halfStrokeWidth = 0.5f * geometry.fSrcStrokeWidth;
340 SkScalar xBloat = SkPaint::kButt_Cap == cap ? 0 : halfStrokeWidth;
343 bounds.outset(xBloat, halfStrokeWidth);
    [all...]
  /external/skqp/src/gpu/ops/
GrDashOp.cpp 339 SkScalar halfStrokeWidth = 0.5f * geometry.fSrcStrokeWidth;
340 SkScalar xBloat = SkPaint::kButt_Cap == cap ? 0 : halfStrokeWidth;
343 bounds.outset(xBloat, halfStrokeWidth);
    [all...]

Completed in 572 milliseconds