blob: fbdfae5d69ce7fd92e4ef2ff97bee22e4770c9c5 [file] [log] [blame]
/*
* 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 "SkSGPaintNode.h"
namespace sksg {
PaintNode::PaintNode() {}
const SkPaint& PaintNode::makePaint() {
SkASSERT(!this->hasInval());
return fPaint;
}
SkRect PaintNode::onRevalidate(InvalidationController*, const SkMatrix&) {
SkASSERT(this->hasInval());
if (this->hasSelfInval()) {
fPaint.reset();
fPaint.setAntiAlias(fAntiAlias);
fPaint.setStyle(fStyle);
fPaint.setStrokeWidth(fStrokeWidth);
fPaint.setStrokeMiter(fStrokeMiter);
fPaint.setStrokeJoin(fStrokeJoin);
fPaint.setStrokeCap(fStrokeCap);
this->onApplyToPaint(&fPaint);
}
return SkRect::MakeEmpty();
}
} // namespace sksg