Searched refs:svgTextInfo (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/painter/ |
H A D | rosen_svg_painter.cpp | 522 RosenSvgPainter::SetFillStyle(paint, svgTextInfo.fillState, svgTextInfo.opacity); in UpdateText() 523 RosenSvgPainter::SetStrokeStyle(strokePaint, svgTextInfo.strokeState, svgTextInfo.opacity); in UpdateText() 543 …if (svgTextInfo.strokeState.HasStroke() && !NearZero(svgTextInfo.strokeState.GetLineWidth().Value(… in UpdateText() 572 RosenSvgPainter::SetFillStyle(brush, svgTextInfo.fillState, svgTextInfo.opacity); in UpdateText() 573 RosenSvgPainter::SetStrokeStyle(strokePen, svgTextInfo.strokeState, svgTextInfo.opacity); in UpdateText() 595 …if (svgTextInfo.strokeState.HasStroke() && !NearZero(svgTextInfo.strokeState.GetLineWidth().Value(… in UpdateText() 626 RosenSvgPainter::SetFillStyle(paint, svgTextInfo.fillState, svgTextInfo.opacity); in UpdateTextPath() 627 RosenSvgPainter::SetStrokeStyle(strokePaint, svgTextInfo.strokeState, svgTextInfo.opacity); in UpdateTextPath() 668 …if (svgTextInfo.strokeState.HasStroke() && !NearZero(svgTextInfo.strokeState.GetLineWidth().Value(… in UpdateTextPath() 695 RosenSvgPainter::SetFillStyle(brush, svgTextInfo.fillState, svgTextInfo.opacity); in UpdateTextPath() [all …]
|
H A D | rosen_svg_painter.h | 87 …static Offset UpdateText(SkCanvas* canvas, const SvgTextInfo& svgTextInfo, const TextDrawInfo& tex… 88 …static double UpdateTextPath(SkCanvas* canvas, const SvgTextInfo& svgTextInfo, const PathDrawInfo&… 104 static Offset UpdateText(RSCanvas* canvas, const SvgTextInfo& svgTextInfo, 106 static double UpdateTextPath(RSCanvas* canvas, const SvgTextInfo& svgTextInfo, 109 …static Offset MeasureTextBounds(const SvgTextInfo& svgTextInfo, const TextDrawInfo& textDrawInfo, … 110 …static double MeasureTextPathBounds(const SvgTextInfo& svgTextInfo, const PathDrawInfo& pathDrawIn…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/svg/ |
H A D | rosen_render_svg_text_path.cpp | 119 SvgTextInfo svgTextInfo = { fillState_, strokeState_, textStyle_, textData_, opacity_ }; in OnDrawTextPath() local 121 offset = RosenSvgPainter::UpdateTextPath(canvas, svgTextInfo, pathDrawInfo); in OnDrawTextPath() 127 SvgTextInfo svgTextInfo = { fillState_, strokeState_, textStyle_, textData_, opacity_ }; in OnMeasureTextPathBounds() local 129 double offset = RosenSvgPainter::MeasureTextPathBounds(svgTextInfo, pathDrawInfo, bounds); in OnMeasureTextPathBounds()
|
H A D | rosen_render_svg_tspan.cpp | 139 SvgTextInfo svgTextInfo = { fillState_, strokeState_, textStyle_, textData_, opacity_ }; in OnDrawTextPath() local 141 offset = RosenSvgPainter::UpdateTextPath(canvas, svgTextInfo, pathDrawInfo); in OnDrawTextPath() 147 SvgTextInfo svgTextInfo = { fillState_, strokeState_, textStyle_, textData_, opacity_ }; in OnMeasureTextPathBounds() local 149 double offset = RosenSvgPainter::MeasureTextPathBounds(svgTextInfo, pathDrawInfo, bounds); in OnMeasureTextPathBounds()
|
H A D | rosen_render_svg_text.cpp | 151 SvgTextInfo svgTextInfo = { fillState_, strokeState_, textStyle_, text, opacity_ }; in OnDrawText() local 153 offset = RosenSvgPainter::UpdateText(canvas, svgTextInfo, textDrawInfo); in OnDrawText() 161 SvgTextInfo svgTextInfo = { fillState_, strokeState_, textStyle_, text, opacity_ }; in OnMeasureTextBounds() local 163 offset = RosenSvgPainter::MeasureTextBounds(svgTextInfo, textDrawInfo, bounds); in OnMeasureTextBounds()
|