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
This commit is contained in:
parent
1130f93af7
commit
446f0b5e8e
@ -50,10 +50,10 @@
|
|||||||
#endif
|
#endif
|
||||||
/**
|
/**
|
||||||
* @brief Are text functions needed.
|
* @brief Are text functions needed.
|
||||||
* @details Defaults to TRUE
|
* @details Defaults to FALSE
|
||||||
*/
|
*/
|
||||||
#ifndef GDISP_NEED_TEXT
|
#ifndef GDISP_NEED_TEXT
|
||||||
#define GDISP_NEED_TEXT TRUE
|
#define GDISP_NEED_TEXT FALSE
|
||||||
#endif
|
#endif
|
||||||
/**
|
/**
|
||||||
* @brief Are circle functions needed.
|
* @brief Are circle functions needed.
|
||||||
@ -64,10 +64,10 @@
|
|||||||
#endif
|
#endif
|
||||||
/**
|
/**
|
||||||
* @brief Are ellipse functions needed.
|
* @brief Are ellipse functions needed.
|
||||||
* @details Defaults to TRUE
|
* @details Defaults to FALSE
|
||||||
*/
|
*/
|
||||||
#ifndef GDISP_NEED_ELLIPSE
|
#ifndef GDISP_NEED_ELLIPSE
|
||||||
#define GDISP_NEED_ELLIPSE TRUE
|
#define GDISP_NEED_ELLIPSE FALSE
|
||||||
#endif
|
#endif
|
||||||
/**
|
/**
|
||||||
* @brief Are arc functions needed.
|
* @brief Are arc functions needed.
|
||||||
|
Loading…
Reference in New Issue
Block a user