| 276 | |
| 277 | private: |
| 278 | void drawTo(const Surface& s) const override { |
| 279 | DrawingContext dc(s); |
| 280 | dc.draw(MyLine()); |
| 281 | dc.draw(MyLine(), 3, 2); |
| 282 | dc.setTransformation(Transformation().scale(1, 3)); |
| 283 | dc.draw(MyLine(), 3, 4); |
| 284 | } |
| 285 | }; |
| 286 | |
| 287 | FakeOffscreen<Argb4444> test_screen(10, 11, color::Black); |
nothing calls this directly
no test coverage detected