diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-10-11 09:34:32 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-10-11 09:34:32 +0200 |
commit | 9174141aca356daaedadf23c098bca3e35cdbc58 (patch) | |
tree | 8bfe458d41b9541b57f6e07b70770525311a729c /docs | |
parent | 069b0d32d886854e8c6dc959ba6889130a53a348 (diff) | |
download | uGFX-9174141aca356daaedadf23c098bca3e35cdbc58.tar.gz uGFX-9174141aca356daaedadf23c098bca3e35cdbc58.tar.bz2 uGFX-9174141aca356daaedadf23c098bca3e35cdbc58.zip |
docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/configure.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/configure.txt b/docs/configure.txt index 200c9966..f108afcb 100644 --- a/docs/configure.txt +++ b/docs/configure.txt @@ -18,6 +18,14 @@ GDISP macors: #define GDISP_NEED_MULTITHREAD // GDISP will be accessed across different threads -> thread safe mode
#define GDISP_NEED_CONTROL // must be set to TRUE if controll access to the LCD controller is needed, eg for changing orientation or power mode
+ #define GDISP_NEED_CLIP // when clipping is needed
+ #define GDISP_NEED_CIRCLE // for circle drawing support (filled and frame)
+ #define GDISP_NEED_ELLIPSE // for ellipse drawing support (filled and frame)
+ #define GDISP_NEED_ARC // for arc drawing support (filled and frame)
+ #define GDISP_NEED_TEXT // for font rendering support
+ #define GDISP_NEED_PIXELREAD // to read a pixels color value back
+ #define GDISP_NEED_SCROLL // is scrolling is needed (pixel shift)
+ #define GDISPI_NEED_QUERY // to make certain queries to the LCD controller
|