Searched refs:screenBuffer (Results 1 – 3 of 3) sorted by relevance
35 static uint16_t screenBuffer[BUFFER_SIZE]; variable123 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()
33 GFX::GFX (int width, int height, uint8_t * screenBuffer, const unsigned char * font) : WIDTH(width)… in GFX() argument37 m_map = screenBuffer; in GFX()
52 GFX (int width, int height, uint8_t * screenBuffer, const unsigned char * font);