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/fxge/include/cfx_pathdata.h" |
7 #include "core/fxge/include/fx_ge.h" | 8 #include "core/fxge/include/fx_ge.h" |
8 #include "core/fxge/include/ifx_renderdevicedriver.h" | 9 #include "core/fxge/include/ifx_renderdevicedriver.h" |
9 | 10 |
10 #if defined _SKIA_SUPPORT_ | 11 #if defined _SKIA_SUPPORT_ |
11 #include "third_party/skia/include/core/SkTypes.h" | 12 #include "third_party/skia/include/core/SkTypes.h" |
12 #endif | 13 #endif |
13 | 14 |
14 CFX_RenderDevice::CFX_RenderDevice() | 15 CFX_RenderDevice::CFX_RenderDevice() |
15 : m_pBitmap(nullptr), | 16 : m_pBitmap(nullptr), |
16 m_Width(0), | 17 m_Width(0), |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 void CFX_RenderDevice::CancelDIBits(void* handle) { | 488 void CFX_RenderDevice::CancelDIBits(void* handle) { |
488 m_pDeviceDriver->CancelDIBits(handle); | 489 m_pDeviceDriver->CancelDIBits(handle); |
489 } | 490 } |
490 | 491 |
491 #ifdef _SKIA_SUPPORT_ | 492 #ifdef _SKIA_SUPPORT_ |
492 | 493 |
493 void CFX_RenderDevice::DebugVerifyBitmapIsPreMultiplied() const { | 494 void CFX_RenderDevice::DebugVerifyBitmapIsPreMultiplied() const { |
494 SkASSERT(0); | 495 SkASSERT(0); |
495 } | 496 } |
496 #endif | 497 #endif |
OLD | NEW |