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

Side by Side Diff: core/src/fxge/agg/include/fx_agg_driver.h

Issue 1425153006: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 5 years, 1 month 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/src/fxcrt/fx_basic_wstring.cpp ('k') | core/src/fxge/agg/src/fx_agg_driver.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 #ifndef FX_AGG_DRIVER_H_ 7 #ifndef FX_AGG_DRIVER_H_
8 #define FX_AGG_DRIVER_H_ 8 #define FX_AGG_DRIVER_H_
9 9
10 #include "../../../../../third_party/agg23/agg_clip_liang_barsky.h" 10 #include "third_party/agg23/agg_clip_liang_barsky.h"
11 #include "../../../../../third_party/agg23/agg_path_storage.h" 11 #include "third_party/agg23/agg_path_storage.h"
12 #include "../../../../../third_party/agg23/agg_rasterizer_scanline_aa.h" 12 #include "third_party/agg23/agg_rasterizer_scanline_aa.h"
13 13
14 class CAgg_PathData { 14 class CAgg_PathData {
15 public: 15 public:
16 CAgg_PathData() {} 16 CAgg_PathData() {}
17 ~CAgg_PathData() {} 17 ~CAgg_PathData() {}
18 FX_NAMESPACE_DECLARE(agg, path_storage) m_PathData; 18 FX_NAMESPACE_DECLARE(agg, path_storage) m_PathData;
19 void BuildPath(const CFX_PathData* pPathData, 19 void BuildPath(const CFX_PathData* pPathData,
20 const CFX_AffineMatrix* pObject2Device); 20 const CFX_AffineMatrix* pObject2Device);
21 }; 21 };
22 class CFX_AggDeviceDriver : public IFX_RenderDeviceDriver { 22 class CFX_AggDeviceDriver : public IFX_RenderDeviceDriver {
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 void* m_pPlatformBitmap; 138 void* m_pPlatformBitmap;
139 void* m_pDwRenderTartget; 139 void* m_pDwRenderTartget;
140 int m_FillFlags; 140 int m_FillFlags;
141 int m_DitherBits; 141 int m_DitherBits;
142 FX_BOOL m_bRgbByteOrder; 142 FX_BOOL m_bRgbByteOrder;
143 CFX_DIBitmap* m_pOriDevice; 143 CFX_DIBitmap* m_pOriDevice;
144 FX_BOOL m_bGroupKnockout; 144 FX_BOOL m_bGroupKnockout;
145 }; 145 };
146 146
147 #endif // FX_AGG_DRIVER_H_ 147 #endif // FX_AGG_DRIVER_H_
OLDNEW
« no previous file with comments | « core/src/fxcrt/fx_basic_wstring.cpp ('k') | core/src/fxge/agg/src/fx_agg_driver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698