ugfx/drivers/gdisp/framebuffer
inmarket f57f6be212 Added Fb24bpp driver for RGB888 and BGR888 packed framebuffer displays 2017-01-20 17:57:18 +10:00
..
board_framebuffer_template.h GDISP framebuffer driver + an implementation for the linux kernel framebuffer device 2014-05-22 17:21:19 +10:00
driver.mk GDISP framebuffer driver + an implementation for the linux kernel framebuffer device 2014-05-22 17:21:19 +10:00
gdisp_lld_config.h GDISP framebuffer driver + an implementation for the linux kernel framebuffer device 2014-05-22 17:21:19 +10:00
gdisp_lld_framebuffer.c Update framebuffer driver for better information hiding 2016-04-25 14:55:54 +10:00
readme.txt Added Fb24bpp driver for RGB888 and BGR888 packed framebuffer displays 2017-01-20 17:57:18 +10:00

readme.txt

To use this driver:

1. Add in your gfxconf.h:
	a) #define GFX_USE_GDISP		TRUE

2. To your makefile add the following lines:
	include $(GFXLIB)/gfx.mk
	include $(GFXLIB)/drivers/gdisp/framebuffer/driver.mk

3. Add a board_framebuffer.h to you project directory (or board directory)
	base on one of the templates.
	
Note: This driver supports framebuffers in byte, word or dword sized pixels.
	It does not support packed pixel formats eg 1, 2, 4, 15 or 24 bits per pixel
	except where the framebuffer format expects those in memory as 1 byte, 2 bytes or 4 bytes per pixel.
	
Note: For RGB888 and BGR888 packed framebuffer formats use the Fb24bpp driver instead.