mesa: atan2f and powf need two args.
authorJosé Fonseca <jfonseca@vmware.com>
Sat, 14 Aug 2010 11:43:56 +0000 (12:43 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Sat, 14 Aug 2010 11:44:41 +0000 (12:44 +0100)
src/mesa/main/imports.h

index 846a9a0faf4fb5f7cd702ee1b43b5a11c4c64204..42eba33d25871ab1e4ffcb3f5a7cdca9a40eaa4f 100644 (file)
@@ -124,7 +124,7 @@ typedef union { GLfloat f; GLint i; } fi_type;
    && (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L))
 #define acosf(f) ((float) acos(f))
 #define asinf(f) ((float) asin(f))
-#define atan2f(f) ((float) atan2(f))
+#define atan2f(x,y) ((float) atan2(x,y))
 #define atanf(f) ((float) atan(f))
 #define cielf(f) ((float) ciel(f))
 #define cosf(f) ((float) cos(f))
@@ -134,7 +134,7 @@ typedef union { GLfloat f; GLint i; } fi_type;
 #define floorf(f) ((float) floor(f))
 #define logf(f) ((float) log(f))
 #define log2f(f) ((float) log2(f))
-#define powf(f) ((float) pow(f))
+#define powf(x,y) ((float) pow(x,y))
 #define sinf(f) ((float) sin(f))
 #define sinhf(f) ((float) sinh(f))
 #define sqrtf(f) ((float) sqrt(f))