From 4b413c8bb123e42ca4b9c7bfa6bc2167283cb84c Mon Sep 17 00:00:00 2001 From: "commit-bot@chromium.org" Date: Mon, 25 Nov 2013 19:44:07 +0000 Subject: remove SkFloatToScalar macro BUG= R=reed@google.com, djsollen@google.com Author: caryclark@google.com Review URL: https://codereview.chromium.org/85463005 git-svn-id: http://skia.googlecode.com/svn/trunk@12385 2bbb7eff-a529-9590-31e7-b0007b416f81 --- gm/complexclip.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gm/complexclip.cpp') diff --git a/gm/complexclip.cpp b/gm/complexclip.cpp index 86386b3d49..8ff1dfafd9 100644 --- a/gm/complexclip.cpp +++ b/gm/complexclip.cpp @@ -100,10 +100,10 @@ protected: // device boundaries so we need to "undo" the effect of the // scale and translate SkRect bounds = SkRect::MakeLTRB( - SkFloatToScalar(4.0f/3.0f * -20), - SkFloatToScalar(4.0f/3.0f * -20), - SkFloatToScalar(4.0f/3.0f * (this->getISize().fWidth - 20)), - SkFloatToScalar(4.0f/3.0f * (this->getISize().fHeight - 20))); + 4.0f/3.0f * -20, + 4.0f/3.0f * -20, + 4.0f/3.0f * (this->getISize().fWidth - 20), + 4.0f/3.0f * (this->getISize().fHeight - 20)); bounds.inset(SkIntToScalar(100), SkIntToScalar(100)); SkPaint boundPaint; -- cgit v1.2.3