You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
/*
|
|
* Copyright 2021 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkSVGFeImage_DEFINED
|
|
#define SkSVGFeImage_DEFINED
|
|
|
|
#include "modules/svg/include/SkSVGFe.h"
|
|
#include "modules/svg/include/SkSVGTypes.h"
|
|
|
|
class SkSVGFeImage : public SkSVGFe {
|
|
public:
|
|
static sk_sp<SkSVGFeImage> Make() { return sk_sp<SkSVGFeImage>(new SkSVGFeImage()); }
|
|
|
|
SVG_ATTR(Href , SkSVGIRI , SkSVGIRI())
|
|
SVG_ATTR(PreserveAspectRatio, SkSVGPreserveAspectRatio, SkSVGPreserveAspectRatio())
|
|
|
|
protected:
|
|
bool parseAndSetAttribute(const char*, const char*) override;
|
|
|
|
sk_sp<SkImageFilter> onMakeImageFilter(const SkSVGRenderContext&,
|
|
const SkSVGFilterContext&) const override;
|
|
|
|
std::vector<SkSVGFeInputType> getInputs() const override { return {}; }
|
|
|
|
private:
|
|
SkSVGFeImage() : INHERITED(SkSVGTag::kFeImage) {}
|
|
|
|
using INHERITED = SkSVGFe;
|
|
};
|
|
|
|
#endif // SkSVGFeImage_DEFINED
|