37 #include "lcd_hal/io.h" 39 #if defined(CONFIG_ADAFRUIT_GFX_ENABLE) 41 #include "nano_gfx_types.h" 43 #ifndef DOXYGEN_SHOULD_SKIP_THIS 48 #include "Adafruit_GFX.h" 51 #include "Adafruit_GFX.h" 54 #endif // DOXYGEN_SHOULD_SKIP_THIS 67 template <u
int8_t BPP>
100 void drawPixel(int16_t x, int16_t y, uint16_t color)
override;
109 #ifndef DOXYGEN_SHOULD_SKIP_THIS 112 void fillScreen(uint16_t color)
override 114 fillRect(offset.
x, offset.
y, _width, _height, color);
124 inline void rotatePosition(int16_t &x, int16_t &y)
126 switch (getRotation()) {
147 template <u
int8_t BPP>
163 virtual void blt() = 0;
179 using AdafruitCanvasBase::AdafruitCanvasBase;
182 #ifndef DOXYGEN_SHOULD_SKIP_THIS 188 if ((x < 0) || (x >= width()) || (y < 0) || (y >= height()))
192 rotatePosition(x, y);
196 case 1:
m_buffer[x+ (y/8)*WIDTH] |= (1 << (y&7));
break;
197 case 0:
m_buffer[x+ (y/8)*WIDTH] &= ~(1 << (y&7));
break;
198 case 2:
m_buffer[x+ (y/8)*WIDTH] ^= (1 << (y&7));
break;
201 #endif // DOXYGEN_SHOULD_SKIP_THIS 217 using AdafruitCanvasBase::AdafruitCanvasBase;
220 #ifndef DOXYGEN_SHOULD_SKIP_THIS 226 if ((x < 0) || (x >= width()) || (y < 0) || (y >= height()))
230 rotatePosition(x, y);
234 #endif // DOXYGEN_SHOULD_SKIP_THIS 251 using AdafruitCanvasBase::AdafruitCanvasBase;
254 #ifndef DOXYGEN_SHOULD_SKIP_THIS 260 if ((x < 0) || (x >= width()) || (y < 0) || (y >= height()))
264 rotatePosition(x, y);
266 m_buffer[(x+y*WIDTH) * 2 + 0] = color;
267 m_buffer[(x+y*WIDTH) * 2 + 1] = color >> 8;
269 #endif // DOXYGEN_SHOULD_SKIP_THIS 275 #endif // CONFIG_ADAFRUIT_GFX_ENABLE AdafruitCanvasOps(lcduint_t w, lcduint_t h, uint8_t *buffer)
void setOffset(lcdint_t ox, lcdint_t oy)
#define canvas_swap_data(a, b, type)
static const uint8_t BITS_PER_PIXEL
void drawPixel(int16_t x, int16_t y, uint16_t color) override