From 0c7c74112e07f612ea5a2da00a5962728225d41f Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 23 Aug 2014 17:55:42 +1000 Subject: GDRIVER now working for GDISP including multiple displays. Still uses old GDISP driver model for now Untested with uGFXnet. Still to come: Input drivers etc --- gfx.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'gfx.h') diff --git a/gfx.h b/gfx.h index de6047fc..dc7605e8 100644 --- a/gfx.h +++ b/gfx.h @@ -58,6 +58,14 @@ * @name GFX sub-systems that can be turned on * @{ */ + /** + * @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 @@ -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" -- cgit v1.2.3