include/vcl/outdev.hxx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-)
New commits: commit 27733b12867678d3e8731664f5902ba91c0324f6 Author: Christopher Sherlock <[email protected]> AuthorDate: Wed Sep 17 05:51:07 2025 +1000 Commit: Tomaž Vajngerl <[email protected]> CommitDate: Fri Nov 14 11:47:26 2025 +0100 vcl: make OutputDevice::DrawAlphaBitmap() private Change-Id: Ibbe23a828d3770085a115555ffa39a9d78781f13 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191049 Reviewed-by: Tomaž Vajngerl <[email protected]> Tested-by: Jenkins diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index a2730367db84..f4fda52dd089 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -1317,15 +1317,6 @@ public: const Bitmap& rBitmap, MetaActionType nAction ); - // draw bitmap with alpha information - SAL_DLLPRIVATE void DrawAlphaBitmap( - const Point& rDestPt, - const Size& rDestSize, - const Point& rSrcPtPixel, - const Size& rSrcSizePixel, - const Bitmap& rBitmap, - MetaActionType nAction ); - /** @overload virtual void DrawImage( const Point& rPos, @@ -1416,6 +1407,13 @@ protected: double &fMaximumArea); private: + SAL_DLLPRIVATE void DrawAlphaBitmap( + const Point& rDestPt, + const Size& rDestSize, + const Point& rSrcPtPixel, + const Size& rSrcSizePixel, + const Bitmap& rBitmap, + MetaActionType nAction ); SAL_DLLPRIVATE void DrawDeviceAlphaBitmap( const Bitmap& rBmp,
