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

Side by Side Diff: src/autofit/aftypes.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/autofit/afpic.c ('k') | src/autofit/afwarp.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 /* aftypes.h */ 3 /* aftypes.h */
4 /* */ 4 /* */
5 /* Auto-fitter types (specification only). */ 5 /* Auto-fitter types (specification only). */
6 /* */ 6 /* */
7 /* Copyright 2003-2009, 2011 by */ 7 /* Copyright 2003-2009, 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, */
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 * 224 *
225 * Note that a given analyzer and/or grid-fitting algorithm can be 225 * Note that a given analyzer and/or grid-fitting algorithm can be
226 * used by more than one script. 226 * used by more than one script.
227 */ 227 */
228 228
229 typedef enum AF_Script_ 229 typedef enum AF_Script_
230 { 230 {
231 AF_SCRIPT_NONE = 0, 231 AF_SCRIPT_NONE = 0,
232 AF_SCRIPT_LATIN = 1, 232 AF_SCRIPT_LATIN = 1,
233 AF_SCRIPT_CJK = 2, 233 AF_SCRIPT_CJK = 2,
234 AF_SCRIPT_INDIC = 3, 234 AF_SCRIPT_INDIC = 3,
235 #ifdef FT_OPTION_AUTOFIT2 235 #ifdef FT_OPTION_AUTOFIT2
236 AF_SCRIPT_LATIN2, 236 AF_SCRIPT_LATIN2,
237 #endif 237 #endif
238 238
239 /* add new scripts here. Don't forget to update the list in */ 239 /* add new scripts here. Don't forget to update the list in */
240 /* `afglobal.c'. */ 240 /* `afglobal.c'. */
241 241
242 AF_SCRIPT_MAX /* do not remove */ 242 AF_SCRIPT_MAX /* do not remove */
243 243
244 } AF_Script; 244 } AF_Script;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 361
362 362
363 /* */ 363 /* */
364 364
365 FT_END_HEADER 365 FT_END_HEADER
366 366
367 #endif /* __AFTYPES_H__ */ 367 #endif /* __AFTYPES_H__ */
368 368
369 369
370 /* END */ 370 /* END */
OLDNEW
« no previous file with comments | « src/autofit/afpic.c ('k') | src/autofit/afwarp.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698