istereo2

annotate libs/vmath/vmath_config.h @ 27:f0da8b2b61ec

removed iOS cpu restriction and bumped build number to 3 implemented android JNI calls to show/hide ads (untested)
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 05 Oct 2015 17:15:02 +0300
parents
children
rev   line source
nuclear@2 1 #ifndef VMATH_CONFIG_H_
nuclear@2 2 #define VMATH_CONFIG_H_
nuclear@2 3
nuclear@2 4 #if (__STDC_VERSION__ < 199999)
nuclear@2 5 #if defined(__GNUC__) || defined(_MSC_VER)
nuclear@2 6 #define inline __inline
nuclear@2 7 #else
nuclear@2 8 #define inline
nuclear@2 9
nuclear@2 10 #ifdef VECTOR_H_
nuclear@2 11 #warning "compiling vector operations without inline, performance might suffer"
nuclear@2 12 #endif /* VECTOR_H_ */
nuclear@2 13
nuclear@2 14 #endif /* gcc/msvc */
nuclear@2 15 #endif /* not C99 */
nuclear@2 16
nuclear@2 17 #define SINGLE_PRECISION_MATH
nuclear@2 18
nuclear@2 19 #endif /* VMATH_CONFIG_H_ */