| 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/fxge/include/ifx_renderdevicedriver.h" | 7 #include "core/fxge/include/ifx_renderdevicedriver.h" |
| 8 | 8 |
| 9 #include "core/fxcrt/include/fx_coordinates.h" | 9 #include "core/fxcrt/include/fx_coordinates.h" |
| 10 #include "core/fxge/include/cfx_pathdata.h" |
| 10 | 11 |
| 11 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {} | 12 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {} |
| 12 | 13 |
| 13 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const { | 14 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const { |
| 14 return CFX_Matrix(); | 15 return CFX_Matrix(); |
| 15 } | 16 } |
| 16 | 17 |
| 17 FX_BOOL IFX_RenderDeviceDriver::StartRendering() { | 18 FX_BOOL IFX_RenderDeviceDriver::StartRendering() { |
| 18 return TRUE; | 19 return TRUE; |
| 19 } | 20 } |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 84 |
| 84 void IFX_RenderDeviceDriver::ClearDriver() {} | 85 void IFX_RenderDeviceDriver::ClearDriver() {} |
| 85 | 86 |
| 86 FX_BOOL IFX_RenderDeviceDriver::DrawShading(const CPDF_ShadingPattern* pPattern, | 87 FX_BOOL IFX_RenderDeviceDriver::DrawShading(const CPDF_ShadingPattern* pPattern, |
| 87 const CFX_Matrix* pMatrix, | 88 const CFX_Matrix* pMatrix, |
| 88 const FX_RECT& clip_rect, | 89 const FX_RECT& clip_rect, |
| 89 int alpha, | 90 int alpha, |
| 90 FX_BOOL bAlphaMode) { | 91 FX_BOOL bAlphaMode) { |
| 91 return false; | 92 return false; |
| 92 } | 93 } |
| OLD | NEW |