aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/framebuffer/readme.txt
blob: e13321e4a19ebec0fadba15b3233a36658dd39ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.