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 #include "core/fxcodec/include/fx_codec.h" | 7 #include "core/fxcodec/fx_codec.h" |
8 #include "core/fxge/include/fx_dib.h" | 8 #include "core/fxge/include/fx_dib.h" |
9 | 9 |
10 class CFX_Palette { | 10 class CFX_Palette { |
11 public: | 11 public: |
12 CFX_Palette(); | 12 CFX_Palette(); |
13 ~CFX_Palette(); | 13 ~CFX_Palette(); |
14 | 14 |
15 FX_BOOL BuildPalette(const CFX_DIBSource* pBitmap); | 15 FX_BOOL BuildPalette(const CFX_DIBSource* pBitmap); |
16 uint32_t* GetPalette() const { return m_pPalette; } | 16 uint32_t* GetPalette() const { return m_pPalette; } |
17 uint32_t* GetColorLut() const { return m_cLut; } | 17 uint32_t* GetColorLut() const { return m_cLut; } |
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 m_pPalette = std::move(pal_8bpp); | 895 m_pPalette = std::move(pal_8bpp); |
896 if (!m_bExtBuf) | 896 if (!m_bExtBuf) |
897 FX_Free(m_pBuffer); | 897 FX_Free(m_pBuffer); |
898 m_bExtBuf = FALSE; | 898 m_bExtBuf = FALSE; |
899 m_pBuffer = dest_buf; | 899 m_pBuffer = dest_buf; |
900 m_bpp = (uint8_t)dest_format; | 900 m_bpp = (uint8_t)dest_format; |
901 m_AlphaFlag = (uint8_t)(dest_format >> 8); | 901 m_AlphaFlag = (uint8_t)(dest_format >> 8); |
902 m_Pitch = dest_pitch; | 902 m_Pitch = dest_pitch; |
903 return TRUE; | 903 return TRUE; |
904 } | 904 } |
OLD | NEW |