Adding GDISP_NEED_ARCSECTOR stuff that was missing
This commit is contained in:
parent
105e50dcd4
commit
d4c68c5afe
2 changed files with 9 additions and 0 deletions
|
@ -55,6 +55,7 @@
|
||||||
//#define GDISP_NEED_CIRCLE FALSE
|
//#define GDISP_NEED_CIRCLE FALSE
|
||||||
//#define GDISP_NEED_ELLIPSE FALSE
|
//#define GDISP_NEED_ELLIPSE FALSE
|
||||||
//#define GDISP_NEED_ARC FALSE
|
//#define GDISP_NEED_ARC FALSE
|
||||||
|
//#define GDISP_NEED_ARCSECTORS FALSE
|
||||||
//#define GDISP_NEED_CONVEX_POLYGON FALSE
|
//#define GDISP_NEED_CONVEX_POLYGON FALSE
|
||||||
//#define GDISP_NEED_SCROLL FALSE
|
//#define GDISP_NEED_SCROLL FALSE
|
||||||
//#define GDISP_NEED_PIXELREAD FALSE
|
//#define GDISP_NEED_PIXELREAD FALSE
|
||||||
|
|
|
@ -101,6 +101,14 @@
|
||||||
#ifndef GDISP_NEED_ELLIPSE
|
#ifndef GDISP_NEED_ELLIPSE
|
||||||
#define GDISP_NEED_ELLIPSE FALSE
|
#define GDISP_NEED_ELLIPSE FALSE
|
||||||
#endif
|
#endif
|
||||||
|
/**
|
||||||
|
* @brief Are arc sector functions needed.
|
||||||
|
* @details Defaults to FALSE
|
||||||
|
* @note Uses integer algorithms only. It does not use any trig or floating point.
|
||||||
|
*/
|
||||||
|
#ifndef GDISP_NEED_ARCSECTORS
|
||||||
|
#define GDISP_NEED_ARCSECTORS FALSE
|
||||||
|
#endif
|
||||||
/**
|
/**
|
||||||
* @brief Are arc functions needed.
|
* @brief Are arc functions needed.
|
||||||
* @details Defaults to FALSE
|
* @details Defaults to FALSE
|
||||||
|
|
Loading…
Add table
Reference in a new issue