| 515 | } |
| 516 | |
| 517 | void OLEDDisplay::drawFastImage(int16_t xMove, int16_t yMove, int16_t width, int16_t height, const uint8_t *image) { |
| 518 | drawInternal(xMove, yMove, width, height, image, 0, 0); |
| 519 | } |
| 520 | |
| 521 | void OLEDDisplay::drawXbm(int16_t xMove, int16_t yMove, int16_t width, int16_t height, const uint8_t *xbm) { |
| 522 | int16_t widthInXbm = (width + 7) / 8; |