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

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

Issue 2223213002: Refactor fx_ge part 3 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: 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
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
3 // becore/fpdfapi/fpdf_page/cpdf_graphstate.h
dsinclair 2016/08/09 14:14:35 Seems ... wrong.
npm 2016/08/09 16:26:12 Oops, my bad.
3 // found in the LICENSE file. 4 // found in the LICENSE file.
4 5
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 7
7 #include "core/fpdfapi/fpdf_page/cpdf_allstates.h" 8 #include "core/fpdfapi/fpdf_page/cpdf_allstates.h"
8 9
9 #include "core/fpdfapi/fpdf_page/pageint.h" 10 #include "core/fpdfapi/fpdf_page/pageint.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
13 #include "core/fxge/include/cfx_graphstatedata.h"
12 14
13 namespace { 15 namespace {
14 16
15 FX_FLOAT ClipFloat(FX_FLOAT f) { 17 FX_FLOAT ClipFloat(FX_FLOAT f) {
16 return std::max(0.0f, std::min(1.0f, f)); 18 return std::max(0.0f, std::min(1.0f, f));
17 } 19 }
18 20
19 } // namespace 21 } // namespace
20 22
21 CPDF_AllStates::CPDF_AllStates() { 23 CPDF_AllStates::CPDF_AllStates() {
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 case FXBSTR_ID('A', 'I', 'S', 0): 178 case FXBSTR_ID('A', 'I', 'S', 0):
177 pGeneralState->m_AlphaSource = pObject->GetInteger(); 179 pGeneralState->m_AlphaSource = pObject->GetInteger();
178 break; 180 break;
179 case FXBSTR_ID('T', 'K', 0, 0): 181 case FXBSTR_ID('T', 'K', 0, 0):
180 pGeneralState->m_TextKnockout = pObject->GetInteger(); 182 pGeneralState->m_TextKnockout = pObject->GetInteger();
181 break; 183 break;
182 } 184 }
183 } 185 }
184 pGeneralState->m_Matrix = m_CTM; 186 pGeneralState->m_Matrix = m_CTM;
185 } 187 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698