| 1066 | } |
| 1067 | |
| 1068 | void SoftwareDrawingContext::drawLine(const Ui::Point& a, const Ui::Point& b, PaletteIndex_t colour) |
| 1069 | { |
| 1070 | auto& rt = currentRenderTarget(); |
| 1071 | return Impl::drawLine(rt, a, b, colour); |
| 1072 | } |
| 1073 | |
| 1074 | void SoftwareDrawingContext::drawCircle(const Ui::Point& centre, int32_t radius, int32_t lineWidth, PaletteIndex_t colour) |
| 1075 | { |
no test coverage detected