From 09042b80d22837c760bb530124aaa67469b19b8f Mon Sep 17 00:00:00 2001 From: "robertphillips@google.com" Date: Fri, 6 Apr 2012 20:01:46 +0000 Subject: Fixing Windows compiler complaints http://codereview.appspot.com/5991056/ git-svn-id: http://skia.googlecode.com/svn/trunk@3626 2bbb7eff-a529-9590-31e7-b0007b416f81 --- bench/InterpBench.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bench/InterpBench.cpp') diff --git a/bench/InterpBench.cpp b/bench/InterpBench.cpp index 69fbd9bb49..1db832d5d2 100644 --- a/bench/InterpBench.cpp +++ b/bench/InterpBench.cpp @@ -18,8 +18,8 @@ class InterpBench : public SkBenchmark { public: InterpBench(void* param, const char name[]) : INHERITED(param) { fName.printf("interp_%s", name); - fFx = 3.3; - fDx = 0.1257; + fFx = 3.3f; + fDx = 0.1257f; } virtual void performTest(int16_t dst[], float x, float dx, int count) = 0; -- cgit v1.2.3