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.
44 lines
1.4 KiB
44 lines
1.4 KiB
4 months ago
|
/*
|
||
|
* 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 SkSVGMask_DEFINED
|
||
|
#define SkSVGMask_DEFINED
|
||
|
|
||
|
#include "modules/svg/include/SkSVGHiddenContainer.h"
|
||
|
#include "modules/svg/include/SkSVGTypes.h"
|
||
|
|
||
|
class SkSVGMask final : public SkSVGHiddenContainer {
|
||
|
public:
|
||
|
static sk_sp<SkSVGMask> Make() {
|
||
|
return sk_sp<SkSVGMask>(new SkSVGMask());
|
||
|
}
|
||
|
|
||
|
SVG_ATTR(X , SkSVGLength, SkSVGLength(-10, SkSVGLength::Unit::kPercentage))
|
||
|
SVG_ATTR(Y , SkSVGLength, SkSVGLength(-10, SkSVGLength::Unit::kPercentage))
|
||
|
SVG_ATTR(Width , SkSVGLength, SkSVGLength(120, SkSVGLength::Unit::kPercentage))
|
||
|
SVG_ATTR(Height, SkSVGLength, SkSVGLength(120, SkSVGLength::Unit::kPercentage))
|
||
|
|
||
|
SVG_ATTR(MaskUnits, SkSVGObjectBoundingBoxUnits,
|
||
|
SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox))
|
||
|
SVG_ATTR(MaskContentUnits, SkSVGObjectBoundingBoxUnits,
|
||
|
SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse))
|
||
|
|
||
|
private:
|
||
|
friend class SkSVGRenderContext;
|
||
|
|
||
|
SkSVGMask() : INHERITED(SkSVGTag::kMask) {}
|
||
|
|
||
|
bool parseAndSetAttribute(const char*, const char*) override;
|
||
|
|
||
|
SkRect bounds(const SkSVGRenderContext&) const;
|
||
|
void renderMask(const SkSVGRenderContext&) const;
|
||
|
|
||
|
using INHERITED = SkSVGHiddenContainer;
|
||
|
};
|
||
|
|
||
|
#endif // SkSVGMask_DEFINED
|