| 289 | } |
| 290 | |
| 291 | void Path::CommandList::addRoundedRectangle(float x, float y, float width, float height, |
| 292 | float rx_top_left, float ry_top_left, |
| 293 | float rx_top_right, float ry_top_right, |
| 294 | float rx_bottom_left, float ry_bottom_left, |
| 295 | float rx_bottom_right, float ry_bottom_right) { |
| 296 | roundedRectangle(*this, x, y, width, height, rx_top_left, ry_top_left, rx_top_right, |
| 297 | ry_top_right, rx_bottom_right, ry_bottom_right, rx_bottom_left, ry_bottom_left); |
| 298 | } |
| 299 | |
| 300 | void Path::CommandList::addRoundedRectangle(float x, float y, float width, float height, float rx, |
| 301 | float ry) { |
no test coverage detected