| 1054 | } |
| 1055 | |
| 1056 | void SoftwareDrawingContext::fillRectInset(int16_t left, int16_t top, int16_t right, int16_t bottom, AdvancedColour colour, RectInsetFlags flags) |
| 1057 | { |
| 1058 | auto& rt = currentRenderTarget(); |
| 1059 | return Impl::fillRectInset(rt, left, top, right, bottom, colour, flags); |
| 1060 | } |
| 1061 | |
| 1062 | void SoftwareDrawingContext::drawRectInset(int16_t x, int16_t y, uint16_t dx, uint16_t dy, AdvancedColour colour, RectInsetFlags flags) |
| 1063 | { |
no test coverage detected