2020-10-15 22:10:29 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkSVGGradient_DEFINED
|
|
|
|
#define SkSVGGradient_DEFINED
|
|
|
|
|
|
|
|
#include "include/core/SkShader.h"
|
|
|
|
#include "modules/svg/include/SkSVGHiddenContainer.h"
|
|
|
|
#include "modules/svg/include/SkSVGTypes.h"
|
|
|
|
|
|
|
|
class SkMatrix;
|
|
|
|
class SkSVGRenderContext;
|
|
|
|
class SkSVGStop;
|
|
|
|
|
|
|
|
class SkSVGGradient : public SkSVGHiddenContainer {
|
|
|
|
public:
|
2020-11-10 18:13:28 +00:00
|
|
|
SVG_ATTR(Href, SkSVGIRI, SkSVGIRI())
|
|
|
|
SVG_ATTR(GradientTransform, SkSVGTransformType, SkSVGTransformType(SkMatrix::I()))
|
|
|
|
SVG_ATTR(SpreadMethod, SkSVGSpreadMethod, SkSVGSpreadMethod(SkSVGSpreadMethod::Type::kPad))
|
|
|
|
SVG_ATTR(GradientUnits,
|
|
|
|
SkSVGObjectBoundingBoxUnits,
|
|
|
|
SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox))
|
2020-10-15 22:10:29 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit SkSVGGradient(SkSVGTag t) : INHERITED(t) {}
|
|
|
|
|
2020-11-10 18:13:28 +00:00
|
|
|
bool parseAndSetAttribute(const char*, const char*) override;
|
2020-10-15 22:10:29 +00:00
|
|
|
|
|
|
|
bool onAsPaint(const SkSVGRenderContext&, SkPaint*) const final;
|
|
|
|
|
|
|
|
virtual sk_sp<SkShader> onMakeShader(const SkSVGRenderContext&,
|
2021-01-19 17:51:12 +00:00
|
|
|
const SkColor4f*, const SkScalar*, int count,
|
2020-10-15 22:10:29 +00:00
|
|
|
SkTileMode, const SkMatrix& localMatrix) const = 0;
|
|
|
|
|
|
|
|
private:
|
2021-01-19 17:51:12 +00:00
|
|
|
using StopPositionArray = SkSTArray<2, SkScalar , true>;
|
|
|
|
using StopColorArray = SkSTArray<2, SkColor4f, true>;
|
2020-10-15 22:10:29 +00:00
|
|
|
void collectColorStops(const SkSVGRenderContext&, StopPositionArray*, StopColorArray*) const;
|
2021-01-19 17:51:12 +00:00
|
|
|
SkColor4f resolveStopColor(const SkSVGRenderContext&, const SkSVGStop&) const;
|
2020-10-15 22:10:29 +00:00
|
|
|
|
|
|
|
using INHERITED = SkSVGHiddenContainer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SkSVGGradient_DEFINED
|