From add02e70a3fd74d8e161ad253dfc077959de024a Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Mon, 30 Jun 2008 16:15:53 +0000 Subject: [PATCH] Bug 985 - MSC math.h / M_PI issue * clutter/cogl/gl/cogl.c (set_clip_plane): * clutter/clutter-alpha.c (sinc_func): Use G_PI instead of M_PI because M_PI isn't defined in MSVC without a special #define. Thanks to Haakon Sporsheim --- gl/cogl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gl/cogl.c b/gl/cogl.c index f594c8546..f79d231ca 100644 --- a/gl/cogl.c +++ b/gl/cogl.c @@ -420,7 +420,7 @@ set_clip_plane (GLint plane_num, /* Calculate the angle between the axes and the line crossing the two points */ angle = atan2f ((vertex_b[1] - vertex_a[1]), - (vertex_b[0] - vertex_a[0])) * 180.0f / M_PI; + (vertex_b[0] - vertex_a[0])) * 180.0f / G_PI; GE( glPushMatrix () ); /* Load the identity matrix and multiply by the reverse of the