2013-05-25 01:26:52 +10:00
|
|
|
/*
|
2013-06-15 21:37:22 +10:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-25 01:26:52 +10:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 22:20:37 +02:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-25 01:26:52 +10:00
|
|
|
*/
|
2013-02-11 09:25:45 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file include/gmisc/options.h
|
|
|
|
* @brief GMISC - Miscellaneous Routines options header file.
|
|
|
|
*
|
|
|
|
* @addtogroup GMISC
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GMISC_OPTIONS_H
|
|
|
|
#define _GMISC_OPTIONS_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name GMISC Functionality to be included
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @brief Include array operation functions
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
*/
|
|
|
|
#ifndef GMISC_NEED_ARRAYOPS
|
|
|
|
#define GMISC_NEED_ARRAYOPS FALSE
|
|
|
|
#endif
|
2013-05-25 01:26:52 +10:00
|
|
|
/**
|
2013-09-24 16:10:15 +10:00
|
|
|
* @brief Include fast fixed point trig functions (sin, cos)
|
2013-05-25 01:26:52 +10:00
|
|
|
* @details Defaults to FALSE
|
|
|
|
*/
|
2013-09-24 16:10:15 +10:00
|
|
|
#ifndef GMISC_NEED_FIXEDTRIG
|
|
|
|
#define GMISC_NEED_FIXEDTRIG FALSE
|
2013-05-25 01:26:52 +10:00
|
|
|
#endif
|
|
|
|
/**
|
2013-09-24 16:10:15 +10:00
|
|
|
* @brief Include fast inverse square root (x^-1/2)
|
2013-05-25 01:26:52 +10:00
|
|
|
* @details Defaults to FALSE
|
|
|
|
*/
|
2013-09-24 16:10:15 +10:00
|
|
|
#ifndef GMISC_NEED_INVSQRT
|
|
|
|
#define GMISC_NEED_INVSQRT FALSE
|
2013-05-25 01:26:52 +10:00
|
|
|
#endif
|
2013-02-11 09:25:45 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*
|
|
|
|
* @name GMISC Optional Sizing Parameters
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#endif /* _GMISC_OPTIONS_H */
|
|
|
|
/** @} */
|