diff options
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 |