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

Side by Side Diff: core/fpdfapi/page/cpdf_allstates.cpp

Issue 2521123003: Continue splitting pageint.h into per-class files (Closed)
Patch Set: const Created 4 years, 1 month 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/fpdfapi/font/cpdf_type3font.cpp ('k') | core/fpdfapi/page/cpdf_contentparser.h » ('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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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/fpdfapi/page/cpdf_allstates.h" 7 #include "core/fpdfapi/page/cpdf_allstates.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "core/fpdfapi/page/cpdf_pageobjectholder.h"
12 #include "core/fpdfapi/page/cpdf_streamcontentparser.h"
11 #include "core/fpdfapi/page/pageint.h" 13 #include "core/fpdfapi/page/pageint.h"
12 #include "core/fpdfapi/parser/cpdf_array.h" 14 #include "core/fpdfapi/parser/cpdf_array.h"
13 #include "core/fpdfapi/parser/cpdf_dictionary.h" 15 #include "core/fpdfapi/parser/cpdf_dictionary.h"
14 #include "core/fxge/cfx_graphstatedata.h" 16 #include "core/fxge/cfx_graphstatedata.h"
15 17
16 namespace { 18 namespace {
17 19
18 FX_FLOAT ClipFloat(FX_FLOAT f) { 20 FX_FLOAT ClipFloat(FX_FLOAT f) {
19 return std::max(0.0f, std::min(1.0f, f)); 21 return std::max(0.0f, std::min(1.0f, f));
20 } 22 }
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 case FXBSTR_ID('A', 'I', 'S', 0): 170 case FXBSTR_ID('A', 'I', 'S', 0):
169 m_GeneralState.SetAlphaSource(!!pObject->GetInteger()); 171 m_GeneralState.SetAlphaSource(!!pObject->GetInteger());
170 break; 172 break;
171 case FXBSTR_ID('T', 'K', 0, 0): 173 case FXBSTR_ID('T', 'K', 0, 0):
172 m_GeneralState.SetTextKnockout(!!pObject->GetInteger()); 174 m_GeneralState.SetTextKnockout(!!pObject->GetInteger());
173 break; 175 break;
174 } 176 }
175 } 177 }
176 m_GeneralState.SetMatrix(m_CTM); 178 m_GeneralState.SetMatrix(m_CTM);
177 } 179 }
OLDNEW
« no previous file with comments | « core/fpdfapi/font/cpdf_type3font.cpp ('k') | core/fpdfapi/page/cpdf_contentparser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698