blob: d3a1cf649f56fd947ca1d4c4db90a2da934dbc34 [file] [log] [blame]
/*
* Copyright (C) 2008 Alex Mathews <possessedpenguinbob@gmail.com>
* Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
* Copyright (C) 2021 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "FETileSoftwareApplier.h"
#include "AffineTransform.h"
#include "FETile.h"
#include "Filter.h"
#include "GraphicsContext.h"
#include "Pattern.h"
#include "SVGRenderingContext.h"
namespace WebCore {
bool FETileSoftwareApplier::apply(const Filter& filter, const FilterEffectVector& inputEffects)
{
FilterEffect* in = inputEffects[0].get();
auto resultImage = m_effect.imageBufferResult();
auto inBuffer = in->imageBufferResult();
if (!resultImage || !inBuffer)
return false;
m_effect.setIsAlphaImage(in->isAlphaImage());
// Source input needs more attention. It has the size of the filterRegion but gives the
// size of the cutted sourceImage back. This is part of the specification and optimization.
FloatRect tileRect = in->maxEffectRect();
FloatPoint inMaxEffectLocation = tileRect.location();
FloatPoint maxEffectLocation = m_effect.maxEffectRect().location();
if (in->filterType() == FilterEffect::Type::SourceGraphic || in->filterType() == FilterEffect::Type::SourceAlpha) {
tileRect = filter.filterRegion();
tileRect.scale(filter.filterScale());
}
// FIXME: remove this non-paltform call.
auto tileImage = SVGRenderingContext::createImageBuffer(tileRect, tileRect, DestinationColorSpace::SRGB(), filter.renderingMode());
if (!tileImage)
return false;
GraphicsContext& tileImageContext = tileImage->context();
tileImageContext.translate(-inMaxEffectLocation.x(), -inMaxEffectLocation.y());
tileImageContext.drawImageBuffer(*inBuffer, in->absolutePaintRect().location());
auto tileImageCopy = ImageBuffer::sinkIntoNativeImage(WTFMove(tileImage));
if (!tileImageCopy)
return false;
AffineTransform patternTransform;
patternTransform.translate(inMaxEffectLocation - maxEffectLocation);
auto pattern = Pattern::create(tileImageCopy.releaseNonNull(), { true, true, patternTransform });
GraphicsContext& filterContext = resultImage->context();
filterContext.setFillPattern(WTFMove(pattern));
filterContext.fillRect(FloatRect(FloatPoint(), m_effect.absolutePaintRect().size()));
return true;
}
} // namespace WebCore