You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
913 B
29 lines
913 B
/*
|
|
* 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 "SkSVGRenderContext.h"
|
|
#include "SkSVGShape.h"
|
|
|
|
SkSVGShape::SkSVGShape(SkSVGTag t) : INHERITED(t) {}
|
|
|
|
void SkSVGShape::onRender(const SkSVGRenderContext& ctx) const {
|
|
const auto fillType = ctx.presentationContext().fInherited.fFillRule.get()->asFillType();
|
|
|
|
// TODO: this approach forces duplicate geometry resolution in onDraw(); refactor to avoid.
|
|
if (const SkPaint* fillPaint = ctx.fillPaint()) {
|
|
this->onDraw(ctx.canvas(), ctx.lengthContext(), *fillPaint, fillType);
|
|
}
|
|
|
|
if (const SkPaint* strokePaint = ctx.strokePaint()) {
|
|
this->onDraw(ctx.canvas(), ctx.lengthContext(), *strokePaint, fillType);
|
|
}
|
|
}
|
|
|
|
void SkSVGShape::appendChild(sk_sp<SkSVGNode>) {
|
|
SkDebugf("cannot append child nodes to an SVG shape.\n");
|
|
}
|