From 080bc1ba7b8ddbf64777662f6427ae3f578c1c04 Mon Sep 17 00:00:00 2001 From: Mike Reed <> Date: Thu, 2 Apr 2009 09:06:19 -0700 Subject: AI 144018: change path to return its internal cached bounds, making it much lighter-weight to get the bounds. BUG=1748928 Automated import of CL 144018 --- WebCore/platform/graphics/android/PathAndroid.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'WebCore/platform/graphics/android') diff --git a/WebCore/platform/graphics/android/PathAndroid.cpp b/WebCore/platform/graphics/android/PathAndroid.cpp index cfcd2bc..af870f5 100644 --- a/WebCore/platform/graphics/android/PathAndroid.cpp +++ b/WebCore/platform/graphics/android/PathAndroid.cpp @@ -89,9 +89,7 @@ void Path::translate(const FloatSize& size) FloatRect Path::boundingRect() const { - SkRect r; - - m_path->computeBounds(&r, SkPath::kExact_BoundsType); + const SkRect& r = m_path->getBounds(); return FloatRect( SkScalarToFloat(r.fLeft), SkScalarToFloat(r.fTop), SkScalarToFloat(r.width()), @@ -283,9 +281,9 @@ static FloatRect boundingBoxForCurrentStroke(GraphicsContext* context) context->setupStrokePaint(&paint); SkPath fillPath; paint.getFillPath(*path, &fillPath); - SkRect r; - fillPath.computeBounds(&r, SkPath::kExact_BoundsType); - return FloatRect(r.fLeft, r.fTop, r.width(), r.height()); + const SkRect& r = fillPath.getBounds(); + return FloatRect(SkScalarToFloat(r.fLeft), SkScalarToFloat(r.fTop), + SkScalarToFloat(r.width()), SkScalarToFloat(r.height())); } static GraphicsContext* scratchContext() -- cgit v1.1