aboutsummaryrefslogtreecommitdiffstats
path: root/src/gmisc
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-02-27 17:44:21 +1000
committerinmarket <andrewh@inmarket.com.au>2018-02-27 17:44:21 +1000
commitf265924396167729e8d9fb36a0383263f36c1270 (patch)
tree28843eb24b18999cf0217ecb0fe935f133901066 /src/gmisc
parent14786e97b618b8bc2a0ff1c732d45288fe550e33 (diff)
downloaduGFX-f265924396167729e8d9fb36a0383263f36c1270.tar.gz
uGFX-f265924396167729e8d9fb36a0383263f36c1270.tar.bz2
uGFX-f265924396167729e8d9fb36a0383263f36c1270.zip
First set of V3 macro changes
Diffstat (limited to 'src/gmisc')
-rw-r--r--src/gmisc/gmisc_options.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gmisc/gmisc_options.h b/src/gmisc/gmisc_options.h
index 5dce4d94..0523c111 100644
--- a/src/gmisc/gmisc_options.h
+++ b/src/gmisc/gmisc_options.h
@@ -22,38 +22,38 @@
*/
/**
* @brief Include array operation functions
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GMISC_NEED_ARRAYOPS
- #define GMISC_NEED_ARRAYOPS FALSE
+ #define GMISC_NEED_ARRAYOPS GFXOFF
#endif
/**
* @brief Include fast floating point trig functions (fsin, fcos)
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GMISC_NEED_FASTTRIG
- #define GMISC_NEED_FASTTRIG FALSE
+ #define GMISC_NEED_FASTTRIG GFXOFF
#endif
/**
* @brief Include fast fixed point trig functions (ffsin, ffcos)
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GMISC_NEED_FIXEDTRIG
- #define GMISC_NEED_FIXEDTRIG FALSE
+ #define GMISC_NEED_FIXEDTRIG GFXOFF
#endif
/**
* @brief Include fast inverse square root (x^-1/2)
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GMISC_NEED_INVSQRT
- #define GMISC_NEED_INVSQRT FALSE
+ #define GMISC_NEED_INVSQRT GFXOFF
#endif
/**
* @brief Include polygon hit test functions
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GMISC_NEED_HITTEST_POLY
- #define GMISC_NEED_HITTEST_POLY FALSE
+ #define GMISC_NEED_HITTEST_POLY GFXOFF
#endif
/**
* @}
@@ -75,7 +75,7 @@
* GMISC_INVSQRT_REAL_SLOW and it will do it the hard way.
*/
#ifndef GMISC_INVSQRT_MIXED_ENDIAN
- #define GMISC_INVSQRT_MIXED_ENDIAN FALSE
+ #define GMISC_INVSQRT_MIXED_ENDIAN GFXOFF
#endif
/**
* @brief Modifies the @p invsqrt() function to do things the long slow way.
@@ -84,7 +84,7 @@
* @note This makes the @p invsqrt() function very slow.
*/
#ifndef GMISC_INVSQRT_REAL_SLOW
- #define GMISC_INVSQRT_REAL_SLOW FALSE
+ #define GMISC_INVSQRT_REAL_SLOW GFXOFF
#endif
/** @} */