| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* cffgload.h */ | 3 /* cffgload.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* OpenType Glyph Loader (specification). */ | 5 /* OpenType Glyph Loader (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2004, 2006-2009, 2013 by */ | 7 /* Copyright 1996-2004, 2006-2009, 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 __CFFGLOAD_H__ | 19 #ifndef __CFFGLOAD_H__ |
| 20 #define __CFFGLOAD_H__ | 20 #define __CFFGLOAD_H__ |
| 21 | 21 |
| 22 | 22 |
| 23 #include "../../include/ft2build.h" | 23 #include <ft2build.h> |
| 24 #include "../../include/freetype/freetype.h" | 24 #include FT_FREETYPE_H |
| 25 #include "cffobjs.h" | 25 #include "cffobjs.h" |
| 26 | 26 |
| 27 | 27 |
| 28 FT_BEGIN_HEADER | 28 FT_BEGIN_HEADER |
| 29 | 29 |
| 30 | 30 |
| 31 #define CFF_MAX_OPERANDS 48 | 31 #define CFF_MAX_OPERANDS 48 |
| 32 #define CFF_MAX_SUBRS_CALLS 32 | 32 #define CFF_MAX_SUBRS_CALLS 32 |
| 33 #define CFF_MAX_TRANS_ELEMENTS 32 | 33 #define CFF_MAX_TRANS_ELEMENTS 32 |
| 34 | 34 |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 FT_UInt glyph_index, | 231 FT_UInt glyph_index, |
| 232 FT_Int32 load_flags ); | 232 FT_Int32 load_flags ); |
| 233 | 233 |
| 234 | 234 |
| 235 FT_END_HEADER | 235 FT_END_HEADER |
| 236 | 236 |
| 237 #endif /* __CFFGLOAD_H__ */ | 237 #endif /* __CFFGLOAD_H__ */ |
| 238 | 238 |
| 239 | 239 |
| 240 /* END */ | 240 /* END */ |
| OLD | NEW |