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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGEllipse.cpp 126 float halfStrokeWidth = strokeWidth() / 2;
131 float xrXOuter = center.x() / (m_radii.width() + halfStrokeWidth);
132 float yrYOuter = center.y() / (m_radii.height() + halfStrokeWidth);
136 float xrXInner = center.x() / (m_radii.width() - halfStrokeWidth);
137 float yrYInner = center.y() / (m_radii.height() - halfStrokeWidth);
  /external/chromium_org/third_party/skia/src/core/
SkBBoxRecord.cpp 57 SkScalar halfStrokeWidth = SkMaxScalar(paint.getStrokeWidth(), kMinWidth) / 2;
58 bbox.outset(halfStrokeWidth, halfStrokeWidth);
  /external/skia/src/core/
SkBBoxRecord.cpp 57 SkScalar halfStrokeWidth = SkMaxScalar(paint.getStrokeWidth(), kMinWidth) / 2;
58 bbox.outset(halfStrokeWidth, halfStrokeWidth);
  /frameworks/base/libs/hwui/
PathTessellator.cpp 99 halfStrokeWidth(paint->getStrokeWidth() * 0.5f), maxAlpha(1.0f) {
112 if (isAA && halfStrokeWidth != 0 && inverseScaleX == inverseScaleY &&
113 2 * halfStrokeWidth < inverseScaleX) {
114 maxAlpha *= (2 * halfStrokeWidth) / inverseScaleX;
115 halfStrokeWidth = 0.0f;
124 float halfStrokeWidth;
128 if (halfStrokeWidth == 0.0f) {
133 offset *= halfStrokeWidth;
152 if (halfStrokeWidth == 0.0f) return 2;
155 const float errConst = (-ROUND_CAP_THRESH / halfStrokeWidth + 1)
    [all...]

Completed in 926 milliseconds