d6cf56fd34
This reverts commit 6fc4106a9d
.
Reason for revert: Blocking the Android roll
Original change's description:
> [svg] Relocate out of experimental
>
> Move the SVG rendering code to modules/svg, and componentize.
> Also split into include/src/utils.
>
> As external clients still reference the old header locations,
> introduce temporary forwarding headers to facilitate the migration.
>
> Change-Id: Ib289dbdcd80c16a01c47805e7242f2e08bebc165
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/326948
> Reviewed-by: Tyler Denniston <tdenniston@google.com>
> Commit-Queue: Florin Malita <fmalita@google.com>
TBR=fmalita@chromium.org,fmalita@google.com,tdenniston@google.com
Change-Id: I386cf77a15a9e1d392029804abaf937dae53f435
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/327342
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
86 lines
2.8 KiB
C++
86 lines
2.8 KiB
C++
/*
|
|
* Copyright 2017 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/SkSVGRadialGradient.h"
|
|
#include "experimental/svg/model/SkSVGRenderContext.h"
|
|
#include "experimental/svg/model/SkSVGValue.h"
|
|
#include "include/effects/SkGradientShader.h"
|
|
|
|
SkSVGRadialGradient::SkSVGRadialGradient() : INHERITED(SkSVGTag::kRadialGradient) {}
|
|
|
|
void SkSVGRadialGradient::setCx(const SkSVGLength& cx) {
|
|
fCx = cx;
|
|
}
|
|
|
|
void SkSVGRadialGradient::setCy(const SkSVGLength& cy) {
|
|
fCy = cy;
|
|
}
|
|
|
|
void SkSVGRadialGradient::setR(const SkSVGLength& r) {
|
|
fR = r;
|
|
}
|
|
|
|
void SkSVGRadialGradient::setFx(const SkSVGLength& fx) {
|
|
fFx.set(fx);
|
|
}
|
|
|
|
void SkSVGRadialGradient::setFy(const SkSVGLength& fy) {
|
|
fFy.set(fy);
|
|
}
|
|
|
|
void SkSVGRadialGradient::onSetAttribute(SkSVGAttribute attr, const SkSVGValue& v) {
|
|
switch (attr) {
|
|
case SkSVGAttribute::kCx:
|
|
if (const auto* cx = v.as<SkSVGLengthValue>()) {
|
|
this->setCx(*cx);
|
|
}
|
|
break;
|
|
case SkSVGAttribute::kCy:
|
|
if (const auto* cy = v.as<SkSVGLengthValue>()) {
|
|
this->setCy(*cy);
|
|
}
|
|
break;
|
|
case SkSVGAttribute::kR:
|
|
if (const auto* r = v.as<SkSVGLengthValue>()) {
|
|
this->setR(*r);
|
|
}
|
|
break;
|
|
case SkSVGAttribute::kFx:
|
|
if (const auto* fx = v.as<SkSVGLengthValue>()) {
|
|
this->setFx(*fx);
|
|
}
|
|
break;
|
|
case SkSVGAttribute::kFy:
|
|
if (const auto* fy = v.as<SkSVGLengthValue>()) {
|
|
this->setFy(*fy);
|
|
}
|
|
break;
|
|
default:
|
|
this->INHERITED::onSetAttribute(attr, v);
|
|
}
|
|
}
|
|
|
|
sk_sp<SkShader> SkSVGRadialGradient::onMakeShader(const SkSVGRenderContext& ctx,
|
|
const SkColor* colors, const SkScalar* pos,
|
|
int count, SkTileMode tm,
|
|
const SkMatrix& m) const {
|
|
const auto& lctx = ctx.lengthContext();
|
|
const auto r = lctx.resolve(fR , SkSVGLengthContext::LengthType::kOther);
|
|
const auto center = SkPoint::Make(
|
|
lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal),
|
|
lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical));
|
|
const auto focal = SkPoint::Make(
|
|
fFx.isValid() ? lctx.resolve(*fFx, SkSVGLengthContext::LengthType::kHorizontal)
|
|
: center.x(),
|
|
fFy.isValid() ? lctx.resolve(*fFy, SkSVGLengthContext::LengthType::kVertical)
|
|
: center.y());
|
|
|
|
return center == focal
|
|
? SkGradientShader::MakeRadial(center, r, colors, pos, count, tm, 0, &m)
|
|
: SkGradientShader::MakeTwoPointConical(focal, 0, center, r, colors, pos, count, tm, 0, &m);
|
|
}
|