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/cfx_renderdevice.h" | 7 #include "core/fxge/include/cfx_renderdevice.h" |
8 | 8 |
9 #include "core/fxcrt/include/fx_safe_types.h" | 9 #include "core/fxcrt/include/fx_safe_types.h" |
| 10 #include "core/fxge/include/cfx_autofontcache.h" |
| 11 #include "core/fxge/include/cfx_fontcache.h" |
10 #include "core/fxge/include/cfx_fxgedevice.h" | 12 #include "core/fxge/include/cfx_fxgedevice.h" |
11 #include "core/fxge/include/cfx_graphstatedata.h" | 13 #include "core/fxge/include/cfx_graphstatedata.h" |
12 #include "core/fxge/include/cfx_pathdata.h" | 14 #include "core/fxge/include/cfx_pathdata.h" |
13 #include "core/fxge/include/ifx_renderdevicedriver.h" | 15 #include "core/fxge/include/ifx_renderdevicedriver.h" |
14 | 16 |
15 #if defined _SKIA_SUPPORT_ | 17 #if defined _SKIA_SUPPORT_ |
16 #include "third_party/skia/include/core/SkTypes.h" | 18 #include "third_party/skia/include/core/SkTypes.h" |
17 #endif | 19 #endif |
18 | 20 |
19 namespace { | 21 namespace { |
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 fill_color, stroke_color, fill_mode, | 1095 fill_color, stroke_color, fill_mode, |
1094 FXDIB_BLEND_NORMAL)) { | 1096 FXDIB_BLEND_NORMAL)) { |
1095 return FALSE; | 1097 return FALSE; |
1096 } | 1098 } |
1097 } | 1099 } |
1098 if (pClippingPath) | 1100 if (pClippingPath) |
1099 pClippingPath->Append(&TransformedPath, pUser2Device); | 1101 pClippingPath->Append(&TransformedPath, pUser2Device); |
1100 } | 1102 } |
1101 return TRUE; | 1103 return TRUE; |
1102 } | 1104 } |
OLD | NEW |