goat3d

view libs/vmath/vmath_config.h @ 28:9ba3e2fb8a33

modified vmath to work with vs2012, still memory corruptions in 3dsmax...
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 29 Sep 2013 08:46:19 +0300
parents 4deb0b12fe14
children
line source
1 #ifndef VMATH_CONFIG_H_
2 #define VMATH_CONFIG_H_
4 #ifdef __cplusplus
5 #define VMATH_INLINE inline
6 #elif (__STDC_VERSION__ < 199999)
7 #if defined(__GNUC__) || defined(_MSC_VER)
8 #define VMATH_INLINE __inline
9 #else
10 #define VMATH_INLINE
12 #ifdef VECTOR_H_
13 #warning "compiling vector operations without inline, performance might suffer"
14 #endif /* VECTOR_H_ */
16 #endif /* gcc/msvc */
17 #endif /* not C99 */
19 #define SINGLE_PRECISION_MATH
21 #endif /* VMATH_CONFIG_H_ */