| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 */ |
| OLD | NEW |