blob: 3b9aa36a39a0e82a66602c847e7a6a2c064556df [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sky/engine/platform/graphics/ImageFilter.h"
#include "third_party/skia/include/core/SkImageFilter.h"
namespace blink {
FloatRect mapImageFilterRect(ImageFilter* filter, const FloatRect& rect)
{
SkRect dest;
filter->computeFastBounds(rect, &dest);
return dest;
}
} // namespace blink