| 25 | |
| 26 | constexpr double kMaxAdjustsFontSizeToFitWidthAttempt = 8; |
| 27 | |
| 28 | static Path makeTextDecorationPath(const Rect& bounds) { |
| 29 | Path path; |
| 30 | auto centerY = bounds.y() + bounds.height() / 2.0f; |
| 31 | path.moveTo(bounds.x(), centerY); |
| 32 | path.lineTo(bounds.right, centerY); |
| 33 | return path; |
nothing calls this directly
no test coverage detected