3c10618d37
https://www.w3.org/TR/SVG11/masking.html#ClipPathElementClipPathUnitsAttribute Bug: skia:10842 Change-Id: Idf3b5b6da08dfaee165f0bbb549427f298a40cec Reviewed-on: https://skia-review.googlesource.com/c/skia/+/353713 Commit-Queue: Florin Malita <fmalita@chromium.org> Commit-Queue: Florin Malita <fmalita@google.com> Reviewed-by: Tyler Denniston <tdenniston@google.com>
36 lines
903 B
C++
36 lines
903 B
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkSVGClipPath_DEFINED
|
|
#define SkSVGClipPath_DEFINED
|
|
|
|
#include "modules/svg/include/SkSVGHiddenContainer.h"
|
|
#include "modules/svg/include/SkSVGTypes.h"
|
|
|
|
class SkSVGClipPath final : public SkSVGHiddenContainer {
|
|
public:
|
|
static sk_sp<SkSVGClipPath> Make() {
|
|
return sk_sp<SkSVGClipPath>(new SkSVGClipPath());
|
|
}
|
|
|
|
SVG_ATTR(ClipPathUnits, SkSVGObjectBoundingBoxUnits,
|
|
SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse))
|
|
|
|
private:
|
|
friend class SkSVGRenderContext;
|
|
|
|
SkSVGClipPath();
|
|
|
|
bool parseAndSetAttribute(const char*, const char*) override;
|
|
|
|
SkPath resolveClip(const SkSVGRenderContext&) const;
|
|
|
|
using INHERITED = SkSVGHiddenContainer;
|
|
};
|
|
|
|
#endif // SkSVGClipPath_DEFINED
|