goat3d

view libs/vmath/vmath_config.h @ 29:3d669155709d

- switched the unix build to use the internal vmath/anim as well - fixed a memory corruption issue which was caused by including the system-wide installed version of the anim.h header file - started the ass2goat assimp->goat3d converter
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 29 Sep 2013 21:53:03 +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_ */