| 313 | } |
| 314 | |
| 315 | void RoundRect::drawInteriorTo(const Surface &s) const { |
| 316 | Box extents(x0_ + s.dx(), y0_ + s.dy(), x1_ + s.dx(), y1_ + s.dy()); |
| 317 | drawRoundRect(s.out(), extents, radius_, s.clip_box(), |
| 318 | AlphaBlend(s.bgcolor(), this->color()), s.blending_mode()); |
| 319 | } |
| 320 | |
| 321 | void Circle::drawInteriorTo(const Surface &s) const { |
| 322 | Box extents(x0_ + s.dx(), y0_ + s.dy(), x0_ + diameter_ - 1 + s.dx(), |
nothing calls this directly
no test coverage detected