2013-05-24 15:26:52 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-24 15:26:52 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-24 15:26:52 +00:00
|
|
|
*/
|
2013-02-11 08:25:45 +00: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-24 15:26:52 +00:00
|
|
|
/**
|
|
|
|
* @brief Include fast array based trig functions (sin, cos)
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
*/
|
|
|
|
#ifndef GMISC_NEED_FASTTRIG
|
|
|
|
#define GMISC_NEED_FASTTRIG FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief Include fast fixed point trig functions (sin, cos)
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
*/
|
|
|
|
#ifndef GMISC_NEED_FIXEDTRIG
|
|
|
|
#define GMISC_NEED_FIXEDTRIG FALSE
|
|
|
|
#endif
|
2013-02-11 08:25:45 +00:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*
|
|
|
|
* @name GMISC Optional Sizing Parameters
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#endif /* _GMISC_OPTIONS_H */
|
|
|
|
/** @} */
|