Home
last modified time | relevance | path

Searched refs:screenBuffer (Results 1 – 3 of 3) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/src/lcd/
Deboled.cxx35 static uint16_t screenBuffer[BUFFER_SIZE]; variable
123 error = data(screenBuffer[i]); in refresh()
251 screenBuffer[(x/2) + ((y/8) * VERT_COLUMNS)] ^= (1<<(y%8+(x%2 * 8))); in drawPixel()
254 screenBuffer[(x/2) + ((y/8) * VERT_COLUMNS)] |= (1<<(y%8+(x%2 * 8))); in drawPixel()
257 screenBuffer[(x/2) + ((y/8) * VERT_COLUMNS)] &= ~(1<<(y%8+(x%2 * 8))); in drawPixel()
566 screenBuffer[i] = 0x0000; in clearScreenBuffer()
/hardware/bsp/intel/peripheral/libupm/src/st7735/
Dgfx.cxx33 GFX::GFX (int width, int height, uint8_t * screenBuffer, const unsigned char * font) : WIDTH(width)… in GFX() argument
37 m_map = screenBuffer; in GFX()
Dgfx.h52 GFX (int width, int height, uint8_t * screenBuffer, const unsigned char * font);