| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* tttypes.h */ | 3 /* tttypes.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* Basic SFNT/TrueType type definitions and interface (specification */ | 5 /* Basic SFNT/TrueType type definitions and interface (specification */ |
| 6 /* only). */ | 6 /* only). */ |
| 7 /* */ | 7 /* */ |
| 8 /* Copyright 1996-2001, 2002, 2004, 2005, 2006, 2007, 2008 by */ | 8 /* Copyright 1996-2001, 2002, 2004, 2005, 2006, 2007, 2008 by */ |
| 9 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | 9 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
| 10 /* */ | 10 /* */ |
| (...skipping 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1394 #endif | 1394 #endif |
| 1395 | 1395 |
| 1396 /* since version 2.2 */ | 1396 /* since version 2.2 */ |
| 1397 | 1397 |
| 1398 FT_Byte* horz_metrics; | 1398 FT_Byte* horz_metrics; |
| 1399 FT_ULong horz_metrics_size; | 1399 FT_ULong horz_metrics_size; |
| 1400 | 1400 |
| 1401 FT_Byte* vert_metrics; | 1401 FT_Byte* vert_metrics; |
| 1402 FT_ULong vert_metrics_size; | 1402 FT_ULong vert_metrics_size; |
| 1403 | 1403 |
| 1404 FT_ULong num_locations; /* in broken TTF, gid > 0xFFFF */ | 1404 FT_ULong num_locations; /* in broken TTF, gid > 0xFFFF */ |
| 1405 FT_Byte* glyph_locations; | 1405 FT_Byte* glyph_locations; |
| 1406 | 1406 |
| 1407 FT_Byte* hdmx_table; | 1407 FT_Byte* hdmx_table; |
| 1408 FT_ULong hdmx_table_size; | 1408 FT_ULong hdmx_table_size; |
| 1409 FT_UInt hdmx_record_count; | 1409 FT_UInt hdmx_record_count; |
| 1410 FT_ULong hdmx_record_size; | 1410 FT_ULong hdmx_record_size; |
| 1411 FT_Byte* hdmx_record_sizes; | 1411 FT_Byte* hdmx_record_sizes; |
| 1412 | 1412 |
| 1413 FT_Byte* sbit_table; | 1413 FT_Byte* sbit_table; |
| 1414 FT_ULong sbit_table_size; | 1414 FT_ULong sbit_table_size; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1534 | 1534 |
| 1535 } TT_LoaderRec; | 1535 } TT_LoaderRec; |
| 1536 | 1536 |
| 1537 | 1537 |
| 1538 FT_END_HEADER | 1538 FT_END_HEADER |
| 1539 | 1539 |
| 1540 #endif /* __TTTYPES_H__ */ | 1540 #endif /* __TTTYPES_H__ */ |
| 1541 | 1541 |
| 1542 | 1542 |
| 1543 /* END */ | 1543 /* END */ |
| OLD | NEW |