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

Side by Side Diff: src/psaux/psauxmod.c

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/psaux/psauxmod.h ('k') | src/psaux/psconv.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 /* psauxmod.c */ 3 /* psauxmod.c */
4 /* */ 4 /* */
5 /* FreeType auxiliary PostScript module implementation (body). */ 5 /* FreeType auxiliary PostScript module implementation (body). */
6 /* */ 6 /* */
7 /* Copyright 2000-2001, 2002, 2003, 2006 by */ 7 /* Copyright 2000-2001, 2002, 2003, 2006 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, */
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 #else 116 #else
117 0, 117 0,
118 #endif 118 #endif
119 }; 119 };
120 120
121 121
122 FT_CALLBACK_TABLE_DEF 122 FT_CALLBACK_TABLE_DEF
123 const FT_Module_Class psaux_module_class = 123 const FT_Module_Class psaux_module_class =
124 { 124 {
125 0, 125 0,
126 sizeof( FT_ModuleRec ), 126 sizeof ( FT_ModuleRec ),
127 "psaux", 127 "psaux",
128 0x20000L, 128 0x20000L,
129 0x20000L, 129 0x20000L,
130 130
131 &psaux_interface, /* module-specific interface */ 131 &psaux_interface, /* module-specific interface */
132 132
133 (FT_Module_Constructor)0, 133 (FT_Module_Constructor)0,
134 (FT_Module_Destructor) 0, 134 (FT_Module_Destructor) 0,
135 (FT_Module_Requester) 0 135 (FT_Module_Requester) 0
136 }; 136 };
137 137
138 138
139 /* END */ 139 /* END */
OLDNEW
« no previous file with comments | « src/psaux/psauxmod.h ('k') | src/psaux/psconv.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698