skia2/experimental/svg/model/SkSVGLinearGradient.cpp
Mike Klein c0bd9f9fe5 rewrite includes to not need so much -Ifoo
Current strategy: everything from the top

Things to look at first are the manual changes:

   - added tools/rewrite_includes.py
   - removed -Idirectives from BUILD.gn
   - various compile.sh simplifications
   - tweak tools/embed_resources.py
   - update gn/find_headers.py to write paths from the top
   - update gn/gn_to_bp.py SkUserConfig.h layout
     so that #include "include/config/SkUserConfig.h" always
     gets the header we want.

No-Presubmit: true
Change-Id: I73a4b181654e0e38d229bc456c0d0854bae3363e
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209706
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Hal Canary <halcanary@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
2019-04-24 16:27:11 +00:00

72 lines
2.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/SkSVGLinearGradient.h"
#include "experimental/svg/model/SkSVGRenderContext.h"
#include "experimental/svg/model/SkSVGValue.h"
#include "include/effects/SkGradientShader.h"
SkSVGLinearGradient::SkSVGLinearGradient() : INHERITED(SkSVGTag::kLinearGradient) {}
void SkSVGLinearGradient::setX1(const SkSVGLength& x1) {
fX1 = x1;
}
void SkSVGLinearGradient::setY1(const SkSVGLength& y1) {
fY1 = y1;
}
void SkSVGLinearGradient::setX2(const SkSVGLength& x2) {
fX2 = x2;
}
void SkSVGLinearGradient::setY2(const SkSVGLength& y2) {
fY2 = y2;
}
void SkSVGLinearGradient::onSetAttribute(SkSVGAttribute attr, const SkSVGValue& v) {
switch (attr) {
case SkSVGAttribute::kX1:
if (const auto* x1 = v.as<SkSVGLengthValue>()) {
this->setX1(*x1);
}
break;
case SkSVGAttribute::kY1:
if (const auto* y1 = v.as<SkSVGLengthValue>()) {
this->setY1(*y1);
}
break;
case SkSVGAttribute::kX2:
if (const auto* x2 = v.as<SkSVGLengthValue>()) {
this->setX2(*x2);
}
break;
case SkSVGAttribute::kY2:
if (const auto* y2 = v.as<SkSVGLengthValue>()) {
this->setY2(*y2);
}
break;
default:
this->INHERITED::onSetAttribute(attr, v);
}
}
sk_sp<SkShader> SkSVGLinearGradient::onMakeShader(const SkSVGRenderContext& ctx,
const SkColor* colors, const SkScalar* pos,
int count, SkTileMode tm,
const SkMatrix& localMatrix) const {
const auto& lctx = ctx.lengthContext();
const auto x1 = lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizontal);
const auto y1 = lctx.resolve(fY1, SkSVGLengthContext::LengthType::kVertical);
const auto x2 = lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal);
const auto y2 = lctx.resolve(fY2, SkSVGLengthContext::LengthType::kVertical);
const SkPoint pts[2] = { {x1, y1}, {x2, y2}};
return SkGradientShader::MakeLinear(pts, colors, pos, count, tm, 0, &localMatrix);
}