Skia
2D Graphics Library
SkSVGFeImage.h
Go to the documentation of this file.
1 /*
2  * Copyright 2021 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 SkSVGFeImage_DEFINED
9 #define SkSVGFeImage_DEFINED
10 
13 
14 class SK_API SkSVGFeImage : public SkSVGFe {
15 public:
17 
18  SVG_ATTR(Href , SkSVGIRI , SkSVGIRI())
20 
21 protected:
22  bool parseAndSetAttribute(const char*, const char*) override;
23 
24  sk_sp<SkImageFilter> onMakeImageFilter(const SkSVGRenderContext&,
25  const SkSVGFilterContext&) const override;
26 
27  std::vector<SkSVGFeInputType> getInputs() const override { return {}; }
28 
29 private:
30  SkSVGFeImage() : INHERITED(SkSVGTag::kFeImage) {}
31 
32  using INHERITED = SkSVGFe;
33 };
34 
35 #endif // SkSVGFeImage_DEFINED
SkSVGTag
Definition: SkSVGNode.h:23
#define SVG_ATTR(attr_name, attr_type, attr_default)
Definition: SkSVGNode.h:203
Base class for image filters.
Definition: SkImageFilter.h:35
Definition: SkSVGFeImage.h:14
static sk_sp< SkSVGFeImage > Make()
Definition: SkSVGFeImage.h:16
Definition: SkSVGTypes.h:635
Definition: SkSVGFe.h:18
SkSVGFe(SkSVGTag t)
Definition: SkSVGFe.h:65
Definition: SkSVGFilterContext.h:21
Definition: SkSVGTypes.h:152
Definition: SkSVGRenderContext.h:61
Shared pointer class to wrap classes that support a ref()/unref() interface.
Definition: SkRefCnt.h:220
Definition: SkSVGTypes.h:585