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

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

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 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/fpdfapi/fpdf_font/ttgsubtable.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_colorstate.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 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/fpdf_page/cpdf_allstates.h" 7 #include "core/fpdfapi/fpdf_page/cpdf_allstates.h"
8 8
9 #include "core/fpdfapi/fpdf_page/pageint.h" 9 #include "core/fpdfapi/fpdf_page/pageint.h"
10 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 10 #include "core/fpdfapi/fpdf_parser/cpdf_array.h"
11 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 11 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h"
12 #include "core/fxge/include/cfx_graphstatedata.h" 12 #include "core/fxge/cfx_graphstatedata.h"
13 13
14 namespace { 14 namespace {
15 15
16 FX_FLOAT ClipFloat(FX_FLOAT f) { 16 FX_FLOAT ClipFloat(FX_FLOAT f) {
17 return std::max(0.0f, std::min(1.0f, f)); 17 return std::max(0.0f, std::min(1.0f, f));
18 } 18 }
19 19
20 } // namespace 20 } // namespace
21 21
22 CPDF_AllStates::CPDF_AllStates() { 22 CPDF_AllStates::CPDF_AllStates() {
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 case FXBSTR_ID('A', 'I', 'S', 0): 166 case FXBSTR_ID('A', 'I', 'S', 0):
167 m_GeneralState.SetAlphaSource(!!pObject->GetInteger()); 167 m_GeneralState.SetAlphaSource(!!pObject->GetInteger());
168 break; 168 break;
169 case FXBSTR_ID('T', 'K', 0, 0): 169 case FXBSTR_ID('T', 'K', 0, 0):
170 m_GeneralState.SetTextKnockout(!!pObject->GetInteger()); 170 m_GeneralState.SetTextKnockout(!!pObject->GetInteger());
171 break; 171 break;
172 } 172 }
173 } 173 }
174 m_GeneralState.SetMatrix(m_CTM); 174 m_GeneralState.SetMatrix(m_CTM);
175 } 175 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_font/ttgsubtable.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_colorstate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698