| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ftcache.h */ | 3 /* ftcache.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* FreeType Cache subsystem (specification). */ | 5 /* FreeType Cache subsystem (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2008, 2010, 2013, 2014 by */ | 7 /* Copyright 1996-2015 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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 * height :: | 660 * height :: |
| 661 * The height in pixels. | 661 * The height in pixels. |
| 662 * | 662 * |
| 663 * flags :: | 663 * flags :: |
| 664 * The load flags, as in @FT_Load_Glyph. | 664 * The load flags, as in @FT_Load_Glyph. |
| 665 * | 665 * |
| 666 */ | 666 */ |
| 667 typedef struct FTC_ImageTypeRec_ | 667 typedef struct FTC_ImageTypeRec_ |
| 668 { | 668 { |
| 669 FTC_FaceID face_id; | 669 FTC_FaceID face_id; |
| 670 FT_Int width; | 670 FT_UInt width; |
| 671 FT_Int height; | 671 FT_UInt height; |
| 672 FT_Int32 flags; | 672 FT_Int32 flags; |
| 673 | 673 |
| 674 } FTC_ImageTypeRec; | 674 } FTC_ImageTypeRec; |
| 675 | 675 |
| 676 | 676 |
| 677 /************************************************************************* | 677 /************************************************************************* |
| 678 * | 678 * |
| 679 * @type: | 679 * @type: |
| 680 * FTC_ImageType | 680 * FTC_ImageType |
| 681 * | 681 * |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1048 | 1048 |
| 1049 /* */ | 1049 /* */ |
| 1050 | 1050 |
| 1051 | 1051 |
| 1052 FT_END_HEADER | 1052 FT_END_HEADER |
| 1053 | 1053 |
| 1054 #endif /* __FTCACHE_H__ */ | 1054 #endif /* __FTCACHE_H__ */ |
| 1055 | 1055 |
| 1056 | 1056 |
| 1057 /* END */ | 1057 /* END */ |
| OLD | NEW |