| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* cffobjs.h */ | 3 /* cffobjs.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* OpenType objects manager (specification). */ | 5 /* OpenType objects manager (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2008 by */ | 7 /* Copyright 1996-2004, 2006-2008, 2013 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 { | 105 { |
| 106 FT_Fixed xx, xy; /* transformation matrix coefficients */ | 106 FT_Fixed xx, xy; /* transformation matrix coefficients */ |
| 107 FT_Fixed yx, yy; | 107 FT_Fixed yx, yy; |
| 108 FT_F26Dot6 ox, oy; /* offsets */ | 108 FT_F26Dot6 ox, oy; /* offsets */ |
| 109 | 109 |
| 110 } CFF_Transform; | 110 } CFF_Transform; |
| 111 | 111 |
| 112 | 112 |
| 113 /***********************************************************************/ | 113 /***********************************************************************/ |
| 114 /* */ | 114 /* */ |
| 115 /* TrueType driver class. */ | 115 /* CFF driver class. */ |
| 116 /* */ | 116 /* */ |
| 117 typedef struct CFF_DriverRec_ | 117 typedef struct CFF_DriverRec_ |
| 118 { | 118 { |
| 119 FT_DriverRec root; | 119 FT_DriverRec root; |
| 120 void* extension_component; | 120 |
| 121 FT_UInt hinting_engine; |
| 122 FT_Bool no_stem_darkening; |
| 121 | 123 |
| 122 } CFF_DriverRec; | 124 } CFF_DriverRec; |
| 123 | 125 |
| 124 | 126 |
| 125 FT_LOCAL( FT_Error ) | 127 FT_LOCAL( FT_Error ) |
| 126 cff_size_init( FT_Size size ); /* CFF_Size */ | 128 cff_size_init( FT_Size size ); /* CFF_Size */ |
| 127 | 129 |
| 128 FT_LOCAL( void ) | 130 FT_LOCAL( void ) |
| 129 cff_size_done( FT_Size size ); /* CFF_Size */ | 131 cff_size_done( FT_Size size ); /* CFF_Size */ |
| 130 | 132 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 160 | 162 |
| 161 FT_LOCAL( void ) | 163 FT_LOCAL( void ) |
| 162 cff_face_done( FT_Face face ); /* CFF_Face */ | 164 cff_face_done( FT_Face face ); /* CFF_Face */ |
| 163 | 165 |
| 164 | 166 |
| 165 /*************************************************************************/ | 167 /*************************************************************************/ |
| 166 /* */ | 168 /* */ |
| 167 /* Driver functions */ | 169 /* Driver functions */ |
| 168 /* */ | 170 /* */ |
| 169 FT_LOCAL( FT_Error ) | 171 FT_LOCAL( FT_Error ) |
| 170 cff_driver_init( FT_Module module ); | 172 cff_driver_init( FT_Module module ); /* CFF_Driver */ |
| 171 | 173 |
| 172 FT_LOCAL( void ) | 174 FT_LOCAL( void ) |
| 173 cff_driver_done( FT_Module module ); | 175 cff_driver_done( FT_Module module ); /* CFF_Driver */ |
| 174 | 176 |
| 175 | 177 |
| 176 FT_END_HEADER | 178 FT_END_HEADER |
| 177 | 179 |
| 178 #endif /* __CFFOBJS_H__ */ | 180 #endif /* __CFFOBJS_H__ */ |
| 179 | 181 |
| 180 | 182 |
| 181 /* END */ | 183 /* END */ |
| OLD | NEW |