308c07212a
Required introducing a new type for stop-color attribute. A test that exercises this is 'color-prop-01-b'. Note that stop-color should be an inherited presentation attribute, but that is not addressed in this CL. Change-Id: I65b99bfc989f1d4b5a0746de31011b0e72eb6c59 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/282592 Commit-Queue: Tyler Denniston <tdenniston@google.com> Reviewed-by: Florin Malita <fmalita@chromium.org>
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
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.
|
|
*/
|
|
|
|
#include "experimental/svg/model/SkSVGRenderContext.h"
|
|
#include "experimental/svg/model/SkSVGStop.h"
|
|
#include "experimental/svg/model/SkSVGValue.h"
|
|
|
|
SkSVGStop::SkSVGStop() : INHERITED(SkSVGTag::kStop) {}
|
|
|
|
void SkSVGStop::setOffset(const SkSVGLength& offset) {
|
|
fOffset = offset;
|
|
}
|
|
|
|
void SkSVGStop::setStopColor(const SkSVGStopColor& color) {
|
|
fStopColor = color;
|
|
}
|
|
|
|
void SkSVGStop::setStopOpacity(const SkSVGNumberType& opacity) {
|
|
fStopOpacity = SkTPin<SkScalar>(opacity, 0, 1);
|
|
}
|
|
|
|
void SkSVGStop::onSetAttribute(SkSVGAttribute attr, const SkSVGValue& v) {
|
|
switch (attr) {
|
|
case SkSVGAttribute::kOffset:
|
|
if (const auto* offset = v.as<SkSVGLengthValue>()) {
|
|
this->setOffset(*offset);
|
|
}
|
|
break;
|
|
case SkSVGAttribute::kStopColor:
|
|
if (const auto* color = v.as<SkSVGStopColorValue>()) {
|
|
this->setStopColor(*color);
|
|
}
|
|
break;
|
|
case SkSVGAttribute::kStopOpacity:
|
|
if (const auto* opacity = v.as<SkSVGNumberValue>()) {
|
|
this->setStopOpacity(*opacity);
|
|
}
|
|
break;
|
|
default:
|
|
this->INHERITED::onSetAttribute(attr, v);
|
|
}
|
|
}
|