| 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/fx_coordinates.h" |
| 10 #include "core/fxge/include/cfx_pathdata.h" | 10 #include "core/fxge/include/cfx_pathdata.h" |
| 11 #include "core/fxge/include/cfx_renderdevice.h" | 11 #include "core/fxge/include/cfx_renderdevice.h" |
| 12 | 12 |
| 13 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {} | 13 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {} |
| 14 | 14 |
| 15 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const { | 15 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const { |
| 16 return CFX_Matrix(); | 16 return CFX_Matrix(); |
| 17 } | 17 } |
| 18 | 18 |
| 19 FX_BOOL IFX_RenderDeviceDriver::StartRendering() { | 19 FX_BOOL IFX_RenderDeviceDriver::StartRendering() { |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 } | 93 } |
| 94 | 94 |
| 95 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap, | 95 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap, |
| 96 const CFX_DIBSource* pMask, | 96 const CFX_DIBSource* pMask, |
| 97 int left, | 97 int left, |
| 98 int top, | 98 int top, |
| 99 int bitmap_alpha, | 99 int bitmap_alpha, |
| 100 int blend_type) { | 100 int blend_type) { |
| 101 return false; | 101 return false; |
| 102 } | 102 } |
| OLD | NEW |