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

Side by Side Diff: core/fxge/fx_freetype.h

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/fx_font.h ('k') | core/fxge/ge/cfx_cliprgn.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 #ifndef CORE_FXGE_INCLUDE_FX_FREETYPE_H_ 7 #ifndef CORE_FXGE_FX_FREETYPE_H_
8 #define CORE_FXGE_INCLUDE_FX_FREETYPE_H_ 8 #define CORE_FXGE_FX_FREETYPE_H_
9 9
10 #include <ft2build.h> 10 #include <ft2build.h>
11 #include FT_FREETYPE_H 11 #include FT_FREETYPE_H
12 #include FT_GLYPH_H 12 #include FT_GLYPH_H
13 #include FT_LCD_FILTER_H 13 #include FT_LCD_FILTER_H
14 #include FT_MULTIPLE_MASTERS_H 14 #include FT_MULTIPLE_MASTERS_H
15 #include FT_OUTLINE_H 15 #include FT_OUTLINE_H
16 #include FT_TRUETYPE_TABLES_H 16 #include FT_TRUETYPE_TABLES_H
17 17
18 #ifdef __cplusplus 18 #ifdef __cplusplus
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 FT_Glyph_Get_CBox(glyph, bbox_mode, acbox) 170 FT_Glyph_Get_CBox(glyph, bbox_mode, acbox)
171 #define FXFT_Done_Glyph(glyph) FT_Done_Glyph(glyph) 171 #define FXFT_Done_Glyph(glyph) FT_Done_Glyph(glyph)
172 #define FXFT_Library_SetLcdFilter(library, filter) \ 172 #define FXFT_Library_SetLcdFilter(library, filter) \
173 FT_Library_SetLcdFilter((FT_Library)(library), filter) 173 FT_Library_SetLcdFilter((FT_Library)(library), filter)
174 int FXFT_unicode_from_adobe_name(const char* glyph_name); 174 int FXFT_unicode_from_adobe_name(const char* glyph_name);
175 void FXFT_adobe_name_from_unicode(char* name, wchar_t unicode); 175 void FXFT_adobe_name_from_unicode(char* name, wchar_t unicode);
176 #ifdef __cplusplus 176 #ifdef __cplusplus
177 }; 177 };
178 #endif 178 #endif
179 179
180 #endif // CORE_FXGE_INCLUDE_FX_FREETYPE_H_ 180 #endif // CORE_FXGE_FX_FREETYPE_H_
OLDNEW
« no previous file with comments | « core/fxge/fx_font.h ('k') | core/fxge/ge/cfx_cliprgn.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698