Home
last modified time | relevance | path

Searched refs:dotPath (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/bubble/
H A Dbubble_paint_method.cpp111 RSPath dotPath; in PaintBorder() local
112 dotPath.AddCircle(0.0f, 0.0f, borderWidth / 2.0); in PaintBorder()
114 … RSPathEffect::CreatePathDashEffect(dotPath, borderWidth * 2.0, 0.0, RSPathDashStyle::ROTATE)); in PaintBorder()
116 RSRecordingPath dotPath; in PaintBorder()
117 dotPath.AddCircle(0.0f, 0.0f, borderWidth / 2.0); in PaintBorder()
119 …RSRecordingPathEffect::CreatePathDashEffect(dotPath, borderWidth * 2.0, 0.0, RSPathDashStyle::ROTA… in PaintBorder()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/bubble/
H A Drosen_render_bubble.cpp762 SkPath dotPath; in PaintBorder() local
763 dotPath.addCircle(0.0f, 0.0f, SkDoubleToScalar(borderWidth / 2.0)); in PaintBorder()
765 … SkPath1DPathEffect::Make(dotPath, borderWidth * 2.0, 0.0, SkPath1DPathEffect::kRotate_Style)); in PaintBorder()
808 RSPath dotPath; in PaintBorder() local
809 dotPath.AddCircle(0.0f, 0.0f, static_cast<RSScalar>(borderWidth / 2.0)); in PaintBorder()
810 …pen.SetPathEffect(RSPathEffect::CreatePathDashEffect(dotPath, borderWidth * 2.0, 0.0, RSPathDashSt… in PaintBorder()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_border.cpp249 Drawing::Path dotPath; in SetBorderEffect() local
253 dotPath.AddCircle(0.0f, 0.0f, width / PARAM_DOUBLE); in SetBorderEffect()
254 pen.SetPathEffect(Drawing::PathEffect::CreatePathDashEffect(dotPath, spaceBetweenDot, 0.0, in SetBorderEffect()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/painter/
H A Drosen_decoration_painter.cpp2329 SkPath dotPath; in SetBorderStyle() local
2333 dotPath.addCircle(0.0f, 0.0f, SkDoubleToScalar(width / 2.0)); // 2.0: Average factor. in SetBorderStyle()
2335 … SkPath1DPathEffect::Make(dotPath, spaceBetweenDot, 0.0, SkPath1DPathEffect::kRotate_Style)); in SetBorderStyle()
2370 RSPath dotPath; in SetBorderStyle() local
2374dotPath.AddCircle(0.0f, 0.0f, static_cast<RSScalar>(width / 2.0)); // 2.0: Average factor. in SetBorderStyle()
2376 … RSPathEffect::CreatePathDashEffect(dotPath, spaceBetweenDot, 0.0, RSPathDashStyle::ROTATE)); in SetBorderStyle()