2020-10-30 20:01:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkSVGFe_DEFINED
|
|
|
|
#define SkSVGFe_DEFINED
|
|
|
|
|
2020-12-11 16:47:55 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2020-10-30 20:01:54 +00:00
|
|
|
#include "modules/svg/include/SkSVGHiddenContainer.h"
|
|
|
|
|
|
|
|
class SkImageFilter;
|
|
|
|
class SkSVGFilterContext;
|
|
|
|
|
|
|
|
class SkSVGFe : public SkSVGHiddenContainer {
|
|
|
|
public:
|
2020-11-03 15:04:25 +00:00
|
|
|
static bool IsFilterEffect(const sk_sp<SkSVGNode>& node) {
|
2020-11-09 17:46:02 +00:00
|
|
|
return node->tag() == SkSVGTag::kFeTurbulence || node->tag() == SkSVGTag::kFeColorMatrix ||
|
2021-01-12 14:34:23 +00:00
|
|
|
node->tag() == SkSVGTag::kFeComposite || node->tag() == SkSVGTag::kFeFlood ||
|
2021-01-15 17:38:29 +00:00
|
|
|
node->tag() == SkSVGTag::kFeGaussianBlur || node->tag() == SkSVGTag::kFeOffset ||
|
2021-01-25 17:56:13 +00:00
|
|
|
node->tag() == SkSVGTag::kFeBlend || node->tag() == SkSVGTag::kFeMorphology ||
|
2021-01-27 14:18:06 +00:00
|
|
|
node->tag() == SkSVGTag::kFeDisplacementMap ||
|
|
|
|
node->tag() == SkSVGTag::kFeSpecularLighting;
|
2020-11-03 15:04:25 +00:00
|
|
|
}
|
2020-10-30 20:01:54 +00:00
|
|
|
|
|
|
|
sk_sp<SkImageFilter> makeImageFilter(const SkSVGRenderContext& ctx,
|
2020-11-09 17:46:02 +00:00
|
|
|
const SkSVGFilterContext& fctx) const;
|
|
|
|
|
2020-12-11 16:47:55 +00:00
|
|
|
// https://www.w3.org/TR/SVG11/filters.html#FilterPrimitiveSubRegion
|
|
|
|
SkRect resolveFilterSubregion(const SkSVGRenderContext&, const SkSVGFilterContext&) const;
|
|
|
|
|
2021-01-13 17:08:04 +00:00
|
|
|
/**
|
|
|
|
* Resolves the colorspace within which this filter effect should be applied.
|
|
|
|
* Spec: https://www.w3.org/TR/SVG11/painting.html#ColorInterpolationProperties
|
|
|
|
* 'color-interpolation-filters' property.
|
|
|
|
*/
|
2021-01-20 22:31:36 +00:00
|
|
|
virtual SkSVGColorspace resolveColorspace(const SkSVGRenderContext&,
|
|
|
|
const SkSVGFilterContext&) const;
|
2021-01-13 17:08:04 +00:00
|
|
|
|
|
|
|
/** Propagates any inherited presentation attributes in the given context. */
|
|
|
|
void applyProperties(SkSVGRenderContext*) const;
|
|
|
|
|
2021-01-22 18:00:31 +00:00
|
|
|
SVG_ATTR(In, SkSVGFeInputType, SkSVGFeInputType())
|
2020-11-09 17:46:02 +00:00
|
|
|
SVG_ATTR(Result, SkSVGStringType, SkSVGStringType())
|
2020-12-11 16:47:55 +00:00
|
|
|
SVG_OPTIONAL_ATTR(X, SkSVGLength)
|
|
|
|
SVG_OPTIONAL_ATTR(Y, SkSVGLength)
|
|
|
|
SVG_OPTIONAL_ATTR(Width, SkSVGLength)
|
|
|
|
SVG_OPTIONAL_ATTR(Height, SkSVGLength)
|
2020-10-30 20:01:54 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit SkSVGFe(SkSVGTag t) : INHERITED(t) {}
|
|
|
|
|
|
|
|
virtual sk_sp<SkImageFilter> onMakeImageFilter(const SkSVGRenderContext&,
|
|
|
|
const SkSVGFilterContext&) const = 0;
|
|
|
|
|
2020-12-11 16:47:55 +00:00
|
|
|
virtual std::vector<SkSVGFeInputType> getInputs() const = 0;
|
|
|
|
|
2020-11-09 17:46:02 +00:00
|
|
|
bool parseAndSetAttribute(const char*, const char*) override;
|
|
|
|
|
2020-10-30 20:01:54 +00:00
|
|
|
private:
|
2021-01-11 15:51:41 +00:00
|
|
|
/**
|
|
|
|
* Resolves the rect specified by the x, y, width and height attributes (if specified) on this
|
|
|
|
* filter effect. These attributes are resolved according to the given length context and
|
|
|
|
* the value of 'primitiveUnits' on the parent <filter> element.
|
|
|
|
*/
|
|
|
|
SkRect resolveBoundaries(const SkSVGRenderContext&, const SkSVGFilterContext&) const;
|
|
|
|
|
2020-10-30 20:01:54 +00:00
|
|
|
using INHERITED = SkSVGHiddenContainer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SkSVGFe_DEFINED
|