blob: 1443845a7a5103865962bea97f114c831cf23649 [file] [log] [blame]
/*
* Copyright 2020 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/effects/SkImageFilters.h"
#include "modules/svg/include/SkSVGAttributeParser.h"
#include "modules/svg/include/SkSVGFeGaussianBlur.h"
#include "modules/svg/include/SkSVGFilterContext.h"
#include "modules/svg/include/SkSVGRenderContext.h"
#include "modules/svg/include/SkSVGValue.h"
bool SkSVGFeGaussianBlur::parseAndSetAttribute(const char* name, const char* value) {
return INHERITED::parseAndSetAttribute(name, value) ||
this->setStdDeviation(SkSVGAttributeParser::parse<SkSVGFeGaussianBlur::StdDeviation>(
"stdDeviation", name, value));
}
sk_sp<SkImageFilter> SkSVGFeGaussianBlur::onMakeImageFilter(const SkSVGRenderContext& ctx,
const SkSVGFilterContext& fctx) const {
const auto sigma = SkV2{fStdDeviation.fX, fStdDeviation.fY}
* ctx.transformForCurrentOBB(fctx.primitiveUnits()).scale;
return SkImageFilters::Blur(
sigma.x, sigma.y,
fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)),
this->resolveFilterSubregion(ctx, fctx));
}
template <>
bool SkSVGAttributeParser::parse<SkSVGFeGaussianBlur::StdDeviation>(
SkSVGFeGaussianBlur::StdDeviation* stdDeviation) {
std::vector<SkSVGNumberType> values;
if (!this->parse(&values)) {
return false;
}
stdDeviation->fX = values[0];
stdDeviation->fY = values.size() > 1 ? values[1] : values[0];
return true;
}