diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-27 10:14:42 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-30 21:20:33 +0100 |
commit | 620492ca19d1e5c34312b49f3d4fef24a928412a (patch) | |
tree | 1b7434d1dd130afe93f6c4338e347d577b1cab88 /vcl/quartz/salgdicommon.cxx | |
parent | 28c0bd6379c0c40bcaf3ab994ef5aee711fe58bb (diff) |
Constify some VCL interface functions
This drops the bPaintEnd optimization for vertical and horizontal
lines on Windows, where Polyline and LineTo exclude painting the
last pixel of the line. Instead we just always set the last pixel.
It also merges the various "SetPixel" call sites into a common
drawPixelImpl function.
Change-Id: I01cc3c01c908ba74f7978fa90eaaf8d88f923ae3
Reviewed-on: https://gerrit.libreoffice.org/43939
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl/quartz/salgdicommon.cxx')
-rw-r--r-- | vcl/quartz/salgdicommon.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 5022a93c70f0..192bdc5aa47e 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -1393,7 +1393,7 @@ void AquaSalGraphics::drawRect( long nX, long nY, long nWidth, long nHeight ) DBG_DRAW_OPERATION_EXIT("drawRect"); } -void AquaSalGraphics::drawPolyLine( sal_uInt32 nPoints, SalPoint *pPtAry ) +void AquaSalGraphics::drawPolyLine( sal_uInt32 nPoints, const SalPoint *pPtAry ) { DBG_DRAW_OPERATION("drawPolyLine",); |