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

Side by Side Diff: src/cff/cffparse.h

Issue 23555005: Update freetype to the latest version of Android external/freetype (Closed) Base URL: https://chromium.googlesource.com/chromium/src/third_party/freetype.git@master
Patch Set: Created 7 years, 3 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 | « src/cff/cffobjs.c ('k') | src/cff/cffparse.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /***************************************************************************/ 1 /***************************************************************************/
2 /* */ 2 /* */
3 /* cffparse.h */ 3 /* cffparse.h */
4 /* */ 4 /* */
5 /* CFF token stream parser (specification) */ 5 /* CFF token stream parser (specification) */
6 /* */ 6 /* */
7 /* Copyright 1996-2001, 2002, 2003 by */ 7 /* Copyright 1996-2003, 2011 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
9 /* */ 9 /* */
10 /* This file is part of the FreeType project, and may only be used, */ 10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */ 11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */ 13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */ 14 /* understand and accept it fully. */
15 /* */ 15 /* */
16 /***************************************************************************/ 16 /***************************************************************************/
17 17
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 typedef struct CFF_Field_Handler_ 83 typedef struct CFF_Field_Handler_
84 { 84 {
85 int kind; 85 int kind;
86 int code; 86 int code;
87 FT_UInt offset; 87 FT_UInt offset;
88 FT_Byte size; 88 FT_Byte size;
89 CFF_Field_Reader reader; 89 CFF_Field_Reader reader;
90 FT_UInt array_max; 90 FT_UInt array_max;
91 FT_UInt count_offset; 91 FT_UInt count_offset;
92 92
93 #ifdef FT_DEBUG_LEVEL_TRACE
94 const char* id;
95 #endif
96
93 } CFF_Field_Handler; 97 } CFF_Field_Handler;
94 98
95 99
96 FT_END_HEADER 100 FT_END_HEADER
97 101
98 102
99 #endif /* __CFF_PARSE_H__ */ 103 #endif /* __CFF_PARSE_H__ */
100 104
101 105
102 /* END */ 106 /* END */
OLDNEW
« no previous file with comments | « src/cff/cffobjs.c ('k') | src/cff/cffparse.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698