diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-12-12 14:07:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-12-13 18:09:04 +0100 |
commit | 92691a5b0afa149495615d7b269e74569b798944 (patch) | |
tree | 68034dc853befe66a943b183c852979697337a21 /include | |
parent | 152e10996fe9c788daec940bab6fe897097ba992 (diff) |
loplugin:unusedmethods
Change-Id: Id0aed0077ed121fdaef574248427a3425248e7d5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160617
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/alpha.hxx | 5 | ||||
-rw-r--r-- | include/vcl/bitmapex.hxx | 21 |
2 files changed, 0 insertions, 26 deletions
diff --git a/include/vcl/alpha.hxx b/include/vcl/alpha.hxx index fb5be9c16388..ec7601847433 100644 --- a/include/vcl/alpha.hxx +++ b/include/vcl/alpha.hxx @@ -108,11 +108,6 @@ public: bool CopyPixel_AlphaOptimized( const tools::Rectangle& rRectDst, - const tools::Rectangle& rRectSrc ) - { return maBitmap.CopyPixel_AlphaOptimized(rRectDst, rRectSrc); } - - bool CopyPixel_AlphaOptimized( - const tools::Rectangle& rRectDst, const tools::Rectangle& rRectSrc, const AlphaMask& rBmpSrc ) { return maBitmap.CopyPixel_AlphaOptimized(rRectDst, rRectSrc, rBmpSrc); } diff --git a/include/vcl/bitmapex.hxx b/include/vcl/bitmapex.hxx index c159e7d4910c..de5d36ddad0f 100644 --- a/include/vcl/bitmapex.hxx +++ b/include/vcl/bitmapex.hxx @@ -152,27 +152,6 @@ public: const tools::Rectangle& rRectSrc, const BitmapEx& rBmpExSrc ); - /** Copy a rectangular area from one part of the bitmap to another. - - @param rRectDst - Destination rectangle in this bitmap. This is clipped to the - bitmap dimensions. - - @param rRectSrc - Source rectangle in this bitmap. This is clipped to the - bitmap dimensions. Note further that no scaling takes place - during this copy operation, i.e. only the minimum of source - and destination rectangle's width and height are used. - - @return true, if the operation completed successfully. false - is not only returned when the operation failed, but also if - nothing had to be done, e.g. because one of the rectangles are - empty. - */ - bool CopyPixel( - const tools::Rectangle& rRectDst, - const tools::Rectangle& rRectSrc ); - /** Fill the entire bitmap with the given color @param rFillColor |