void fill(uint16_t x, uint16_t y, uint16_t width, uint16_t height, RgbColor color) { fill(x, y, width, height, color.red(), color.green(), color.blue()); }
void setPixel(uint16_t x, uint16_t y, RgbColor color) { setPixel(x, y, color.red(), color.green(), color.blue()); }