OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef _FPDF_DIB_H_ | 7 #ifndef CORE_INCLUDE_FXGE_FX_DIB_H_ |
8 #define _FPDF_DIB_H_ | 8 #define CORE_INCLUDE_FXGE_FX_DIB_H_ |
9 #ifndef _FXCRT_EXTENSION_ | 9 |
10 #include "../fxcrt/fx_ext.h" | 10 #include "../fxcrt/fx_ext.h" |
11 #endif | 11 |
12 enum FXDIB_Format { | 12 enum FXDIB_Format { |
13 FXDIB_Invalid = 0, | 13 FXDIB_Invalid = 0, |
14 FXDIB_1bppMask = 0x101, | 14 FXDIB_1bppMask = 0x101, |
15 FXDIB_1bppRgb = 0x001, | 15 FXDIB_1bppRgb = 0x001, |
16 FXDIB_1bppCmyk = 0x401, | 16 FXDIB_1bppCmyk = 0x401, |
17 FXDIB_8bppMask = 0x108, | 17 FXDIB_8bppMask = 0x108, |
18 FXDIB_8bppRgb = 0x008, | 18 FXDIB_8bppRgb = 0x008, |
19 FXDIB_8bppRgba = 0x208, | 19 FXDIB_8bppRgba = 0x208, |
20 FXDIB_8bppCmyk = 0x408, | 20 FXDIB_8bppCmyk = 0x408, |
21 FXDIB_8bppCmyka = 0x608, | 21 FXDIB_8bppCmyka = 0x608, |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 CFX_BitmapComposer m_Composer; | 595 CFX_BitmapComposer m_Composer; |
596 int m_Status; | 596 int m_Status; |
597 int m_DestLeft, m_DestTop; | 597 int m_DestLeft, m_DestTop; |
598 FX_RECT m_ClipBox; | 598 FX_RECT m_ClipBox; |
599 FX_DWORD m_Flags; | 599 FX_DWORD m_Flags; |
600 int m_AlphaFlag; | 600 int m_AlphaFlag; |
601 void* m_pIccTransform; | 601 void* m_pIccTransform; |
602 FX_BOOL m_bRgbByteOrder; | 602 FX_BOOL m_bRgbByteOrder; |
603 int m_BlendType; | 603 int m_BlendType; |
604 }; | 604 }; |
605 #endif | 605 |
| 606 #endif // CORE_INCLUDE_FXGE_FX_DIB_H_ |
OLD | NEW |