| 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/ifx_renderdevicedriver.h" | 7 #include "core/fxge/ifx_renderdevicedriver.h" |
| 8 | 8 |
| 9 #include "core/fxcrt/fx_coordinates.h" | 9 #include "core/fxcrt/fx_coordinates.h" |
| 10 #include "core/fxge/cfx_pathdata.h" | 10 #include "core/fxge/cfx_pathdata.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 } | 92 } |
| 93 | 93 |
| 94 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap, | 94 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap, |
| 95 const CFX_DIBSource* pMask, | 95 const CFX_DIBSource* pMask, |
| 96 int left, | 96 int left, |
| 97 int top, | 97 int top, |
| 98 int bitmap_alpha, | 98 int bitmap_alpha, |
| 99 int blend_type) { | 99 int blend_type) { |
| 100 return false; | 100 return false; |
| 101 } | 101 } |
| 102 |
| 103 #if defined _SKIA_SUPPORT_ || _SKIA_SUPPORT_PATHS_ |
| 104 void IFX_RenderDeviceDriver::Flush() {} |
| 105 #endif |
| OLD | NEW |