michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #ifndef SkDrawBlur_DEFINED michael@0: #define SkDrawBlur_DEFINED michael@0: michael@0: #include "SkPaintParts.h" michael@0: #include "SkBlurMaskFilter.h" michael@0: michael@0: class SkDrawBlur : public SkDrawMaskFilter { michael@0: DECLARE_DRAW_MEMBER_INFO(Blur); michael@0: SkDrawBlur(); michael@0: virtual SkMaskFilter* getMaskFilter() SK_OVERRIDE; michael@0: protected: michael@0: SkScalar fSigma; michael@0: int /*SkBlurMaskFilter::BlurStyle*/ fBlurStyle; michael@0: michael@0: typedef SkDrawMaskFilter INHERITED; michael@0: }; michael@0: michael@0: #endif // SkDrawBlur_DEFINED