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

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

Issue 1800523005: Move core/src/ up to core/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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_ps.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 "core/fxge/ge/fx_text_int.h"
7 #include "core/include/fxcodec/fx_codec.h" 8 #include "core/include/fxcodec/fx_codec.h"
8 #include "core/include/fxge/fx_freetype.h" 9 #include "core/include/fxge/fx_freetype.h"
9 #include "core/include/fxge/fx_ge.h" 10 #include "core/include/fxge/fx_ge.h"
10 #include "core/src/fxge/ge/fx_text_int.h"
11 11
12 #undef FX_GAMMA 12 #undef FX_GAMMA
13 #undef FX_GAMMA_INVERSE 13 #undef FX_GAMMA_INVERSE
14 #define FX_GAMMA(value) (value) 14 #define FX_GAMMA(value) (value)
15 #define FX_GAMMA_INVERSE(value) (value) 15 #define FX_GAMMA_INVERSE(value) (value)
16 16
17 namespace { 17 namespace {
18 18
19 void ResetTransform(FT_Face face) { 19 void ResetTransform(FT_Face face) {
20 FXFT_Matrix matrix; 20 FXFT_Matrix matrix;
(...skipping 1842 matching lines...) Expand 10 before | Expand all | Expand 10 after
1863 void _CFX_UniqueKeyGen::Generate(int count, ...) { 1863 void _CFX_UniqueKeyGen::Generate(int count, ...) {
1864 va_list argList; 1864 va_list argList;
1865 va_start(argList, count); 1865 va_start(argList, count);
1866 for (int i = 0; i < count; i++) { 1866 for (int i = 0; i < count; i++) {
1867 int p = va_arg(argList, int); 1867 int p = va_arg(argList, int);
1868 ((FX_DWORD*)m_Key)[i] = p; 1868 ((FX_DWORD*)m_Key)[i] = p;
1869 } 1869 }
1870 va_end(argList); 1870 va_end(argList);
1871 m_KeyLen = count * sizeof(FX_DWORD); 1871 m_KeyLen = count * sizeof(FX_DWORD);
1872 } 1872 }
OLDNEW
« no previous file with comments | « core/fxge/ge/fx_ge_ps.cpp ('k') | core/fxge/ge/fx_text_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698