diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-03-31 14:32:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-03-31 17:38:04 +0200 |
commit | 740757d17452e3b2f9bfa7897c05dedeca639e34 (patch) | |
tree | 653ebc09c09e53fd9d94863bc057d43a1a163c5b /canvas | |
parent | b5558e4ac6c2f134f07ea87a143694b17adb4482 (diff) |
remove internal 4bit scanline formats
since we have already removed the 4-bit internal bitmap formats.
Change-Id: Ie481aaa8e25642a47e30beb6f37e2d3beda304e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113412
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/directx/dx_vcltools.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/canvas/source/directx/dx_vcltools.cxx b/canvas/source/directx/dx_vcltools.cxx index 68a07ae79b4a..707d358e5869 100644 --- a/canvas/source/directx/dx_vcltools.cxx +++ b/canvas/source/directx/dx_vcltools.cxx @@ -176,7 +176,6 @@ namespace dxcanvas::tools // one of the following formats: // ScanlineFormat::N1BitMsbPal - // ScanlineFormat::N4BitMsnPal // ScanlineFormat::N8BitPal // ScanlineFormat::N24BitTcBgr // ScanlineFormat::N32BitTcMask @@ -240,7 +239,6 @@ namespace dxcanvas::tools // to hand-formulate the following // formats, too. case ScanlineFormat::N1BitMsbPal: - case ScanlineFormat::N4BitMsnPal: case ScanlineFormat::N32BitTcMask: { Scanline pAScan = pAlphaReadAccess->GetScanline( y ); @@ -261,7 +259,6 @@ namespace dxcanvas::tools break; case ScanlineFormat::N1BitLsbPal: - case ScanlineFormat::N4BitLsnPal: case ScanlineFormat::N24BitTcRgb: case ScanlineFormat::N32BitTcAbgr: case ScanlineFormat::N32BitTcArgb: @@ -285,7 +282,6 @@ namespace dxcanvas::tools // one of the following formats: // ScanlineFormat::N1BitMsbPal - // ScanlineFormat::N4BitMsnPal // ScanlineFormat::N8BitPal // ScanlineFormat::N24BitTcBgr // ScanlineFormat::N32BitTcMask @@ -371,7 +367,6 @@ namespace dxcanvas::tools // to hand-formulate the following // formats, too. case ScanlineFormat::N1BitMsbPal: - case ScanlineFormat::N4BitMsnPal: case ScanlineFormat::N32BitTcMask: { Scanline pMScan = pMaskReadAccess->GetScanline( y ); @@ -395,7 +390,6 @@ namespace dxcanvas::tools break; case ScanlineFormat::N1BitLsbPal: - case ScanlineFormat::N4BitLsnPal: case ScanlineFormat::N24BitTcRgb: case ScanlineFormat::N32BitTcAbgr: case ScanlineFormat::N32BitTcArgb: |