gpuray_glsl

diff vmath/vmath.h @ 1:92695e89164b

vc project
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 09 Nov 2014 14:30:37 +0200
parents f234630e38ff
children
line diff
     1.1 --- a/vmath/vmath.h	Sun Nov 09 13:03:36 2014 +0200
     1.2 +++ b/vmath/vmath.h	Sun Nov 09 14:30:37 2014 +0200
     1.3 @@ -44,10 +44,6 @@
     1.4  #define MIN(a, b)	((a) < (b) ? (a) : (b))
     1.5  #define MAX(a, b)	((a) > (b) ? (a) : (b))
     1.6  
     1.7 -#ifndef __GNUC__
     1.8 -#define round(x)	((x) >= 0 ? (x) + 0.5 : (x) - 0.5)
     1.9 -#endif
    1.10 -
    1.11  #ifdef __cplusplus
    1.12  extern "C" {
    1.13  #endif	/* __cplusplus */