Searched refs:framebuffer (Results 1 – 4 of 4) sorted by relevance
17 uint8_t *framebuffer = (uint8_t *)image->pixels + image->rowbytes * idx; in lcd_get_line() local23 uint8_t inpix = framebuffer[i]; in lcd_get_line()40 uint8_t val = *framebuffer++; in lcd_get_line()66 uint8_t val = *framebuffer; in lcd_get_line()
23 uint8_t *framebuffer = (uint8_t *) image->pixels + image->rowbytes * idx; in lcd_get_line() local26 memcpy(result, framebuffer, MLCD_BYTES_LINE); in lcd_get_line()30 if (framebuffer[i] > 128) { in lcd_get_line()
42 static uint8_t framebuffer[M4DISPLAY_HEIGHT][M4DISPLAY_WIDTH]; variable173 … *msb++ = ((framebuffer[i][j] & 0b01010100) | ((framebuffer[i][j+1] & 0b01010100) << 1)) >> 2; in s4lcd_flush()174 … *lsb++ = ((framebuffer[i][j] & 0b10101000) | ((framebuffer[i][j+1] & 0b10101000) >> 1)) >> 2; in s4lcd_flush()189 fb->image.pixels = (void *)framebuffer; in display_get_framebuffer()
17 int display_init(void *framebuffer);
Completed in 3 milliseconds