Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / vcl / Scanline.hxx
blobbe33bc232983ab252930795f5550893e5ea2e91a
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>
24 #include <sal/types.h>
26 typedef sal_uInt8* Scanline;
27 typedef const sal_uInt8* ConstScanline;
29 enum class ScanlineFormat {
30 NONE = 0x00000000,
32 N1BitMsbPal = 0x00000001,
33 N1BitLsbPal = 0x00000002,
35 N8BitPal = 0x00000010,
37 N24BitTcBgr = 0x00000100,
38 N24BitTcRgb = 0x00000200,
40 N32BitTcAbgr = 0x00000800,
41 N32BitTcArgb = 0x00001000,
42 N32BitTcBgra = 0x00002000,
43 N32BitTcRgba = 0x00004000,
44 N32BitTcMask = 0x00008000,
46 TopDown = 0x00010000 // scanline adjustment
49 namespace o3tl
51 template<> struct typed_flags<ScanlineFormat> : is_typed_flags<ScanlineFormat, 0x0001fb13> {};
54 inline ScanlineFormat RemoveScanline(ScanlineFormat nFormat)
56 return nFormat & ~ScanlineFormat::TopDown;
59 #endif // INCLUDED_VCL_SCANLINE_HXX
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */