GDISP_NEED_TEXT and GDISP_NEED_ELLIPSE defaults to FALSE now. The former requires to enable at least one font which may not be needed (it sucks if compiling the basic examples) and the latter is barely needed anyway

ugfx_release_2.6
Joel Bodenmann 2013-10-28 00:09:34 +01:00
parent 1130f93af7
commit 446f0b5e8e
1 changed files with 4 additions and 4 deletions

View File

@ -50,10 +50,10 @@
#endif
/**
* @brief Are text functions needed.
* @details Defaults to TRUE
* @details Defaults to FALSE
*/
#ifndef GDISP_NEED_TEXT
#define GDISP_NEED_TEXT TRUE
#define GDISP_NEED_TEXT FALSE
#endif
/**
* @brief Are circle functions needed.
@ -64,10 +64,10 @@
#endif
/**
* @brief Are ellipse functions needed.
* @details Defaults to TRUE
* @details Defaults to FALSE
*/
#ifndef GDISP_NEED_ELLIPSE
#define GDISP_NEED_ELLIPSE TRUE
#define GDISP_NEED_ELLIPSE FALSE
#endif
/**
* @brief Are arc functions needed.