diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-06-08 08:51:47 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-06-08 09:16:20 +0300 |
commit | 1495e5b263c0d5c008d6d7294632f2492b6f1062 (patch) | |
tree | 5765d80d6af3d190cf9102801503912c8f48e839 /vcl/inc/opengl | |
parent | cdb41f2f7a2d7cdb779f5e23edd7e2d74228dd26 (diff) |
loplugin:passstuffbyref
Change-Id: Ic14ff3235071f8300c6054000e4b0e397d7c99a3
Diffstat (limited to 'vcl/inc/opengl')
-rw-r--r-- | vcl/inc/opengl/RenderList.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/inc/opengl/RenderList.hxx b/vcl/inc/opengl/RenderList.hxx index e63f5dcb4566..f6f59f5fec6e 100644 --- a/vcl/inc/opengl/RenderList.hxx +++ b/vcl/inc/opengl/RenderList.hxx @@ -145,17 +145,17 @@ public: return maRenderEntries; } - bool addDrawTextureWithMaskColor(OpenGLTexture& rTexture, const SalColor& rColor, const SalTwoRect& r2Rect); + bool addDrawTextureWithMaskColor(OpenGLTexture& rTexture, SalColor nColor, const SalTwoRect& r2Rect); - void addDrawPixel(long nX, long nY, const SalColor& rColor); + void addDrawPixel(long nX, long nY, SalColor nColor); void addDrawRectangle(long nX, long nY, long nWidth, long nHeight, double fTransparency, - const SalColor& rLineColor, const SalColor& rFillColor); + SalColor nLineColor, SalColor nFillColor); - void addDrawLine(long nX1, long nY1, long nX2, long nY2, const SalColor& rLineColor, bool bUseAA); + void addDrawLine(long nX1, long nY1, long nX2, long nY2, SalColor nLineColor, bool bUseAA); void addDrawPolyPolygon(const basegfx::B2DPolyPolygon& rPolyPolygon, double fTransparency, - const SalColor& rLineColor, const SalColor& rFillColor, bool bUseAA); + SalColor nLineColor, SalColor nFillColor, bool bUseAA); }; #endif // INCLUDED_VCL_INC_OPENGL_RENDERLIST_H |