loplugin:constparams in canvas

Change-Id: Id54bb9dca606dd91e2d3ad4b63b9af7593c601e0
Reviewed-on: https://gerrit.libreoffice.org/40202
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin
2017-07-19 13:52:12 +02:00
parent b8e26ebe2c
commit 34e8f52d51
12 changed files with 14 additions and 14 deletions

View File

@@ -344,7 +344,7 @@ namespace cairocanvas
return nTemp; return nTemp;
} }
static bool readAlpha( BitmapReadAccess* pAlphaReadAcc, long nY, const long nWidth, unsigned char* data, long nOff ) static bool readAlpha( BitmapReadAccess const * pAlphaReadAcc, long nY, const long nWidth, unsigned char* data, long nOff )
{ {
bool bIsAlpha = false; bool bIsAlpha = false;
long nX; long nX;
@@ -703,7 +703,7 @@ namespace cairocanvas
return uno::Sequence<double>(); return uno::Sequence<double>();
} }
static cairo_pattern_t* patternFromParametricPolyPolygon( ::canvas::ParametricPolyPolygon& rPolygon ) static cairo_pattern_t* patternFromParametricPolyPolygon( ::canvas::ParametricPolyPolygon const & rPolygon )
{ {
cairo_pattern_t* pPattern = nullptr; cairo_pattern_t* pPattern = nullptr;
const ::canvas::ParametricPolyPolygon::Values aValues = rPolygon.getValues(); const ::canvas::ParametricPolyPolygon::Values aValues = rPolygon.getValues();

View File

@@ -269,7 +269,7 @@ namespace cairocanvas
::cairo::SurfaceSharedPtr mpSurface; ::cairo::SurfaceSharedPtr mpSurface;
::basegfx::B2ISize maSize; ::basegfx::B2ISize maSize;
void clip_cairo_from_dev(::OutputDevice& rOutDev); void clip_cairo_from_dev(::OutputDevice const & rOutDev);
}; };

View File

