Bump version to 21.06.18.1
[LibreOffice.git] / include / vcl / Scanline.hxx
blob707ee41fa9cd1e5414b8ed9f70429541b1d75608
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_SCANLINE_HXX
21 #define INCLUDED_VCL_SCANLINE_HXX
23 #include <o3tl/typed_flags_set.hxx>
25 typedef sal_uInt8* Scanline;
26 typedef const sal_uInt8* ConstScanline;
28 enum class ScanlineFormat {
29 NONE = 0x00000000,
31 N1BitMsbPal = 0x00000001,
32 N1BitLsbPal = 0x00000002,
34 N4BitMsnPal = 0x00000004,
35 N4BitLsnPal = 0x00000008,
37 N8BitPal = 0x00000010,
39 N24BitTcBgr = 0x00000100,
40 N24BitTcRgb = 0x00000200,
42 N32BitTcAbgr = 0x00000800,
43 N32BitTcArgb = 0x00001000,
44 N32BitTcBgra = 0x00002000,
45 N32BitTcRgba = 0x00004000,
46 N32BitTcMask = 0x00008000,
48 TopDown = 0x00010000 // scanline adjustment
51 namespace o3tl
53 template<> struct typed_flags<ScanlineFormat> : is_typed_flags<ScanlineFormat, 0x0001fb1f> {};
56 inline ScanlineFormat RemoveScanline(ScanlineFormat nFormat)
58 return nFormat & ~ScanlineFormat::TopDown;
61 #endif // INCLUDED_VCL_SCANLINE_HXX
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */