| 953 | } |
| 954 | |
| 955 | void drawPixel(int16_t x, int16_t y, uint16_t color) { |
| 956 | if (color != curForeColor565) { foreColor565(color); } |
| 957 | point(x, y); |
| 958 | } |
| 959 | |
| 960 | void drawRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color) { |
| 961 | if (color != curForeColor565) { foreColor565(color); } |