@@ -54,7 +54,7 @@ namespace cairocanvas
} }
static bool static bool
setupFontTransform( ::OutputDevice& rOutDev, setupFontTransform( ::OutputDevice const & rOutDev,
::Point& o_rPoint, ::Point& o_rPoint,
vcl::Font& io_rVCLFont, vcl::Font& io_rVCLFont,
const rendering::ViewState& rViewState, const rendering::ViewState& rViewState,
@@ -202,7 +202,7 @@ namespace cairocanvas
} }
//set the clip of the rOutDev to the cairo surface //set the clip of the rOutDev to the cairo surface
void CanvasHelper::clip_cairo_from_dev(::OutputDevice& rOutDev) void CanvasHelper::clip_cairo_from_dev(::OutputDevice const & rOutDev)
{ {
vcl::Region aRegion(rOutDev.GetClipRegion()); vcl::Region aRegion(rOutDev.GetClipRegion());
if (!aRegion.IsEmpty() && !aRegion.IsNull()) if (!aRegion.IsEmpty() && !aRegion.IsNull())

View File

@@ -258,7 +258,7 @@ namespace cairocanvas
return SurfaceSharedPtr(); return SurfaceSharedPtr();
} }
SurfaceSharedPtr DeviceHelper::createSurface( BitmapSystemData& rData, const Size& rSize ) SurfaceSharedPtr DeviceHelper::createSurface( BitmapSystemData const & rData, const Size& rSize )
{ {
if (mpRefDevice) if (mpRefDevice)
return mpRefDevice->CreateBitmapSurface(rData, rSize); return mpRefDevice->CreateBitmapSurface(rData, rSize);

View File

@@ -93,7 +93,7 @@ namespace cairocanvas
OutputDevice* getOutputDevice() const { return mpRefDevice; } OutputDevice* getOutputDevice() const { return mpRefDevice; }
const ::cairo::SurfaceSharedPtr& getSurface() { return mpSurface; } const ::cairo::SurfaceSharedPtr& getSurface() { return mpSurface; }
::cairo::SurfaceSharedPtr createSurface( const ::basegfx::B2ISize& rSize, int aContent ); ::cairo::SurfaceSharedPtr createSurface( const ::basegfx::B2ISize& rSize, int aContent );
::cairo::SurfaceSharedPtr createSurface( BitmapSystemData& rData, const Size& rSize ); ::cairo::SurfaceSharedPtr createSurface( BitmapSystemData const & rData, const Size& rSize );
protected: protected:
/** init helper /** init helper

View File

@@ -137,7 +137,7 @@ namespace cairocanvas
return SurfaceSharedPtr(); return SurfaceSharedPtr();
} }
SurfaceSharedPtr SpriteDeviceHelper::createSurface( BitmapSystemData& rData, const Size& rSize ) SurfaceSharedPtr SpriteDeviceHelper::createSurface( BitmapSystemData const & rData, const Size& rSize )
{ {
OutputDevice *pDevice = getOutputDevice(); OutputDevice *pDevice = getOutputDevice();
if (pDevice) if (pDevice)

View File

@@ -63,7 +63,7 @@ namespace cairocanvas
const ::cairo::SurfaceSharedPtr& getBufferSurface() { return mpBufferSurface; } const ::cairo::SurfaceSharedPtr& getBufferSurface() { return mpBufferSurface; }
::cairo::SurfaceSharedPtr getWindowSurface(); ::cairo::SurfaceSharedPtr getWindowSurface();
::cairo::SurfaceSharedPtr createSurface( const ::basegfx::B2ISize& rSize, int aContent ); ::cairo::SurfaceSharedPtr createSurface( const ::basegfx::B2ISize& rSize, int aContent );
::cairo::SurfaceSharedPtr createSurface( BitmapSystemData& rData, const Size& rSize ); ::cairo::SurfaceSharedPtr createSurface( BitmapSystemData const & rData, const Size& rSize );
const ::basegfx::B2ISize& getSizePixel() { return maSize; } const ::basegfx::B2ISize& getSizePixel() { return maSize; }
void flush(); void flush();

View File

@@ -295,7 +295,7 @@ namespace cairocanvas
* *
* @return true, if successful * @return true, if successful
**/ **/
bool TextLayout::draw( CairoSharedPtr& pSCairo, bool TextLayout::draw( CairoSharedPtr const & pSCairo,
OutputDevice& rOutDev, OutputDevice& rOutDev,
const Point& rOutpos, const Point& rOutpos,
const rendering::ViewState& viewState, const rendering::ViewState& viewState,

View File

@@ -82,7 +82,7 @@ namespace cairocanvas
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
bool draw( ::cairo::CairoSharedPtr& pSCairo, bool draw( ::cairo::CairoSharedPtr const & pSCairo,
OutputDevice& rOutDev, OutputDevice& rOutDev,
const Point& rOutpos, const Point& rOutpos,
const css::rendering::ViewState& viewState, const css::rendering::ViewState& viewState,

View File

@@ -99,7 +99,7 @@ namespace vclcanvas
vcl::Font& io_rVCLFont, vcl::Font& io_rVCLFont,
const rendering::ViewState& rViewState, const rendering::ViewState& rViewState,
const rendering::RenderState& rRenderState, const rendering::RenderState& rRenderState,
::OutputDevice& rOutDev ) ::OutputDevice const & rOutDev )
{ {
::basegfx::B2DHomMatrix aMatrix; ::basegfx::B2DHomMatrix aMatrix;

View File

@@ -89,7 +89,7 @@ namespace vclcanvas
vcl::Font& io_rVCLFont, vcl::Font& io_rVCLFont,
const css::rendering::ViewState& viewState, const css::rendering::ViewState& viewState,
const css::rendering::RenderState& renderState, const css::rendering::RenderState& renderState,
::OutputDevice& rOutDev ); ::OutputDevice const & rOutDev );
/** Predicate, to determine whether polygon is actually an axis-aligned rectangle /** Predicate, to determine whether polygon is actually an axis-aligned rectangle

View File

@@ -66,7 +66,7 @@ namespace vclcanvas
} }
void repaintBackground( OutputDevice& rOutDev, void repaintBackground( OutputDevice& rOutDev,
OutputDevice& rBackBuffer, OutputDevice const & rBackBuffer,
const ::basegfx::B2DRange& rArea ) const ::basegfx::B2DRange& rArea )
{ {
const ::Point& rPos( vcl::unotools::pointFromB2DPoint( rArea.getMinimum()) ); const ::Point& rPos( vcl::unotools::pointFromB2DPoint( rArea.getMinimum()) );