| 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 <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "core/fpdfapi/cpdf_modulemgr.h" | 11 #include "core/fpdfapi/cpdf_modulemgr.h" |
| 12 #include "core/fpdfapi/fpdf_font/cpdf_type3char.h" | 12 #include "core/fpdfapi/font/cpdf_type3char.h" |
| 13 #include "core/fpdfapi/fpdf_font/cpdf_type3font.h" | 13 #include "core/fpdfapi/font/cpdf_type3font.h" |
| 14 #include "core/fpdfapi/fpdf_page/cpdf_form.h" | 14 #include "core/fpdfapi/fpdf_page/cpdf_form.h" |
| 15 #include "core/fpdfapi/fpdf_page/cpdf_formobject.h" | 15 #include "core/fpdfapi/fpdf_page/cpdf_formobject.h" |
| 16 #include "core/fpdfapi/fpdf_page/cpdf_graphicstates.h" | 16 #include "core/fpdfapi/fpdf_page/cpdf_graphicstates.h" |
| 17 #include "core/fpdfapi/fpdf_page/cpdf_image.h" | 17 #include "core/fpdfapi/fpdf_page/cpdf_image.h" |
| 18 #include "core/fpdfapi/fpdf_page/cpdf_imageobject.h" | 18 #include "core/fpdfapi/fpdf_page/cpdf_imageobject.h" |
| 19 #include "core/fpdfapi/fpdf_page/cpdf_page.h" | 19 #include "core/fpdfapi/fpdf_page/cpdf_page.h" |
| 20 #include "core/fpdfapi/fpdf_page/cpdf_pageobject.h" | 20 #include "core/fpdfapi/fpdf_page/cpdf_pageobject.h" |
| 21 #include "core/fpdfapi/fpdf_page/cpdf_pathobject.h" | 21 #include "core/fpdfapi/fpdf_page/cpdf_pathobject.h" |
| 22 #include "core/fpdfapi/fpdf_page/cpdf_textobject.h" | 22 #include "core/fpdfapi/fpdf_page/cpdf_textobject.h" |
| 23 #include "core/fpdfapi/fpdf_page/pageint.h" | 23 #include "core/fpdfapi/fpdf_page/pageint.h" |
| (...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1280 m_pDevice->StretchDIBits(m_pBitmapDevice->GetBitmap(), m_Rect.left, | 1280 m_pDevice->StretchDIBits(m_pBitmapDevice->GetBitmap(), m_Rect.left, |
| 1281 m_Rect.top, m_Rect.Width(), m_Rect.Height()); | 1281 m_Rect.top, m_Rect.Width(), m_Rect.Height()); |
| 1282 } | 1282 } |
| 1283 } | 1283 } |
| 1284 | 1284 |
| 1285 #if defined _SKIA_SUPPORT_ | 1285 #if defined _SKIA_SUPPORT_ |
| 1286 void CPDF_RenderStatus::DebugVerifyDeviceIsPreMultiplied() const { | 1286 void CPDF_RenderStatus::DebugVerifyDeviceIsPreMultiplied() const { |
| 1287 m_pDevice->DebugVerifyBitmapIsPreMultiplied(); | 1287 m_pDevice->DebugVerifyBitmapIsPreMultiplied(); |
| 1288 } | 1288 } |
| 1289 #endif | 1289 #endif |
| OLD | NEW |