| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ftglyph.h */ | 3 /* ftglyph.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* FreeType convenience functions to handle glyphs (specification). */ | 5 /* FreeType convenience functions to handle glyphs (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2003, 2006, 2008, 2009, 2011 by */ | 7 /* Copyright 1996-2003, 2006, 2008, 2009, 2011 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, */ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 typedef struct FT_GlyphRec_* FT_Glyph; | 87 typedef struct FT_GlyphRec_* FT_Glyph; |
| 88 | 88 |
| 89 | 89 |
| 90 /*************************************************************************/ | 90 /*************************************************************************/ |
| 91 /* */ | 91 /* */ |
| 92 /* <Struct> */ | 92 /* <Struct> */ |
| 93 /* FT_GlyphRec */ | 93 /* FT_GlyphRec */ |
| 94 /* */ | 94 /* */ |
| 95 /* <Description> */ | 95 /* <Description> */ |
| 96 /* The root glyph structure contains a given glyph image plus its */ | 96 /* The root glyph structure contains a given glyph image plus its */ |
| 97 /* advance width in 16.16 fixed float format. */ | 97 /* advance width in 16.16 fixed-point format. */ |
| 98 /* */ | 98 /* */ |
| 99 /* <Fields> */ | 99 /* <Fields> */ |
| 100 /* library :: A handle to the FreeType library object. */ | 100 /* library :: A handle to the FreeType library object. */ |
| 101 /* */ | 101 /* */ |
| 102 /* clazz :: A pointer to the glyph's class. Private. */ | 102 /* clazz :: A pointer to the glyph's class. Private. */ |
| 103 /* */ | 103 /* */ |
| 104 /* format :: The format of the glyph's image. */ | 104 /* format :: The format of the glyph's image. */ |
| 105 /* */ | 105 /* */ |
| 106 /* advance :: A 16.16 vector that gives the glyph's advance width. */ | 106 /* advance :: A 16.16 vector that gives the glyph's advance width. */ |
| 107 /* */ | 107 /* */ |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 | 611 |
| 612 #endif /* __FTGLYPH_H__ */ | 612 #endif /* __FTGLYPH_H__ */ |
| 613 | 613 |
| 614 | 614 |
| 615 /* END */ | 615 /* END */ |
| 616 | 616 |
| 617 | 617 |
| 618 /* Local Variables: */ | 618 /* Local Variables: */ |
| 619 /* coding: utf-8 */ | 619 /* coding: utf-8 */ |
| 620 /* End: */ | 620 /* End: */ |
| OLD | NEW |