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/fx_safe_types.h" |
10 #include "core/fxge/include/cfx_facecache.h" | 10 #include "core/fxge/include/cfx_facecache.h" |
11 #include "core/fxge/include/cfx_fxgedevice.h" | 11 #include "core/fxge/include/cfx_fxgedevice.h" |
12 #include "core/fxge/include/cfx_graphstatedata.h" | 12 #include "core/fxge/include/cfx_graphstatedata.h" |
13 #include "core/fxge/include/cfx_pathdata.h" | 13 #include "core/fxge/include/cfx_pathdata.h" |
14 #include "core/fxge/include/ifx_renderdevicedriver.h" | 14 #include "core/fxge/include/ifx_renderdevicedriver.h" |
15 | 15 |
16 #if defined _SKIA_SUPPORT_ | 16 #if defined _SKIA_SUPPORT_ |
17 #include "third_party/skia/include/core/SkTypes.h" | 17 #include "third_party/skia/include/core/SkTypes.h" |
18 #endif | 18 #endif |
19 | 19 |
(...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1072 fill_color, stroke_color, fill_mode, | 1072 fill_color, stroke_color, fill_mode, |
1073 FXDIB_BLEND_NORMAL)) { | 1073 FXDIB_BLEND_NORMAL)) { |
1074 return FALSE; | 1074 return FALSE; |
1075 } | 1075 } |
1076 } | 1076 } |
1077 if (pClippingPath) | 1077 if (pClippingPath) |
1078 pClippingPath->Append(&TransformedPath, pUser2Device); | 1078 pClippingPath->Append(&TransformedPath, pUser2Device); |
1079 } | 1079 } |
1080 return TRUE; | 1080 return TRUE; |
1081 } | 1081 } |
OLD | NEW |