| 54 | void pushColor(uint16_t color); |
| 55 | void fillScreen(uint16_t color=BLACK); |
| 56 | void clearScreen() { fillScreen(BLACK); } |
| 57 | void cls() { fillScreen(BLACK); } |
| 58 | void drawPixel(int16_t x, int16_t y, uint16_t color); |
| 59 | void drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color); |
nothing calls this directly
no outgoing calls
no test coverage detected