OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |