blob: 058c05ccd5a6c609f7d0a1747b9e5711c78ec261 [file] [log] [blame]
Tyler Dennistondf208a32020-10-30 16:01:54 -04001/*
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
12sk_sp<SkImageFilter> SkSVGFe::makeImageFilter(const SkSVGRenderContext& ctx,
13 SkSVGFilterContext* fctx) const {
14 return this->onMakeImageFilter(ctx, *fctx);
15}