aboutsummaryrefslogtreecommitdiffstats
path: root/src/gmisc/gmisc_options.h
blob: 4257b869fc906b3422350b5d3a9c02a1317f0825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * This file is subject to the terms of the GFX License. If a copy of
 * the license was not distributed with this file, you can obtain one at:
 *
 *              http://ugfx.io/license.html
 */

/**
 * @file    src/gmisc/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 GFXOFF
	 */
	#ifndef GMISC_NEED_ARRAYOPS
		#define GMISC_NEED_ARRAYOPS			GFXOFF
	#endif
	/**
	 * @brief   Include fast floating point trig functions (fsin, fcos)
	 * @details	Defaults to GFXOFF
	 */
	#ifndef GMISC_NEED_FASTTRIG
		#define GMISC_NEED_FASTTRIG			GFXOFF
	#endif
	/**
	 * @brief   Include fast fixed point trig functions (ffsin, ffcos)
	 * @details	Defaults to GFXOFF
	 */
	#ifndef GMISC_NEED_FIXEDTRIG
		#define GMISC_NEED_FIXEDTRIG		GFXOFF
	#endif
	/**
	 * @brief   Include fast inverse square root (x^-1/2)
	 * @details	Defaults to GFXOFF
	 */
	#ifndef GMISC_NEED_INVSQRT
		#define GMISC_NEED_INVSQRT		GFXOFF
	#endif
	/**
	 * @brief   Include polygon hit test functions
	 * @details	Defaults to GFXOFF
	 */
	#ifndef GMISC_NEED_HITTEST_POLY
		#define GMISC_NEED_HITTEST_POLY		GFXOFF
	#endif
/**
 * @}
 *
 * @name    GMISC Optional Parameters
 * @{
 */
	/**
	 * @brief	Modifies the @p invsqrt() function to assume a different integer to floating point endianness.
	 * @note	Normally the floating point format and the integer format have
	 * 			the same endianness. Unfortunately there are some strange
	 * 			processors that don't eg. some very early ARM devices.
	 * 			For those where the endianness doesn't match you can fix it by
	 * 			defining GMISC_INVSQRT_MIXED_ENDIAN.
	 * @note	This still assumes the processor is using an ieee floating point format.
	 *
	 * If you have a software floating point that uses a non-standard
	 * floating point format (or very strange hardware) then define
	 * GMISC_INVSQRT_REAL_SLOW and it will do it the hard way.
	 */
	#ifndef GMISC_INVSQRT_MIXED_ENDIAN
		#define GMISC_INVSQRT_MIXED_ENDIAN	GFXOFF
	#endif
	/**
	 * @brief	Modifies the @p invsqrt() function to do things the long slow way.
	 * @note	This causes the @p invsqrt() function to work regardless of the
	 * 			processor floating point format.
	 * @note	This makes the @p invsqrt() function very slow.
	 */
	#ifndef GMISC_INVSQRT_REAL_SLOW
		#define GMISC_INVSQRT_REAL_SLOW		GFXOFF
	#endif
/** @} */

#endif /* _GMISC_OPTIONS_H */
/** @} */