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/agg/fx_agg_driver.h" | 7 #include "core/fxge/agg/fx_agg_driver.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
11 #include "core/fxcodec/fx_codec.h" | 11 #include "core/fxcodec/fx_codec.h" |
12 #include "core/fxcrt/fx_memory.h" | 12 #include "core/fxcrt/fx_memory.h" |
| 13 #include "core/fxge/cfx_fxgedevice.h" |
| 14 #include "core/fxge/cfx_gemodule.h" |
| 15 #include "core/fxge/cfx_graphstatedata.h" |
| 16 #include "core/fxge/cfx_pathdata.h" |
| 17 #include "core/fxge/cfx_renderdevice.h" |
13 #include "core/fxge/dib/dib_int.h" | 18 #include "core/fxge/dib/dib_int.h" |
14 #include "core/fxge/ge/cfx_cliprgn.h" | 19 #include "core/fxge/ge/cfx_cliprgn.h" |
15 #include "core/fxge/ge/fx_text_int.h" | 20 #include "core/fxge/ge/fx_text_int.h" |
16 #include "core/fxge/include/cfx_fxgedevice.h" | 21 #include "core/fxge/ifx_renderdevicedriver.h" |
17 #include "core/fxge/include/cfx_gemodule.h" | |
18 #include "core/fxge/include/cfx_graphstatedata.h" | |
19 #include "core/fxge/include/cfx_pathdata.h" | |
20 #include "core/fxge/include/cfx_renderdevice.h" | |
21 #include "core/fxge/include/ifx_renderdevicedriver.h" | |
22 #include "third_party/agg23/agg_conv_dash.h" | 22 #include "third_party/agg23/agg_conv_dash.h" |
23 #include "third_party/agg23/agg_conv_stroke.h" | 23 #include "third_party/agg23/agg_conv_stroke.h" |
24 #include "third_party/agg23/agg_curves.h" | 24 #include "third_party/agg23/agg_curves.h" |
25 #include "third_party/agg23/agg_path_storage.h" | 25 #include "third_party/agg23/agg_path_storage.h" |
26 #include "third_party/agg23/agg_pixfmt_gray.h" | 26 #include "third_party/agg23/agg_pixfmt_gray.h" |
27 #include "third_party/agg23/agg_rasterizer_scanline_aa.h" | 27 #include "third_party/agg23/agg_rasterizer_scanline_aa.h" |
28 #include "third_party/agg23/agg_renderer_scanline.h" | 28 #include "third_party/agg23/agg_renderer_scanline.h" |
29 #include "third_party/agg23/agg_scanline_u.h" | 29 #include "third_party/agg23/agg_scanline_u.h" |
30 | 30 |
31 namespace { | 31 namespace { |
(...skipping 1723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1755 WrapUnique(new CFX_AggDeviceDriver(pBitmap, FALSE, pOriDevice, FALSE))); | 1755 WrapUnique(new CFX_AggDeviceDriver(pBitmap, FALSE, pOriDevice, FALSE))); |
1756 return true; | 1756 return true; |
1757 } | 1757 } |
1758 | 1758 |
1759 CFX_FxgeDevice::~CFX_FxgeDevice() { | 1759 CFX_FxgeDevice::~CFX_FxgeDevice() { |
1760 if (m_bOwnedBitmap) { | 1760 if (m_bOwnedBitmap) { |
1761 delete GetBitmap(); | 1761 delete GetBitmap(); |
1762 } | 1762 } |
1763 } | 1763 } |
1764 #endif | 1764 #endif |
OLD | NEW |