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:
parent
e16730a87c
commit
c61aeb5b87
1 changed files with 9 additions and 1 deletions
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue