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

Side by Side Diff: core/fxge/ge/cfx_renderdevice.cpp

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 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/fxge/ge/cfx_pathdata.cpp ('k') | core/fxge/ge/cfx_substfont.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 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/cfx_renderdevice.h"
8 8
9 #include "core/fxcrt/fx_safe_types.h" 9 #include "core/fxcrt/fx_safe_types.h"
10 #include "core/fxge/include/cfx_facecache.h" 10 #include "core/fxge/cfx_facecache.h"
11 #include "core/fxge/include/cfx_fxgedevice.h" 11 #include "core/fxge/cfx_fxgedevice.h"
12 #include "core/fxge/include/cfx_graphstatedata.h" 12 #include "core/fxge/cfx_graphstatedata.h"
13 #include "core/fxge/include/cfx_pathdata.h" 13 #include "core/fxge/cfx_pathdata.h"
14 #include "core/fxge/include/ifx_renderdevicedriver.h" 14 #include "core/fxge/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
20 namespace { 20 namespace {
21 21
22 void AdjustGlyphSpace(std::vector<FXTEXT_GLYPHPOS>* pGlyphAndPos) { 22 void AdjustGlyphSpace(std::vector<FXTEXT_GLYPHPOS>* pGlyphAndPos) {
23 ASSERT(pGlyphAndPos->size() > 1); 23 ASSERT(pGlyphAndPos->size() > 1);
24 std::vector<FXTEXT_GLYPHPOS>& glyphs = *pGlyphAndPos; 24 std::vector<FXTEXT_GLYPHPOS>& glyphs = *pGlyphAndPos;
(...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « core/fxge/ge/cfx_pathdata.cpp ('k') | core/fxge/ge/cfx_substfont.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698