diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2016-03-04 11:17:47 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2016-03-04 13:26:20 +0000 |
commit | 0cb71c1017d67e762928a12dd4a6d643d84a40bf (patch) | |
tree | cd35608dfc07a67d47f6e620e738431c3da5807d /vcl | |
parent | 9dcd54014c315586e8c1aae08c6079dac7acb0b6 (diff) |
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/22892
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/outdev/polygon.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx index 4ba8caf293a3..129f6de75a48 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; } } |