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

Side by Side Diff: third_party/freetype/src/psaux/psobjs.h

Issue 1413673003: Update bundled freetype to 2.6.1 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: DEPS for corpus Created 5 years, 1 month 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 | « third_party/freetype/src/psaux/psconv.c ('k') | third_party/freetype/src/psaux/psobjs.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 /* psobjs.h */ 3 /* psobjs.h */
4 /* */ 4 /* */
5 /* Auxiliary functions for PostScript fonts (specification). */ 5 /* Auxiliary functions for PostScript fonts (specification). */
6 /* */ 6 /* */
7 /* Copyright 1996-2001, 2002, 2003 by */ 7 /* Copyright 1996-2015 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 27 matching lines...) Expand all
45 FT_CALLBACK_TABLE 45 FT_CALLBACK_TABLE
46 const T1_Builder_FuncsRec t1_builder_funcs; 46 const T1_Builder_FuncsRec t1_builder_funcs;
47 47
48 48
49 FT_LOCAL( FT_Error ) 49 FT_LOCAL( FT_Error )
50 ps_table_new( PS_Table table, 50 ps_table_new( PS_Table table,
51 FT_Int count, 51 FT_Int count,
52 FT_Memory memory ); 52 FT_Memory memory );
53 53
54 FT_LOCAL( FT_Error ) 54 FT_LOCAL( FT_Error )
55 ps_table_add( PS_Table table, 55 ps_table_add( PS_Table table,
56 FT_Int idx, 56 FT_Int idx,
57 void* object, 57 void* object,
58 FT_PtrDist length ); 58 FT_UInt length );
59 59
60 FT_LOCAL( void ) 60 FT_LOCAL( void )
61 ps_table_done( PS_Table table ); 61 ps_table_done( PS_Table table );
62 62
63 63
64 FT_LOCAL( void ) 64 FT_LOCAL( void )
65 ps_table_release( PS_Table table ); 65 ps_table_release( PS_Table table );
66 66
67 67
68 /*************************************************************************/ 68 /*************************************************************************/
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 FT_ULong* pflags ); 105 FT_ULong* pflags );
106 106
107 FT_LOCAL( FT_Long ) 107 FT_LOCAL( FT_Long )
108 ps_parser_to_int( PS_Parser parser ); 108 ps_parser_to_int( PS_Parser parser );
109 109
110 110
111 FT_LOCAL( FT_Error ) 111 FT_LOCAL( FT_Error )
112 ps_parser_to_bytes( PS_Parser parser, 112 ps_parser_to_bytes( PS_Parser parser,
113 FT_Byte* bytes, 113 FT_Byte* bytes,
114 FT_Offset max_bytes, 114 FT_Offset max_bytes,
115 FT_Long* pnum_bytes, 115 FT_ULong* pnum_bytes,
116 FT_Bool delimiters ); 116 FT_Bool delimiters );
117 117
118 118
119 FT_LOCAL( FT_Fixed ) 119 FT_LOCAL( FT_Fixed )
120 ps_parser_to_fixed( PS_Parser parser, 120 ps_parser_to_fixed( PS_Parser parser,
121 FT_Int power_ten ); 121 FT_Int power_ten );
122 122
123 123
124 FT_LOCAL( FT_Int ) 124 FT_LOCAL( FT_Int )
125 ps_parser_to_coord_array( PS_Parser parser, 125 ps_parser_to_coord_array( PS_Parser parser,
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 FT_Offset length, 203 FT_Offset length,
204 FT_UShort seed ); 204 FT_UShort seed );
205 205
206 206
207 FT_END_HEADER 207 FT_END_HEADER
208 208
209 #endif /* __PSOBJS_H__ */ 209 #endif /* __PSOBJS_H__ */
210 210
211 211
212 /* END */ 212 /* END */
OLDNEW
« no previous file with comments | « third_party/freetype/src/psaux/psconv.c ('k') | third_party/freetype/src/psaux/psobjs.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698