----------------------------------------------------------
| 445 | |
| 446 | // ---------------------------------------------------------- |
| 447 | void Arduino_ST7789::drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color) |
| 448 | { |
| 449 | if(x>=_width || y>=_height || h<=0) return; |
| 450 | if(y+h-1>=_height) h=_height-y; |
| 451 | setAddrWindow(x, y, x, y+h-1); |
| 452 | |
| 453 | writeMulti(color,h); |
| 454 | |
| 455 | CS_IDLE; |
| 456 | SPI_END; |
| 457 | } |
| 458 | |
| 459 | // ---------------------------------------------------------- |
| 460 | void Arduino_ST7789::drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color) |
nothing calls this directly
no outgoing calls
no test coverage detected