Warning/error fix for r11099 on Mac 10.6
authorrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 5 Sep 2013 17:53:34 +0000 (17:53 +0000)
committerrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 5 Sep 2013 17:53:34 +0000 (17:53 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@11107 2bbb7eff-a529-9590-31e7-b0007b416f81

tests/BlurTest.cpp

index 5cd1ccaf22eccdecf6f154b2fa26467900f878a4..a0e36116949079fcc71d33dfc3cb50304fc420fe 100644 (file)
@@ -195,9 +195,9 @@ static int step(int x, SkScalar min, SkScalar max) {
 
 // Implement a Gaussian function with 0 mean and std.dev. of 'sigma'.
 static float gaussian(int x, SkScalar sigma) {
-    float k = SK_Scalar1/(sigma * sqrt(2.0f*SK_ScalarPI));
+    float k = SK_Scalar1/(sigma * sqrtf(2.0f*SK_ScalarPI));
     float exponent = -(x * x) / (2 * sigma * sigma);
-    return k * exp(exponent);
+    return k * expf(exponent);
 }
 
 // Perform a brute force convolution of a step function with a Gaussian.