svgio: map all 'in' keywords to target for now

Change-Id: I18d6c839c4005e4052397c4f6682d78c664d25ee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166145
Tested-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
This commit is contained in:
Xisco Fauli 2024-04-16 12:31:29 +02:00
parent e16730a87c
commit c61aeb5b87

View file

@ -44,7 +44,15 @@ void SvgFilterNode::apply(drawinglayer::primitive2d::Primitive2DContainer& rTarg
const sal_uInt32 nCount(rChildren.size());
addGraphicSourceToMapper("SourceGraphic", rTarget);
//TODO: Add SourceAlpha, BackgroundImage, BackgroundAlpha, FillPaint, StrokePaint ??
// TODO: For now, map SourceAlpha, BackgroundImage,
// BackgroundAlpha, FillPaint and StrokePaint to rTarget
// so at least something is displayed
addGraphicSourceToMapper("SourceAlpha", rTarget);
addGraphicSourceToMapper("BackgroundImage", rTarget);
addGraphicSourceToMapper("BackgroundAlpha", rTarget);
addGraphicSourceToMapper("FillPaint", rTarget);
addGraphicSourceToMapper("StrokePaint", rTarget);
// apply children's filters
for (sal_uInt32 a(0); a < nCount; a++)