Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: core/fxge/dib/fx_dib_main.cpp

Issue 2223213002: Refactor fx_ge part 3 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fxge/dib/fx_dib_engine.cpp ('k') | core/fxge/ge/cfx_graphstatedata.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/fxge/include/fx_dib.h" 7 #include "core/fxge/include/fx_dib.h"
8 8
9 #include <limits.h> 9 #include <limits.h>
10 #include <algorithm> 10 #include <algorithm>
11 11
12 #include "core/fxcodec/include/fx_codec.h" 12 #include "core/fxcodec/include/fx_codec.h"
13 #include "core/fxge/dib/dib_int.h" 13 #include "core/fxge/dib/dib_int.h"
14 #include "core/fxge/ge/cfx_cliprgn.h" 14 #include "core/fxge/ge/cfx_cliprgn.h"
15 #include "core/fxge/include/cfx_gemodule.h" 15 #include "core/fxge/include/cfx_gemodule.h"
16 #include "core/fxge/include/fx_ge.h"
17 16
18 void CmykDecode(uint32_t cmyk, int& c, int& m, int& y, int& k) { 17 void CmykDecode(uint32_t cmyk, int& c, int& m, int& y, int& k) {
19 c = FXSYS_GetCValue(cmyk); 18 c = FXSYS_GetCValue(cmyk);
20 m = FXSYS_GetMValue(cmyk); 19 m = FXSYS_GetMValue(cmyk);
21 y = FXSYS_GetYValue(cmyk); 20 y = FXSYS_GetYValue(cmyk);
22 k = FXSYS_GetKValue(cmyk); 21 k = FXSYS_GetKValue(cmyk);
23 } 22 }
24 23
25 void ArgbDecode(uint32_t argb, int& a, int& r, int& g, int& b) { 24 void ArgbDecode(uint32_t argb, int& a, int& r, int& g, int& b) {
26 a = FXARGB_A(argb); 25 a = FXARGB_A(argb);
(...skipping 1656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1683 uint32_t* pSrcPalette) { 1682 uint32_t* pSrcPalette) {
1684 m_pBitmap.reset(new CFX_DIBitmap); 1683 m_pBitmap.reset(new CFX_DIBitmap);
1685 if (!m_pBitmap->Create(width, height, src_format)) { 1684 if (!m_pBitmap->Create(width, height, src_format)) {
1686 m_pBitmap.reset(); 1685 m_pBitmap.reset();
1687 return FALSE; 1686 return FALSE;
1688 } 1687 }
1689 if (pSrcPalette) 1688 if (pSrcPalette)
1690 m_pBitmap->CopyPalette(pSrcPalette); 1689 m_pBitmap->CopyPalette(pSrcPalette);
1691 return TRUE; 1690 return TRUE;
1692 } 1691 }
OLDNEW
« no previous file with comments | « core/fxge/dib/fx_dib_engine.cpp ('k') | core/fxge/ge/cfx_graphstatedata.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698