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

Side by Side Diff: core/fxge/ge/fx_ge_text.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/fx_ge_linux.cpp ('k') | core/fxge/ge/fx_text_int.h » ('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 <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <vector> 9 #include <vector>
10 10
11 #include "core/fxcodec/fx_codec.h" 11 #include "core/fxcodec/fx_codec.h"
12 #include "core/fxcrt/fx_safe_types.h" 12 #include "core/fxcrt/fx_safe_types.h"
13 #include "core/fxge/cfx_pathdata.h"
14 #include "core/fxge/fx_freetype.h"
13 #include "core/fxge/ge/fx_text_int.h" 15 #include "core/fxge/ge/fx_text_int.h"
14 #include "core/fxge/include/cfx_pathdata.h" 16 #include "core/fxge/ifx_renderdevicedriver.h"
15 #include "core/fxge/include/fx_freetype.h"
16 #include "core/fxge/include/ifx_renderdevicedriver.h"
17 17
18 namespace { 18 namespace {
19 19
20 void ResetTransform(FT_Face face) { 20 void ResetTransform(FT_Face face) {
21 FXFT_Matrix matrix; 21 FXFT_Matrix matrix;
22 matrix.xx = 0x10000L; 22 matrix.xx = 0x10000L;
23 matrix.xy = 0; 23 matrix.xy = 0;
24 matrix.yx = 0; 24 matrix.yx = 0;
25 matrix.yy = 0x10000L; 25 matrix.yy = 0x10000L;
26 FXFT_Set_Transform(face, &matrix, 0); 26 FXFT_Set_Transform(face, &matrix, 0);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 void _CFX_UniqueKeyGen::Generate(int count, ...) { 107 void _CFX_UniqueKeyGen::Generate(int count, ...) {
108 va_list argList; 108 va_list argList;
109 va_start(argList, count); 109 va_start(argList, count);
110 for (int i = 0; i < count; i++) { 110 for (int i = 0; i < count; i++) {
111 int p = va_arg(argList, int); 111 int p = va_arg(argList, int);
112 ((uint32_t*)m_Key)[i] = p; 112 ((uint32_t*)m_Key)[i] = p;
113 } 113 }
114 va_end(argList); 114 va_end(argList);
115 m_KeyLen = count * sizeof(uint32_t); 115 m_KeyLen = count * sizeof(uint32_t);
116 } 116 }
OLDNEW
« no previous file with comments | « core/fxge/ge/fx_ge_linux.cpp ('k') | core/fxge/ge/fx_text_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698