| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* t1types.h */ | 3 /* t1types.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* Basic Type1/Type2 type definitions and interface (specification */ | 5 /* Basic Type1/Type2 type definitions and interface (specification */ |
| 6 /* only). */ | 6 /* only). */ |
| 7 /* */ | 7 /* */ |
| 8 /* Copyright 1996-2004, 2006, 2008, 2009, 2011 by */ | 8 /* Copyright 1996-2004, 2006, 2008, 2009, 2011, 2013 by */ |
| 9 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | 9 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
| 10 /* */ | 10 /* */ |
| 11 /* This file is part of the FreeType project, and may only be used, */ | 11 /* This file is part of the FreeType project, and may only be used, */ |
| 12 /* modified, and distributed under the terms of the FreeType project */ | 12 /* modified, and distributed under the terms of the FreeType project */ |
| 13 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | 13 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
| 14 /* this file you indicate that you have read the license and */ | 14 /* this file you indicate that you have read the license and */ |
| 15 /* understand and accept it fully. */ | 15 /* understand and accept it fully. */ |
| 16 /* */ | 16 /* */ |
| 17 /***************************************************************************/ | 17 /***************************************************************************/ |
| 18 | 18 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 typedef struct T1_FaceRec_ | 198 typedef struct T1_FaceRec_ |
| 199 { | 199 { |
| 200 FT_FaceRec root; | 200 FT_FaceRec root; |
| 201 T1_FontRec type1; | 201 T1_FontRec type1; |
| 202 const void* psnames; | 202 const void* psnames; |
| 203 const void* psaux; | 203 const void* psaux; |
| 204 const void* afm_data; | 204 const void* afm_data; |
| 205 FT_CharMapRec charmaprecs[2]; | 205 FT_CharMapRec charmaprecs[2]; |
| 206 FT_CharMap charmaps[2]; | 206 FT_CharMap charmaps[2]; |
| 207 | 207 |
| 208 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS | |
| 209 PS_Unicodes unicode_map; | |
| 210 #endif | |
| 211 | |
| 212 /* support for Multiple Masters fonts */ | 208 /* support for Multiple Masters fonts */ |
| 213 PS_Blend blend; | 209 PS_Blend blend; |
| 214 | 210 |
| 215 /* undocumented, optional: indices of subroutines that express */ | 211 /* undocumented, optional: indices of subroutines that express */ |
| 216 /* the NormalizeDesignVector and the ConvertDesignVector procedure, */ | 212 /* the NormalizeDesignVector and the ConvertDesignVector procedure, */ |
| 217 /* respectively, as Type 2 charstrings; -1 if keywords not present */ | 213 /* respectively, as Type 2 charstrings; -1 if keywords not present */ |
| 218 FT_Int ndv_idx; | 214 FT_Int ndv_idx; |
| 219 FT_Int cdv_idx; | 215 FT_Int cdv_idx; |
| 220 | 216 |
| 221 /* undocumented, optional: has the same meaning as len_buildchar */ | 217 /* undocumented, optional: has the same meaning as len_buildchar */ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 250 | 246 |
| 251 } CID_FaceRec; | 247 } CID_FaceRec; |
| 252 | 248 |
| 253 | 249 |
| 254 FT_END_HEADER | 250 FT_END_HEADER |
| 255 | 251 |
| 256 #endif /* __T1TYPES_H__ */ | 252 #endif /* __T1TYPES_H__ */ |
| 257 | 253 |
| 258 | 254 |
| 259 /* END */ | 255 /* END */ |
| OLD | NEW |