| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ttobjs.h */ | 3 /* ttobjs.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* Objects manager (specification). */ | 5 /* Objects manager (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2009, 2011 by */ | 7 /* Copyright 1996-2009, 2011-2012 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 168 |
| 169 | 169 |
| 170 /*************************************************************************/ | 170 /*************************************************************************/ |
| 171 /* */ | 171 /* */ |
| 172 /* Defines a function/instruction definition record. */ | 172 /* Defines a function/instruction definition record. */ |
| 173 /* */ | 173 /* */ |
| 174 typedef struct TT_DefRecord_ | 174 typedef struct TT_DefRecord_ |
| 175 { | 175 { |
| 176 FT_Int range; /* in which code range is it located? */ | 176 FT_Int range; /* in which code range is it located? */ |
| 177 FT_Long start; /* where does it start? */ | 177 FT_Long start; /* where does it start? */ |
| 178 FT_Long end; /* where does it end? */ |
| 178 FT_UInt opc; /* function #, or instruction code */ | 179 FT_UInt opc; /* function #, or instruction code */ |
| 179 FT_Bool active; /* is it active? */ | 180 FT_Bool active; /* is it active? */ |
| 180 | 181 |
| 181 } TT_DefRecord, *TT_DefArray; | 182 } TT_DefRecord, *TT_DefArray; |
| 182 | 183 |
| 183 | 184 |
| 184 /*************************************************************************/ | 185 /*************************************************************************/ |
| 185 /* */ | 186 /* */ |
| 186 /* Subglyph transformation record. */ | 187 /* Subglyph transformation record. */ |
| 187 /* */ | 188 /* */ |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 FT_LOCAL( FT_Error ) | 426 FT_LOCAL( FT_Error ) |
| 426 tt_slot_init( FT_GlyphSlot slot ); | 427 tt_slot_init( FT_GlyphSlot slot ); |
| 427 | 428 |
| 428 | 429 |
| 429 FT_END_HEADER | 430 FT_END_HEADER |
| 430 | 431 |
| 431 #endif /* __TTOBJS_H__ */ | 432 #endif /* __TTOBJS_H__ */ |
| 432 | 433 |
| 433 | 434 |
| 434 /* END */ | 435 /* END */ |
| OLD | NEW |