summaryrefslogtreecommitdiffstats
path: root/gfx/skia/skia/src/animator/SkDrawBlur.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/skia/skia/src/animator/SkDrawBlur.h')
-rw-r--r--gfx/skia/skia/src/animator/SkDrawBlur.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/gfx/skia/skia/src/animator/SkDrawBlur.h b/gfx/skia/skia/src/animator/SkDrawBlur.h
new file mode 100644
index 000000000..d3a528c22
--- /dev/null
+++ b/gfx/skia/skia/src/animator/SkDrawBlur.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2006 The Android Open Source Project
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkDrawBlur_DEFINED
+#define SkDrawBlur_DEFINED
+
+#include "SkPaintPart.h"
+#include "SkBlurMaskFilter.h"
+
+class SkDrawBlur : public SkDrawMaskFilter {
+ DECLARE_DRAW_MEMBER_INFO(Blur);
+ SkDrawBlur();
+ SkMaskFilter* getMaskFilter() override;
+protected:
+ SkScalar fSigma;
+ int /*SkBlurStyle*/ fBlurStyle;
+
+ typedef SkDrawMaskFilter INHERITED;
+};
+
+#endif // SkDrawBlur_DEFINED