| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ttkern.h */ | 3 /* ttkern.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* Load the basic TrueType kerning table. This doesn't handle */ | 5 /* Load the basic TrueType kerning table. This doesn't handle */ |
| 6 /* kerning data within the GPOS table at the moment. */ | 6 /* kerning data within the GPOS table at the moment. */ |
| 7 /* */ | 7 /* */ |
| 8 /* Copyright 1996-2001, 2002, 2005, 2007 by */ | 8 /* Copyright 1996-2015 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 24 matching lines...) Expand all Loading... |
| 43 | 43 |
| 44 #define TT_FACE_HAS_KERNING( face ) ( (face)->kern_avail_bits != 0 ) | 44 #define TT_FACE_HAS_KERNING( face ) ( (face)->kern_avail_bits != 0 ) |
| 45 | 45 |
| 46 | 46 |
| 47 FT_END_HEADER | 47 FT_END_HEADER |
| 48 | 48 |
| 49 #endif /* __TTKERN_H__ */ | 49 #endif /* __TTKERN_H__ */ |
| 50 | 50 |
| 51 | 51 |
| 52 /* END */ | 52 /* END */ |
| OLD | NEW |