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/fpdf_page/cpdf_generalstate.h" | 7 #include "core/fpdfapi/fpdf_page/cpdf_generalstate.h" |
8 | 8 |
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 9 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
10 #include "core/fpdfapi/fpdf_render/render_int.h" | 10 #include "core/fpdfapi/fpdf_render/render_int.h" |
11 | 11 |
12 namespace { | 12 namespace { |
13 | 13 |
14 int RI_StringToId(const CFX_ByteString& ri) { | 14 int RI_StringToId(const CFX_ByteString& ri) { |
15 uint32_t id = ri.GetID(); | 15 uint32_t id = ri.GetID(); |
16 if (id == FXBSTR_ID('A', 'b', 's', 'o')) | 16 if (id == FXBSTR_ID('A', 'b', 's', 'o')) |
17 return 1; | 17 return 1; |
18 | 18 |
19 if (id == FXBSTR_ID('S', 'a', 't', 'u')) | 19 if (id == FXBSTR_ID('S', 'a', 't', 'u')) |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 } | 272 } |
273 } | 273 } |
274 | 274 |
275 CPDF_GeneralState::StateData::~StateData() { | 275 CPDF_GeneralState::StateData::~StateData() { |
276 if (m_pTransferFunc && m_pTransferFunc->m_pPDFDoc) { | 276 if (m_pTransferFunc && m_pTransferFunc->m_pPDFDoc) { |
277 CPDF_DocRenderData* pDocCache = m_pTransferFunc->m_pPDFDoc->GetRenderData(); | 277 CPDF_DocRenderData* pDocCache = m_pTransferFunc->m_pPDFDoc->GetRenderData(); |
278 if (pDocCache) | 278 if (pDocCache) |
279 pDocCache->ReleaseTransferFunc(m_pTR); | 279 pDocCache->ReleaseTransferFunc(m_pTR); |
280 } | 280 } |
281 } | 281 } |
OLD | NEW |