diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-08-23 17:56:23 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-08-23 17:56:23 +1000 |
commit | e758a60b100913fe7fa82e9751292781c0328a38 (patch) | |
tree | 7e95c7cde2d9246f98fb006e3683e407468ba9c2 /gfx.h | |
parent | 2b47a0708602b45b0b5db120a496bf92232aa4b1 (diff) | |
parent | 0c7c74112e07f612ea5a2da00a5962728225d41f (diff) | |
download | uGFX-e758a60b100913fe7fa82e9751292781c0328a38.tar.gz uGFX-e758a60b100913fe7fa82e9751292781c0328a38.tar.bz2 uGFX-e758a60b100913fe7fa82e9751292781c0328a38.zip |
Merge branch 'gdriver' into newmouse
Diffstat (limited to 'gfx.h')
-rw-r--r-- | gfx.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -59,6 +59,14 @@ * @{ */ /** + * @brief GFX Driver API + * @details Defaults to TRUE + * @note Not much useful can be done without a driver + */ + #ifndef GFX_USE_GDRIVER + #define GFX_USE_GDRIVER TRUE + #endif + /** * @brief GFX Graphics Display Basic API * @details Defaults to FALSE * @note Also add the specific hardware driver to your makefile. @@ -154,6 +162,7 @@ * */ #include "src/gos/sys_options.h" +#include "src/gdriver/sys_options.h" #include "src/gfile/sys_options.h" #include "src/gmisc/sys_options.h" #include "src/gqueue/sys_options.h" @@ -183,12 +192,14 @@ #include "src/gqueue/sys_rules.h" #include "src/gmisc/sys_rules.h" #include "src/gfile/sys_rules.h" +#include "src/gdriver/sys_rules.h" #include "src/gos/sys_rules.h" /** * Include the sub-system header files */ #include "src/gos/sys_defs.h" +//#include "src/gdriver/sys_defs.h" // This module is only included by source that needs it. #include "src/gfile/sys_defs.h" #include "src/gmisc/sys_defs.h" #include "src/gqueue/sys_defs.h" |