| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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_render/render_int.h" | 7 #include "core/fpdfapi/fpdf_render/render_int.h" |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "core/fpdfapi/fpdf_page/pageint.h" | 12 #include "core/fpdfapi/fpdf_page/pageint.h" |
| 13 #include "core/include/fpdfapi/cpdf_array.h" | 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
| 14 #include "core/include/fpdfapi/cpdf_dictionary.h" | 14 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
| 15 #include "core/include/fpdfapi/cpdf_document.h" | 15 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 16 #include "core/include/fpdfapi/fpdf_module.h" | 16 #include "core/fpdfapi/fpdf_parser/ipdf_occontext.h" |
| 17 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h" |
| 18 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" |
| 19 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" |
| 17 #include "core/include/fpdfapi/fpdf_pageobj.h" | 20 #include "core/include/fpdfapi/fpdf_pageobj.h" |
| 18 #include "core/include/fpdfapi/fpdf_render.h" | |
| 19 #include "core/include/fxcodec/fx_codec.h" | 21 #include "core/include/fxcodec/fx_codec.h" |
| 20 #include "core/include/fxcrt/fx_safe_types.h" | 22 #include "core/include/fxcrt/fx_safe_types.h" |
| 21 #include "core/include/fxge/fx_ge.h" | 23 #include "core/include/fxge/fx_ge.h" |
| 22 | 24 |
| 23 FX_BOOL CPDF_RenderStatus::ProcessImage(const CPDF_ImageObject* pImageObj, | 25 FX_BOOL CPDF_RenderStatus::ProcessImage(const CPDF_ImageObject* pImageObj, |
| 24 const CFX_Matrix* pObj2Device) { | 26 const CFX_Matrix* pObj2Device) { |
| 25 CPDF_ImageRenderer render; | 27 CPDF_ImageRenderer render; |
| 26 if (render.Start(this, pImageObj, pObj2Device, m_bStdCS, m_curBlend)) { | 28 if (render.Start(this, pImageObj, pObj2Device, m_bStdCS, m_curBlend)) { |
| 27 render.Continue(NULL); | 29 render.Continue(NULL); |
| 28 } | 30 } |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 } else if (pFunc) { | 991 } else if (pFunc) { |
| 990 int size = dest_pitch * height; | 992 int size = dest_pitch * height; |
| 991 for (int i = 0; i < size; i++) { | 993 for (int i = 0; i < size; i++) { |
| 992 dest_buf[i] = transfers[src_buf[i]]; | 994 dest_buf[i] = transfers[src_buf[i]]; |
| 993 } | 995 } |
| 994 } else { | 996 } else { |
| 995 FXSYS_memcpy(dest_buf, src_buf, dest_pitch * height); | 997 FXSYS_memcpy(dest_buf, src_buf, dest_pitch * height); |
| 996 } | 998 } |
| 997 return pMask.release(); | 999 return pMask.release(); |
| 998 } | 1000 } |
| OLD | NEW |