Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: experimental/svg/model/SkSVGLinearGradient.cpp

Issue 2327233003: [SVGDom] Initial linear gradient support (Closed)
Patch Set: review Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « experimental/svg/model/SkSVGLinearGradient.h ('k') | experimental/svg/model/SkSVGNode.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkGradientShader.h"
9 #include "SkSVGLinearGradient.h"
10 #include "SkSVGRenderContext.h"
11 #include "SkSVGStop.h"
12 #include "SkSVGValue.h"
13
14 SkSVGLinearGradient::SkSVGLinearGradient() : INHERITED(SkSVGTag::kLinearGradient ) {}
15
16 void SkSVGLinearGradient::setHref(const SkSVGStringType& href) {
17 fHref = std::move(href);
18 }
19
20 void SkSVGLinearGradient::setX1(const SkSVGLength& x1) {
21 fX1 = x1;
22 }
23
24 void SkSVGLinearGradient::setY1(const SkSVGLength& y1) {
25 fY1 = y1;
26 }
27
28 void SkSVGLinearGradient::setX2(const SkSVGLength& x2) {
29 fX2 = x2;
30 }
31
32 void SkSVGLinearGradient::setY2(const SkSVGLength& y2) {
33 fY2 = y2;
34 }
35
36 void SkSVGLinearGradient::onSetAttribute(SkSVGAttribute attr, const SkSVGValue& v) {
37 switch (attr) {
38 case SkSVGAttribute::kHref:
39 if (const auto* href = v.as<SkSVGStringValue>()) {
40 this->setHref(*href);
41 }
42 break;
43 case SkSVGAttribute::kX1:
44 if (const auto* x1 = v.as<SkSVGLengthValue>()) {
45 this->setX1(*x1);
46 }
47 break;
48 case SkSVGAttribute::kY1:
49 if (const auto* y1 = v.as<SkSVGLengthValue>()) {
50 this->setY1(*y1);
51 }
52 break;
53 case SkSVGAttribute::kX2:
54 if (const auto* x2 = v.as<SkSVGLengthValue>()) {
55 this->setX2(*x2);
56 }
57 break;
58 case SkSVGAttribute::kY2:
59 if (const auto* y2 = v.as<SkSVGLengthValue>()) {
60 this->setY2(*y2);
61 }
62 break;
63 default:
64 this->INHERITED::onSetAttribute(attr, v);
65 }
66 }
67
68 // https://www.w3.org/TR/SVG/pservers.html#LinearGradientElementHrefAttribute
69 void SkSVGLinearGradient::collectColorStops(const SkSVGRenderContext& ctx,
70 SkSTArray<2, SkScalar, true>* pos,
71 SkSTArray<2, SkColor, true>* colors) const {
72 // Used to resolve percentage offsets.
73 const SkSVGLengthContext ltx(SkSize::Make(1, 1));
74
75 for (const auto& child : fChildren) {
76 if (child->tag() != SkSVGTag::kStop) {
77 continue;
78 }
79
80 const auto& stop = static_cast<const SkSVGStop&>(*child);
81 colors->push_back(SkColorSetA(stop.stopColor(),
82 SkScalarRoundToInt(stop.stopOpacity() * 25 5)));
83 pos->push_back(SkTPin(ltx.resolve(stop.offset(), SkSVGLengthContext::Len gthType::kOther),
84 0.f, 1.f));
85 }
86
87 SkASSERT(colors->count() == pos->count());
88
89 if (pos->empty() && !fHref.value().isEmpty()) {
90 const auto* ref = ctx.findNodeById(fHref);
91 if (ref && ref->tag() == SkSVGTag::kLinearGradient) {
92 static_cast<const SkSVGLinearGradient*>(ref)->collectColorStops(ctx, pos, colors);
93 }
94 }
95 }
96
97 bool SkSVGLinearGradient::onAsPaint(const SkSVGRenderContext& ctx, SkPaint* pain t) const {
98 const auto& lctx = ctx.lengthContext();
99 const auto x1 = lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizonta l);
100 const auto y1 = lctx.resolve(fY1, SkSVGLengthContext::LengthType::kVertical) ;
101 const auto x2 = lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizonta l);
102 const auto y2 = lctx.resolve(fY2, SkSVGLengthContext::LengthType::kVertical) ;
103
104 const SkPoint pts[2] = { {x1, y1}, {x2, y2}};
105 SkSTArray<2, SkColor , true> colors;
106 SkSTArray<2, SkScalar, true> pos;
107
108 this->collectColorStops(ctx, &pos, &colors);
109 // TODO:
110 // * stop (lazy?) sorting
111 // * href loop detection
112 // * href attribute inheritance (not just color stops)
113 // * spreadMethods support
114 // * objectBoundingBox units support
115
116 paint->setShader(SkGradientShader::MakeLinear(pts, colors.begin(), pos.begin (), colors.count(),
117 SkShader::kClamp_TileMode));
118 return true;
119 }
OLDNEW
« no previous file with comments | « experimental/svg/model/SkSVGLinearGradient.h ('k') | experimental/svg/model/SkSVGNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698