Tyler Denniston | df208a3 | 2020-10-30 16:01:54 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2020 Google Inc. |
| 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 SkSVGFe_DEFINED |
| 9 | #define SkSVGFe_DEFINED |
| 10 | |
| 11 | #include "modules/svg/include/SkSVGHiddenContainer.h" |
| 12 | |
| 13 | class SkImageFilter; |
| 14 | class SkSVGFilterContext; |
| 15 | |
| 16 | class SkSVGFe : public SkSVGHiddenContainer { |
| 17 | public: |
| 18 | ~SkSVGFe() override = default; |
| 19 | |
| 20 | static bool IsFilterElement(const sk_sp<SkSVGNode>& node) { return false; } |
| 21 | |
| 22 | sk_sp<SkImageFilter> makeImageFilter(const SkSVGRenderContext& ctx, |
| 23 | SkSVGFilterContext* fctx) const; |
| 24 | |
| 25 | protected: |
| 26 | explicit SkSVGFe(SkSVGTag t) : INHERITED(t) {} |
| 27 | |
| 28 | virtual sk_sp<SkImageFilter> onMakeImageFilter(const SkSVGRenderContext&, |
| 29 | const SkSVGFilterContext&) const = 0; |
| 30 | |
| 31 | private: |
| 32 | using INHERITED = SkSVGHiddenContainer; |
| 33 | }; |
| 34 | |
| 35 | #endif // SkSVGFe_DEFINED |