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

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

Issue 2246223002: Refactor fx_font part 1 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase 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
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/include/cfx_renderdevice.h"
8 8
9 #include "core/fxcrt/include/fx_safe_types.h" 9 #include "core/fxcrt/include/fx_safe_types.h"
10 #include "core/fxge/include/cfx_fontcache.h"
10 #include "core/fxge/include/cfx_fxgedevice.h" 11 #include "core/fxge/include/cfx_fxgedevice.h"
11 #include "core/fxge/include/cfx_graphstatedata.h" 12 #include "core/fxge/include/cfx_graphstatedata.h"
12 #include "core/fxge/include/cfx_pathdata.h" 13 #include "core/fxge/include/cfx_pathdata.h"
13 #include "core/fxge/include/ifx_renderdevicedriver.h" 14 #include "core/fxge/include/ifx_renderdevicedriver.h"
14 15
15 #if defined _SKIA_SUPPORT_ 16 #if defined _SKIA_SUPPORT_
16 #include "third_party/skia/include/core/SkTypes.h" 17 #include "third_party/skia/include/core/SkTypes.h"
17 #endif 18 #endif
18 19
19 namespace { 20 namespace {
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
1093 fill_color, stroke_color, fill_mode, 1094 fill_color, stroke_color, fill_mode,
1094 FXDIB_BLEND_NORMAL)) { 1095 FXDIB_BLEND_NORMAL)) {
1095 return FALSE; 1096 return FALSE;
1096 } 1097 }
1097 } 1098 }
1098 if (pClippingPath) 1099 if (pClippingPath)
1099 pClippingPath->Append(&TransformedPath, pUser2Device); 1100 pClippingPath->Append(&TransformedPath, pUser2Device);
1100 } 1101 }
1101 return TRUE; 1102 return TRUE;
1102 } 1103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698