Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: core/fxge/agg/fx_agg_driver.cpp

Issue 2217663002: Refactor fx_ge part 1 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfapi/fpdf_render/fpdf_render_text.cpp ('k') | core/fxge/android/fx_android_imp.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/include/fx_codec.h" 11 #include "core/fxcodec/include/fx_codec.h"
12 #include "core/fxcrt/include/fx_memory.h" 12 #include "core/fxcrt/include/fx_memory.h"
13 #include "core/fxge/dib/dib_int.h" 13 #include "core/fxge/dib/dib_int.h"
14 #include "core/fxge/ge/fx_text_int.h" 14 #include "core/fxge/ge/fx_text_int.h"
15 #include "core/fxge/include/cfx_gemodule.h"
15 #include "core/fxge/include/fx_ge.h" 16 #include "core/fxge/include/fx_ge.h"
16 #include "core/fxge/include/ifx_renderdevicedriver.h" 17 #include "core/fxge/include/ifx_renderdevicedriver.h"
17 #include "third_party/agg23/agg_conv_dash.h" 18 #include "third_party/agg23/agg_conv_dash.h"
18 #include "third_party/agg23/agg_conv_stroke.h" 19 #include "third_party/agg23/agg_conv_stroke.h"
19 #include "third_party/agg23/agg_curves.h" 20 #include "third_party/agg23/agg_curves.h"
20 #include "third_party/agg23/agg_path_storage.h" 21 #include "third_party/agg23/agg_path_storage.h"
21 #include "third_party/agg23/agg_pixfmt_gray.h" 22 #include "third_party/agg23/agg_pixfmt_gray.h"
22 #include "third_party/agg23/agg_rasterizer_scanline_aa.h" 23 #include "third_party/agg23/agg_rasterizer_scanline_aa.h"
23 #include "third_party/agg23/agg_renderer_scanline.h" 24 #include "third_party/agg23/agg_renderer_scanline.h"
24 #include "third_party/agg23/agg_scanline_u.h" 25 #include "third_party/agg23/agg_scanline_u.h"
(...skipping 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 WrapUnique(new CFX_AggDeviceDriver(pBitmap, FALSE, pOriDevice, FALSE))); 1759 WrapUnique(new CFX_AggDeviceDriver(pBitmap, FALSE, pOriDevice, FALSE)));
1759 return true; 1760 return true;
1760 } 1761 }
1761 1762
1762 CFX_FxgeDevice::~CFX_FxgeDevice() { 1763 CFX_FxgeDevice::~CFX_FxgeDevice() {
1763 if (m_bOwnedBitmap) { 1764 if (m_bOwnedBitmap) {
1764 delete GetBitmap(); 1765 delete GetBitmap();
1765 } 1766 }
1766 } 1767 }
1767 #endif 1768 #endif
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_render/fpdf_render_text.cpp ('k') | core/fxge/android/fx_android_imp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698