| 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-2004, 2006-2008, 2013 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 |
| 18 | 18 |
| 19 #ifndef __CFFOBJS_H__ | 19 #ifndef __CFFOBJS_H__ |
| 20 #define __CFFOBJS_H__ | 20 #define __CFFOBJS_H__ |
| 21 | 21 |
| 22 | 22 |
| 23 #include "../../include/ft2build.h" | 23 #include <ft2build.h> |
| 24 #include "../../include/freetype/internal/ftobjs.h" | 24 #include FT_INTERNAL_OBJECTS_H |
| 25 #include "cfftypes.h" | 25 #include "cfftypes.h" |
| 26 #include "../../include/freetype/internal/tttypes.h" | 26 #include FT_INTERNAL_TRUETYPE_TYPES_H |
| 27 #include "../../include/freetype/internal/services/svpscmap.h" | 27 #include FT_SERVICE_POSTSCRIPT_CMAPS_H |
| 28 #include "../../include/freetype/internal/pshints.h" | 28 #include FT_INTERNAL_POSTSCRIPT_HINTS_H |
| 29 | 29 |
| 30 | 30 |
| 31 FT_BEGIN_HEADER | 31 FT_BEGIN_HEADER |
| 32 | 32 |
| 33 | 33 |
| 34 /*************************************************************************/ | 34 /*************************************************************************/ |
| 35 /* */ | 35 /* */ |
| 36 /* <Type> */ | 36 /* <Type> */ |
| 37 /* CFF_Driver */ | 37 /* CFF_Driver */ |
| 38 /* */ | 38 /* */ |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 /* */ | 114 /* */ |
| 115 /* CFF 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 | 120 |
| 121 FT_UInt hinting_engine; | 121 FT_UInt hinting_engine; |
| 122 FT_Bool no_stem_darkening; | 122 FT_Bool no_stem_darkening; |
| 123 | 123 |
| 124 FT_Int darken_params[8]; |
| 125 |
| 124 } CFF_DriverRec; | 126 } CFF_DriverRec; |
| 125 | 127 |
| 126 | 128 |
| 127 FT_LOCAL( FT_Error ) | 129 FT_LOCAL( FT_Error ) |
| 128 cff_size_init( FT_Size size ); /* CFF_Size */ | 130 cff_size_init( FT_Size size ); /* CFF_Size */ |
| 129 | 131 |
| 130 FT_LOCAL( void ) | 132 FT_LOCAL( void ) |
| 131 cff_size_done( FT_Size size ); /* CFF_Size */ | 133 cff_size_done( FT_Size size ); /* CFF_Size */ |
| 132 | 134 |
| 133 FT_LOCAL( FT_Error ) | 135 FT_LOCAL( FT_Error ) |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 FT_LOCAL( void ) | 176 FT_LOCAL( void ) |
| 175 cff_driver_done( FT_Module module ); /* CFF_Driver */ | 177 cff_driver_done( FT_Module module ); /* CFF_Driver */ |
| 176 | 178 |
| 177 | 179 |
| 178 FT_END_HEADER | 180 FT_END_HEADER |
| 179 | 181 |
| 180 #endif /* __CFFOBJS_H__ */ | 182 #endif /* __CFFOBJS_H__ */ |
| 181 | 183 |
| 182 | 184 |
| 183 /* END */ | 185 /* END */ |
| OLD | NEW |