| 963 | } |
| 964 | |
| 965 | void fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color) { |
| 966 | if (color != curForeColor565) { foreColor565(color); } |
| 967 | fillRectangle(x, y, x + w - 1, y + h - 1); |
| 968 | } |
| 969 | |
| 970 | void drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color) { |
| 971 | if (color != curForeColor565) { foreColor565(color); } |
no outgoing calls
no test coverage detected