diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-06-23 15:18:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-06-24 21:32:52 +0200 |
commit | 6ccc85290ea66ac69a609ef2345aea48605cefba (patch) | |
tree | ea11047b3493fb78119a12feb2c0bc736707a67d /vcl | |
parent | 350fe112c20106e9a53fec4c2f3c0f7fdc496e3f (diff) |
BmpScaleFlag::Super is dead
ever since
commit 2269ac65de127d33d41843ae15f6bece5bc778bc
Author: Michael Meeks <michael.meeks@collabora.com>
Date: Fri Nov 7 05:42:51 2014 +0000
icontest: remove hand-coded opengl path.
Change-Id: Ida030be0e087353e20897a9e961c9ce1134b21e7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117782
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/bitmap/bitmap.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/vcl/source/bitmap/bitmap.cxx b/vcl/source/bitmap/bitmap.cxx index e093e0afabb5..1c50d35e649b 100644 --- a/vcl/source/bitmap/bitmap.cxx +++ b/vcl/source/bitmap/bitmap.cxx @@ -1435,9 +1435,6 @@ bool Bitmap::Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag n bRetval = BitmapFilter::Filter(aBmpEx, BitmapInterpolateScaleFilter(rScaleX, rScaleY)); break; - case BmpScaleFlag::Super: - bRetval = BitmapFilter::Filter(aBmpEx, BitmapScaleSuperFilter(rScaleX, rScaleY)); - break; case BmpScaleFlag::BestQuality: case BmpScaleFlag::Lanczos: bRetval = BitmapFilter::Filter(aBmpEx, vcl::BitmapScaleLanczos3Filter(rScaleX, rScaleY)); |