| 1 | /* |
|---|---|
| 2 | * Copyright 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkBlurDrawLooper_DEFINED |
| 9 | #define SkBlurDrawLooper_DEFINED |
| 10 | |
| 11 | #include "include/core/SkDrawLooper.h" |
| 12 | |
| 13 | /** |
| 14 | * DEPRECATED: No longer supported in Skia. |
| 15 | */ |
| 16 | namespace SkBlurDrawLooper { |
| 17 | sk_sp<SkDrawLooper> SK_API Make(SkColor4f color, SkColorSpace* cs, |
| 18 | SkScalar sigma, SkScalar dx, SkScalar dy); |
| 19 | sk_sp<SkDrawLooper> SK_API Make(SkColor color, SkScalar sigma, SkScalar dx, SkScalar dy); |
| 20 | } // namespace SkBlurDrawLooper |
| 21 | |
| 22 | #endif |
| 23 |