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
This commit is contained in:
Mike Reed
2009-04-02 09:06:19 -07:00
committed by The Android Open Source Project
parent 10b4043c99
commit 8ba88775fe

View File

@@ -75,9 +75,8 @@ public:
return result;
}
static void computeBounds(JNIEnv* env, jobject clazz, SkPath* obj, jobject bounds, SkPath::BoundsType btype) {
SkRect bounds_;
obj->computeBounds(&bounds_, btype);
static void computeBounds(JNIEnv* env, jobject clazz, SkPath* obj, jobject bounds, int boundstype) {
const SkRect& bounds_ = obj->getBounds();
GraphicsJNI::rect_to_jrectf(bounds_, env, bounds);
}