From 6853e808a464ca75ff1328338d1eb55ff27c4337 Mon Sep 17 00:00:00 2001 From: "robertphillips@google.com" Date: Mon, 16 Apr 2012 15:50:18 +0000 Subject: Addressed more Windows compiler complaint issues http://codereview.appspot.com/6007056/ git-svn-id: http://skia.googlecode.com/svn/trunk@3689 2bbb7eff-a529-9590-31e7-b0007b416f81 --- tests/AAClipTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/AAClipTest.cpp') diff --git a/tests/AAClipTest.cpp b/tests/AAClipTest.cpp index 4817c06738..2898f30880 100644 --- a/tests/AAClipTest.cpp +++ b/tests/AAClipTest.cpp @@ -322,10 +322,10 @@ static void test_regressions(skiatest::Reporter* reporter) { { SkAAClip clip; SkRect r; - r.fLeft = SkFloatToScalar(129.892181); - r.fTop = SkFloatToScalar(10.3999996); - r.fRight = SkFloatToScalar(130.892181); - r.fBottom = SkFloatToScalar(20.3999996); + r.fLeft = SkFloatToScalar(129.892181f); + r.fTop = SkFloatToScalar(10.3999996f); + r.fRight = SkFloatToScalar(130.892181f); + r.fBottom = SkFloatToScalar(20.3999996f); clip.setRect(r, true); } } -- cgit v1.2.3