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 | #include "include/effects/SkImageFilters.h" |
| 9 | #include "modules/svg/include/SkSVGFe.h" |
| 10 | #include "modules/svg/include/SkSVGFilterContext.h" |
| 11 | |
| 12 | sk_sp<SkImageFilter> SkSVGFe::makeImageFilter(const SkSVGRenderContext& ctx, |
| 13 | SkSVGFilterContext* fctx) const { |
| 14 | return this->onMakeImageFilter(ctx, *fctx); |
| 15 | } |