[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - vcl/source
Marco Cecchetti
marco.cecchetti at collabora.com
Fri Mar 4 21:16:13 UTC 2016
vcl/source/outdev/polygon.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit da2f91b5ceef6d7c6a7b833b25a48f12f58643f5
Author: Marco Cecchetti <marco.cecchetti at collabora.com>
Date: Fri Mar 4 11:17:47 2016 +0100
tdf#98052 - polypolygons were not drawn on the alpha device
In OutputDevice::DrawPolyPolygon when b2dpolygon are used for drawing
the source polygon is not drawn on the alpha device.
Change-Id: I54f4e5a13469d9844866cea61b074420219b836d
Reviewed-on: https://gerrit.libreoffice.org/22893
Reviewed-by: Michael Meeks <michael.meeks at collabora.com>
Tested-by: Michael Meeks <michael.meeks at collabora.com>
Tested-by: Jenkins <ci at libreoffice.org>
(cherry picked from commit 5bdbf99c3ec6e5e0793c52c34ff4f3a17afab107)
Reviewed-on: https://gerrit.libreoffice.org/22902
diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx
index 9008acd..369551e 100644
--- a/vcl/source/outdev/polygon.cxx
+++ b/vcl/source/outdev/polygon.cxx
@@ -103,6 +103,8 @@ void OutputDevice::DrawPolyPolygon( const tools::PolyPolygon& rPolyPoly )
if(bSuccess)
{
+ if( mpAlphaVDev )
+ mpAlphaVDev->DrawPolyPolygon( rPolyPoly );
return;
}
}
More information about the Libreoffice-commits
mailing list