Formatting.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
diff --git a/include/freetype/freetype.h b/include/freetype/freetype.h
index b992b00..e5f4bd2 100644
--- a/include/freetype/freetype.h
+++ b/include/freetype/freetype.h
@@ -968,7 +968,7 @@
/* */
typedef struct FT_GlyphLoader_ FT_GlyphLoader;
-
+
/*************************************************************************/
/* */
/* FreeType Glyph Slot base class */
@@ -1113,11 +1113,11 @@
FT_Vector advance;
FT_Glyph_Format format;
-
+
FT_Bitmap bitmap;
FT_Int bitmap_left;
FT_Int bitmap_top;
-
+
FT_Outline outline;
FT_UInt num_subglyphs;
@@ -1939,10 +1939,10 @@
{
ft_render_mode_normal = 0,
ft_render_mode_mono = 1
-
+
} FT_Render_Mode;
-
+
/*************************************************************************/
/* */
/* <Function> */
@@ -1992,7 +1992,7 @@
ft_kerning_default = 0,
ft_kerning_unfitted,
ft_kerning_unscaled
-
+
} FT_Kerning_Mode;
diff --git a/include/freetype/ftglyph.h b/include/freetype/ftglyph.h
index 4772d8c..8b374a8 100644
--- a/include/freetype/ftglyph.h
+++ b/include/freetype/ftglyph.h
@@ -215,7 +215,7 @@
FT_Matrix* matrix,
FT_Vector* delta );
-
+
enum
{
ft_glyph_bbox_pixels = 0,
@@ -348,7 +348,7 @@
FT_ULong render_mode,
FT_Vector* origin,
FT_Bool destroy );
-
+
/*************************************************************************/
/* */
diff --git a/include/freetype/ftimage.h b/include/freetype/ftimage.h
index a1b15c9..e61443c 100644
--- a/include/freetype/ftimage.h
+++ b/include/freetype/ftimage.h
@@ -2,23 +2,27 @@
/* */
/* ftimage.h */
/* */
-/* This file defines the glyph image formats recognized by FreeType, as */
-/* well as the default raster interface. */
-/* */
-/* Note: a "raster" is simply a scan-line converter, used to render */
-/* FT_Outlines into FT_Bitmaps */
+/* FreeType glyph image formats and default raster interface. */
/* */
/* Copyright 1996-2000 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg */
/* */
-/* This file is part of the FreeType project, and may only be used */
-/* modified and distributed under the terms of the FreeType project */
+/* This file is part of the FreeType project, and may only be used, */
+/* modified, and distributed under the terms of the FreeType project */
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
/* this file you indicate that you have read the license and */
/* understand and accept it fully. */
/* */
/***************************************************************************/
+ /*************************************************************************/
+ /* */
+ /* Note: A `raster' is simply a scan-line converter, used to render */
+ /* FT_Outlines into FT_Bitmaps. */
+ /* */
+ /*************************************************************************/
+
+
#ifndef FTIMAGE_H
#define FTIMAGE_H
@@ -48,7 +52,7 @@
/* FT_Vector */
/* */
/* <Description> */
- /* A simple structure used to store a 2d vector; coordinates are of */
+ /* A simple structure used to store a 2D vector; coordinates are of */
/* the FT_Pos type. */
/* */
/* <Fields> */
@@ -63,53 +67,51 @@
} FT_Vector;
- /*************************************************************************
- *
- * <Enum>
- * FT_Pixel_Mode
- *
- * <Description>
- * An enumeration type used to describe the format of pixels
- * in a given bitmap. Note that additional formats may be added
- * in the future.
- *
- * <Fields>
- * ft_pixel_mode_mono :: a monochrome bitmap (1 bit/pixel)
- *
- * ft_pixel_mode_grays :: an 8-bit gray-levels bitmap. Note that
- * the total number of gray levels is given
- * in the `num_grays' field of the FT_Bitmap
- * structure.
- *
- * ft_pixel_mode_pal2 :: a 2-bit paletted bitmap.
- * currently unused by FreeType.
- *
- * ft_pixel_mode_pal4 :: a 4-bit paletted bitmap.
- * currently unused by FreeType.
- *
- * ft_pixel_mode_pal8 :: an 8-bit paletted bitmap.
- * currently unused by FreeType.
- *
- * ft_pixel_mode_rgb15 :: a 15-bit RGB bitmap. Uses 5:5:5 encoding
- * currently unused by FreeType.
- *
- * ft_pixel_mode_rgb16 :: a 16-bit RGB bitmap. Uses 5:6:5 encoding
- * currently unused by FreeType.
- *
- * ft_pixel_mode_rgb24 :: a 24-bit RGB bitmap.
- * currently unused by FreeType.
- *
- * ft_pixel_mode_rgb32 :: a 32-bit RGB bitmap.
- * currently unused by FreeType.
- *
- * <Note>
- * Some anti-aliased bitmaps might be embedded in TrueType fonts
- * using formats pal2 or pal4, though no fonts presenting those
- * have been found to date..
- *
- *************************************************************************/
-
- typedef enum FT_Pixel_Mode_
+ /*************************************************************************/
+ /* */
+ /* <Enum> */
+ /* FT_Pixel_Mode */
+ /* */
+ /* <Description> */
+ /* An enumeration type used to describe the format of pixels in a */
+ /* given bitmap. Note that additional formats may be added in the */
+ /* future. */
+ /* */
+ /* <Fields> */
+ /* ft_pixel_mode_mono :: A monochrome bitmap (1 bit/pixel). */
+ /* */
+ /* ft_pixel_mode_grays :: An 8-bit gray-levels bitmap. Note that the */
+ /* total number of gray levels is given in the */
+ /* `num_grays' field of the FT_Bitmap */
+ /* structure. */
+ /* */
+ /* ft_pixel_mode_pal2 :: A 2-bit paletted bitmap. */
+ /* Currently unused by FreeType. */
+ /* */
+ /* ft_pixel_mode_pal4 :: A 4-bit paletted bitmap. */
+ /* Currently unused by FreeType. */
+ /* */
+ /* ft_pixel_mode_pal8 :: An 8-bit paletted bitmap. */
+ /* Currently unused by FreeType. */
+ /* */
+ /* ft_pixel_mode_rgb15 :: A 15-bit RGB bitmap. Uses 5:5:5 encoding. */
+ /* Currently unused by FreeType. */
+ /* */
+ /* ft_pixel_mode_rgb16 :: A 16-bit RGB bitmap. Uses 5:6:5 encoding. */
+ /* Currently unused by FreeType. */
+ /* */
+ /* ft_pixel_mode_rgb24 :: A 24-bit RGB bitmap. */
+ /* Currently unused by FreeType. */
+ /* */
+ /* ft_pixel_mode_rgb32 :: A 32-bit RGB bitmap. */
+ /* Currently unused by FreeType. */
+ /* */
+ /* <Note> */
+ /* Some anti-aliased bitmaps might be embedded in TrueType fonts */
+ /* using formats pal2 or pal4, though no fonts presenting those have */
+ /* been found to date. */
+ /* */
+ typedef enum FT_Pixel_Mode_
{
ft_pixel_mode_none = 0,
ft_pixel_mode_mono,
@@ -127,28 +129,27 @@
} FT_Pixel_Mode;
-
- /*************************************************************************
- *
- * <Enum>
- * FT_Palette_Mode
- *
- * <Description>
- * An enumeration type used to describe the format of a bitmap
- * palette, used with ft_pixel_mode_pal4 and ft_pixel_mode_pal8
- *
- * <Fields>
- * ft_palette_mode_rgb :: the palette is an array of 3-bytes RGB records
- *
- * ft_palette_mode_rgba :: the palette is an array of 4-bytes RGBA records
- *
- * <Note>
- * As ft_pixel_mode_pal2, pal4 and pal8 are currently unused by
- * FreeType, these types are not handled by the library itself.
- *
- *************************************************************************/
-
- typedef enum FT_Palette_Mode_
+ /*************************************************************************/
+ /* */
+ /* <Enum> */
+ /* FT_Palette_Mode */
+ /* */
+ /* <Description> */
+ /* An enumeration type used to describe the format of a bitmap */
+ /* palette, used with ft_pixel_mode_pal4 and ft_pixel_mode_pal8. */
+ /* */
+ /* <Fields> */
+ /* ft_palette_mode_rgb :: The palette is an array of 3-bytes RGB */
+ /* records. */
+ /* */
+ /* ft_palette_mode_rgba :: The palette is an array of 4-bytes RGBA */
+ /* records. */
+ /* */
+ /* <Note> */
+ /* As ft_pixel_mode_pal2, pal4 and pal8 are currently unused by */
+ /* FreeType, these types are not handled by the library itself. */
+ /* */
+ typedef enum FT_Palette_Mode_
{
ft_palette_mode_rgb = 0,
ft_palette_mode_rgba,
@@ -158,59 +159,58 @@
} FT_Palette_Mode;
- /*************************************************************************
- *
- * <Struct>
- * FT_Bitmap
- *
- * <Description>
- * A structure used to describe a bitmap or pixmap to the raster.
- * Note that we now manage pixmaps of various depths through the
- * `pixel_mode' field.
- *
- * <Fields>
- * rows :: The number of bitmap rows.
- *
- * width :: The number of pixels in bitmap row.
- *
- * pitch :: The pitch's absolute value is the number of bytes
- * taken by one bitmap row, including padding. However,
- * the pitch is positive when the bitmap has a `down'
- * flow, and negative when it has an `up' flow. In all
- * cases, the pitch is an offset to add to a bitmap
- * pointer in order to go down one row.
- *
- * buffer :: A typeless pointer to the bitmap buffer. This value
- * should be aligned on 32-bit boundaries in most cases.
- *
- * num_grays :: this field is only used with ft_pixel_mode_grays,
- * it gives the number of gray levels used in the
- * bitmap.
- *
- * pixel_mode :: the pixel_mode, i.e. how pixel bits are stored
- *
- * palette_mode :: this field is only used with paletted pixel modes,
- * it indicates how the palette is stored
- *
- * palette :: a typeless pointer to the bitmap palette. only used
- * for paletted pixel modes.
- *
- * <Note>
- * For now, the only pixel mode supported by FreeType are mono and grays.
- * However, drivers might be added in the future to support more "colorful"
- * options..
- *
- * When using pixel modes pal2, pal4 and pal8 with a void `palette'
- * field, a gray pixmap with respectively 4, 16 and 256 levels of gray
- * is assumed. This, in order to be compatible with some embedded bitmap
- * formats defined in the TrueType spec.
- *
- * Note that no font was found presenting such embedded bitmaps, so this
- * is currently completely unhandled by the library.
- *
- *************************************************************************/
-
- typedef struct FT_Bitmap_
+ /*************************************************************************/
+ /* */
+ /* <Struct> */
+ /* FT_Bitmap */
+ /* */
+ /* <Description> */
+ /* A structure used to describe a bitmap or pixmap to the raster. */
+ /* Note that we now manage pixmaps of various depths through the */
+ /* `pixel_mode' field. */
+ /* */
+ /* <Fields> */
+ /* rows :: The number of bitmap rows. */
+ /* */
+ /* width :: The number of pixels in bitmap row. */
+ /* */
+ /* pitch :: The pitch's absolute value is the number of bytes */
+ /* taken by one bitmap row, including padding. */
+ /* However, the pitch is positive when the bitmap has */
+ /* a `down' flow, and negative when it has an `up' */
+ /* flow. In all cases, the pitch is an offset to add */
+ /* to a bitmap pointer in order to go down one row. */
+ /* */
+ /* buffer :: A typeless pointer to the bitmap buffer. This */
+ /* value should be aligned on 32-bit boundaries in */
+ /* most cases. */
+ /* */
+ /* num_grays :: This field is only used with */
+ /* `ft_pixel_mode_grays'; it gives the number of gray */
+ /* levels used in the bitmap. */
+ /* */
+ /* pixel_mode :: The pixel_mode, i.e., how pixel bits are stored. */
+ /* */
+ /* palette_mode :: This field is only used with paletted pixel modes; */
+ /* it indicates how the palette is stored. */
+ /* */
+ /* palette :: A typeless pointer to the bitmap palette; only */
+ /* used for paletted pixel modes. */
+ /* */
+ /* <Note> */
+ /* For now, the only pixel mode supported by FreeType are mono and */
+ /* grays. However, drivers might be added in the future to support */
+ /* more `colorful' options. */
+ /* */
+ /* When using pixel modes pal2, pal4 and pal8 with a void `palette' */
+ /* field, a gray pixmap with respectively 4, 16, and 256 levels of */
+ /* gray is assumed. This, in order to be compatible with some */
+ /* embedded bitmap formats defined in the TrueType specification. */
+ /* */
+ /* Note that no font was found presenting such embedded bitmaps, so */
+ /* this is currently completely unhandled by the library. */
+ /* */
+ typedef struct FT_Bitmap_
{
int rows;
int width;
@@ -224,7 +224,6 @@
} FT_Bitmap;
-
/*************************************************************************/
/* */
/* <Struct> */
@@ -240,31 +239,26 @@
/* n_points :: The number of points in the outline. */
/* */
/* points :: A pointer to an array of `n_points' FT_Vector */
- /* elements, giving the outline's point */
- /* coordinates. */
+ /* elements, giving the outline's point coordinates. */
/* */
- /* tags :: A pointer to an array of `n_points' chars, */
+ /* tags :: A pointer to an array of `n_points' chars, giving */
/* giving each outline point's type. If bit 0 is */
- /* unset, the point is 'off' the curve, i.e. a */
- /* Bezier control point, while it is `on' when */
- /* unset. */
+ /* unset, the point is 'off' the curve, i.e. a Bezier */
+ /* control point, while it is `on' when unset. */
/* */
- /* Bit 1 is meaningful for `off' points only. If */
- /* set, it indicates a third-order Bezier arc */
- /* control point; and a second-order control point */
- /* if unset. */
+ /* Bit 1 is meaningful for `off' points only. If set, */
+ /* it indicates a third-order Bezier arc control point; */
+ /* and a second-order control point if unset. */
/* */
/* contours :: An array of `n_contours' shorts, giving the end */
/* point of each contour within the outline. For */
- /* example, the first contour is defined by the */
- /* points `0' to `contours[0]', the second one is */
- /* defined by the points `contours[0]+1' to */
- /* `contours[1]', etc. */
+ /* example, the first contour is defined by the points */
+ /* `0' to `contours[0]', the second one is defined by */
+ /* the points `contours[0]+1' to `contours[1]', etc. */
/* */
- /* flags :: a set of bit flags used to characterize the */
- /* outline and give hints to the scan-converter */
- /* and hinter on how to convert/grid-fit it.. */
- /* see FT_Outline_Flags.. */
+ /* flags :: A set of bit flags used to characterize the outline */
+ /* and give hints to the scan-converter and hinter on */
+ /* how to convert/grid-fit it. See FT_Outline_Flags. */
/* */
typedef struct FT_Outline_
{
@@ -286,49 +280,59 @@
/* FT_Outline_Flags */
/* */
/* <Description> */
- /* A simple type used to enumerates the flags in an outline's */
- /* "outline_flags" field. */
+ /* A simple type used to enumerates the flags in an outline's */
+ /* `outline_flags' field. */
/* */
/* <Fields> */
- /* ft_outline_owner :: */
- /* when set, this flag indicates that the outline's field arrays */
- /* (i.e. "points", "flags" & "contours") are "owned" by the */
- /* outline object, and should thus be freed when it is destroyed. */
- /* */
- /* ft_outline_even_odd_fill :: */
- /* by default, outlines are filled using the non-zero winding */
- /* rule. When set to 1, the outline will be filled using the */
- /* even-odd fill rule.. (only works with the smooth raster) */
- /* */
- /* ft_outline_reverse_fill :: */
- /* By default, outside contours of an outline are oriented in */
- /* clock-wise direction, as defined in the TrueType specification. */
- /* This flag is set when the outline uses the opposite direction, */
- /* (typically for Type 1 fonts). This flag is ignored by the */
- /* scan-converter. However, it is very important for the */
- /* auto-hinter.. */
- /* */
- /* ft_outline_ignore_dropouts :: */
- /* By default, the scan converter will try to detect drop-outs */
- /* in an outline and correct the glyph bitmap to ensure consistent */
- /* shape continuity. When set, this flag hints the scan-line */
- /* converter to ignore such cases. */
- /* */
- /* ft_outline_high_precision :: */
- /* this flag indicates that the scan-line converter should try */
- /* to convert this outline to bitmaps with the highest possible */
- /* quality. It is typically set for small character sizes. Note */
- /* that this is only a hint, that might be completely ignored */
- /* by a given scan-converter. */
- /* */
- /* ft_outline_single_pass :: */
- /* this flag is set to force a given scan-converter to only */
- /* use a single pass over the outline to render a bitmap glyph */
- /* image. Normally, it is set for very large character sizes. */
- /* It is only a hint, that might be completely ignored by a */
- /* given scan-converter. */
- /* */
- typedef enum FT_Outline_Flags_
+ /* ft_outline_owner :: If set, this flag indicates that the */
+ /* outline's field arrays (i.e. */
+ /* `points', `flags' & `contours') are */
+ /* `owned' by the outline object, and */
+ /* should thus be freed when it is */
+ /* destroyed. */
+ /* */
+ /* ft_outline_even_odd_fill :: By default, outlines are filled using */
+ /* the non-zero winding rule. If set to */
+ /* 1, the outline will be filled using */
+ /* the even-odd fill rule (only works */
+ /* with the smooth raster). */
+ /* */
+ /* ft_outline_reverse_fill :: By default, outside contours of an */
+ /* outline are oriented in clock-wise */
+ /* direction, as defined in the TrueType */
+ /* specification. This flag is set if */
+ /* the outline uses the opposite */
+ /* direction (typically for Type 1 */
+ /* fonts). This flag is ignored by the */
+ /* scan-converter. However, it is very */
+ /* important for the auto-hinter. */
+ /* */
+ /* ft_outline_ignore_dropouts :: By default, the scan converter will */
+ /* try to detect drop-outs in an outline */
+ /* and correct the glyph bitmap to */
+ /* ensure consistent shape continuity. */
+ /* If set, this flag hints the scan-line */
+ /* converter to ignore such cases. */
+ /* */
+ /* ft_outline_high_precision :: This flag indicates that the */
+ /* scan-line converter should try to */
+ /* convert this outline to bitmaps with */
+ /* the highest possible quality. It is */
+ /* typically set for small character */
+ /* sizes. Note that this is only a */
+ /* hint, that might be completely */
+ /* ignored by a given scan-converter. */
+ /* */
+ /* ft_outline_single_pass :: This flag is set to force a given */
+ /* scan-converter to only use a single */
+ /* pass over the outline to render a */
+ /* bitmap glyph image. Normally, it is */
+ /* set for very large character sizes. */
+ /* It is only a hint, that might be */
+ /* completely ignored by a given */
+ /* scan-converter. */
+ /* */
+ typedef enum FT_Outline_Flags_
{
ft_outline_none = 0,
ft_outline_owner = 1,
@@ -341,18 +345,18 @@
} FT_Outline_Flags;
+#define FT_CURVE_TAG( flag ) ( flag & 3 )
-#define FT_CURVE_TAG( flag ) (flag & 3)
+#define FT_Curve_Tag_On 1
+#define FT_Curve_Tag_Conic 0
+#define FT_Curve_Tag_Cubic 2
-#define FT_Curve_Tag_On 1
-#define FT_Curve_Tag_Conic 0
-#define FT_Curve_Tag_Cubic 2
-
-#define FT_Curve_Tag_Touch_X 8 /* reserved for the TrueType hinter */
-#define FT_Curve_Tag_Touch_Y 16 /* reserved for the TrueType hinter */
+#define FT_Curve_Tag_Touch_X 8 /* reserved for the TrueType hinter */
+#define FT_Curve_Tag_Touch_Y 16 /* reserved for the TrueType hinter */
#define FT_Curve_Tag_Touch_Both ( FT_Curve_Tag_Touch_X | \
- FT_Curve_Tag_Touch_Y)
+ FT_Curve_Tag_Touch_Y )
+
/*************************************************************************/
/* */
@@ -367,6 +371,7 @@
/* */
/* <Input> */
/* to :: A pointer to the target point of the `move to'. */
+ /* */
/* user :: A typeless pointer which is passed from the caller of the */
/* decomposition function. */
/* */
@@ -390,6 +395,7 @@
/* */
/* <Input> */
/* to :: A pointer to the target point of the `line to'. */
+ /* */
/* user :: A typeless pointer which is passed from the caller of the */
/* decomposition function. */
/* */
@@ -442,8 +448,11 @@
/* */
/* <Input> */
/* control1 :: A pointer to the first Bezier control point. */
+ /* */
/* control2 :: A pointer to the second Bezier control point. */
+ /* */
/* to :: A pointer to the target end point. */
+ /* */
/* user :: A typeless pointer which is passed from the caller of */
/* the decomposition function. */
/* */
@@ -468,26 +477,29 @@
/* */
/* <Fields> */
/* move_to :: The `move to' emitter. */
+ /* */
/* line_to :: The segment emitter. */
+ /* */
/* conic_to :: The second-order Bezier arc emitter. */
+ /* */
/* cubic_to :: The third-order Bezier arc emitter. */
/* */
- /* shift :: the shift that is applied to coordinates before */
- /* they're sent to the emmiter */
+ /* shift :: The shift that is applied to coordinates before they */
+ /* are sent to the emitter. */
/* */
- /* delta :: the delta that is applied to coordinates before */
- /* they're sent to the emitter, but after the shift */
+ /* delta :: The delta that is applied to coordinates before they */
+ /* are sent to the emitter, but after the shift. */
/* */
/* <Note> */
/* The point coordinates sent to the emitters are the transformed */
/* version of the original coordinates (this is important for high */
- /* accuracy during scan-conversion). The transform is simply: */
+ /* accuracy during scan-conversion). The transformation is simple: */
/* */
- /* x' = (x << shift) - delta */
- /* y' = (x << shift) - delta */
+ /* x' = (x << shift) - delta */
+ /* y' = (x << shift) - delta */
/* */
- /* Set the value of 'shift' and 'delta' to 0 to get the original */
- /* point coordinates.. */
+ /* Set the value of `shift' and `delta' to 0 to get the original */
+ /* point coordinates. */
/* */
typedef struct FT_Outline_Funcs_
{
@@ -508,55 +520,56 @@
/* FT_IMAGE_TAG */
/* */
/* <Description> */
- /* This macro converts four letter tags into unsigned longs.. */
+ /* This macro converts four letter tags into an unsigned long. */
/* */
#define FT_IMAGE_TAG( _x1, _x2, _x3, _x4 ) \
- (((unsigned long)_x1 << 24) | \
- ((unsigned long)_x2 << 16) | \
- ((unsigned long)_x3 << 8) | \
- (unsigned long)_x4)
-
-
- /***********************************************************************
- *
- * <Enum>
- * FT_Glyph_Format
- *
- * <Description>
- * An enumeration type used to describe the format of a given glyph
- * image. Note that this version of FreeType only supports two image
- * formats, even though future font drivers will be able to register
- * their own format.
- *
- * <Fields>
- * ft_glyph_format_composite :: the glyph image is a composite of several
- * other images. This glyph format is _only_
- * used with the FT_LOAD_FLAG_NO_RECURSE flag
- * (XXX: Which is currently iunimplemented)
- *
- * ft_glyph_format_bitmap :: the glyph image is a bitmap, and can
- * be described as a FT_Bitmap
- *
- * ft_glyph_format_outline :: the glyph image is a vectorial image
- * made of bezier control points, and can
- * be described as a FT_Outline
- *
- * ft_glyph_format_plotter :: the glyph image is a vectorial image
- * made of plotter lines (some T1 fonts like
- * Hershey contain glyph in this format).
- *
- ***********************************************************************/
-
- typedef enum FT_Glyph_Format_
+ ( ( (unsigned long)_x1 << 24 ) | \
+ ( (unsigned long)_x2 << 16 ) | \
+ ( (unsigned long)_x3 << 8 ) | \
+ (unsigned long)_x4 )
+
+
+ /*************************************************************************/
+ /* */
+ /* <Enum> */
+ /* FT_Glyph_Format */
+ /* */
+ /* <Description> */
+ /* An enumeration type used to describe the format of a given glyph */
+ /* image. Note that this version of FreeType only supports two image */
+ /* formats, even though future font drivers will be able to register */
+ /* their own format. */
+ /* */
+ /* <Fields> */
+ /* ft_glyph_format_composite :: The glyph image is a composite of */
+ /* several other images. This glyph */
+ /* format is _only_ used with the */
+ /* FT_LOAD_FLAG_NO_RECURSE flag (XXX: */
+ /* Which is currently unimplemented). */
+ /* */
+ /* ft_glyph_format_bitmap :: The glyph image is a bitmap, and can */
+ /* be described as a FT_Bitmap. */
+ /* */
+ /* ft_glyph_format_outline :: The glyph image is a vectorial image */
+ /* made of bezier control points, and */
+ /* can be described as a FT_Outline. */
+ /* */
+ /* ft_glyph_format_plotter :: The glyph image is a vectorial image */
+ /* made of plotter lines (some T1 fonts */
+ /* like Hershey contain glyph in this */
+ /* format). */
+ /* */
+ typedef enum FT_Glyph_Format_
{
ft_glyph_format_none = 0,
- ft_glyph_format_composite = FT_IMAGE_TAG('c','o','m','p'),
- ft_glyph_format_bitmap = FT_IMAGE_TAG('b','i','t','s'),
- ft_glyph_format_outline = FT_IMAGE_TAG('o','u','t','l'),
- ft_glyph_format_plotter = FT_IMAGE_TAG('p','l','o','t')
+ ft_glyph_format_composite = FT_IMAGE_TAG( 'c', 'o', 'm', 'p' ),
+ ft_glyph_format_bitmap = FT_IMAGE_TAG( 'b', 'i', 't', 's' ),
+ ft_glyph_format_outline = FT_IMAGE_TAG( 'o', 'u', 't', 'l' ),
+ ft_glyph_format_plotter = FT_IMAGE_TAG( 'p', 'l', 'o', 't' )
} FT_Glyph_Format;
+
/*************************************************************************/
/*************************************************************************/
/*************************************************************************/
@@ -567,16 +580,18 @@
/*************************************************************************/
/*************************************************************************/
- /**************************************************************************
- *
- * A raster is a scan converter, in charge of rendering an outline into a
- * a bitmap. This section contains the public API for rasters.
- *
- * Note that in FreeType 2, all rasters are now encapsulated within
- * specific modules called "renderers". See <freetype/internal/ftrender.h>
- * for more details on renderers..
- *
- **************************************************************************/
+
+ /*************************************************************************/
+ /* */
+ /* A raster is a scan converter, in charge of rendering an outline into */
+ /* a a bitmap. This section contains the public API for rasters. */
+ /* */
+ /* Note that in FreeType 2, all rasters are now encapsulated within */
+ /* specific modules called "renderers". See */
+ /* <freetype/internal/ftrender.h> for more details on renderers. */
+ /* */
+ /*************************************************************************/
+
/*************************************************************************/
/* */
@@ -597,24 +612,26 @@
/* */
/* <Description> */
/* A structure used to model a single span of gray (or black) pixels */
- /* when rendering a monocrhome or anti-aliased bitmap. */
+ /* when rendering a monochrome or anti-aliased bitmap. */
/* */
/* <Fields> */
- /* x :: the span's horizontal start position */
- /* len :: the span's length in pixels */
- /* coverage :: the span color/coverage, ranging from 0 (background) */
- /* to 255 (foreground). Only used for anti-aliased */
- /* rendering.. */
+ /* x :: The span's horizontal start position. */
+ /* */
+ /* len :: The span's length in pixels. */
+ /* */
+ /* coverage :: The span color/coverage, ranging from 0 (background) */
+ /* to 255 (foreground). Only used for anti-aliased */
+ /* rendering. */
/* */
/* <Note> */
- /* This structure is used by the span drawing callback type */
- /* named FT_Raster_Span_Func, which takes the y coordinate of the */
- /* span as a paremeter.. */
+ /* This structure is used by the span drawing callback type named */
+ /* FT_Raster_Span_Func(), which takes the y-coordinate of the span as */
+ /* a parameter. */
/* */
- /* The coverage value is always between 0 and 255, even if the */
- /* number of gray levels have been set through FT_Set_Gray_Levels() */
+ /* The coverage value is always between 0 and 255, even if the number */
+ /* of gray levels have been set through FT_Set_Gray_Levels(). */
/* */
- typedef struct FT_Span_
+ typedef struct FT_Span_
{
short x;
unsigned short len;
@@ -634,33 +651,36 @@
/* spans on each scan line. */
/* */
/* <Input> */
- /* y :: the scanline's y coordinate */
- /* count :: the number of spans to draw on this scanline */
- /* spans :: a table of 'count' spans to draw on the scanline */
- /* user :: user-supplied data that is passed to the callback */
+ /* y :: The scanline's y-coordinate. */
/* */
- /* <Note> */
- /* This callback allows client applications to directly render the */
- /* gray spans of the anti-aliased bitmap to any kind of surfaces. */
+ /* count :: The number of spans to draw on this scanline. */
+ /* */
+ /* spans :: A table of `count' spans to draw on the scanline. */
/* */
- /* This can be used to write anti-aliased outlines directly to a */
- /* given background bitmap, and even perform translucency.. */
+ /* user :: User-supplied data that is passed to the callback. */
/* */
- /* Note that the "count" field cannot be greater than a fixed value */
- /* defined by the FT_MAX_GRAY_SPANS configuration macro in ftoption.h */
+ /* <Note> */
+ /* This callback allows client applications to directly render the */
+ /* gray spans of the anti-aliased bitmap to any kind of surfaces. */
+ /* */
+ /* This can be used to write anti-aliased outlines directly to a */
+ /* given background bitmap, and even perform translucency. */
/* */
- /* By default, this value is set to 32, which means that if there are */
- /* more than 32 spans on a given scanline, the callback will be called */
- /* several times with the same "y" parameter in order to draw all */
- /* callbacks.. */
+ /* Note that the `count' field cannot be greater than a fixed value */
+ /* defined by the FT_MAX_GRAY_SPANS configuration macro in */
+ /* ftoption.h. By default, this value is set to 32, which means that */
+ /* if there are more than 32 spans on a given scanline, the callback */
+ /* will be called several times with the same `y' parameter in order */
+ /* to draw all callbacks. */
/* */
- /* Otherwise, the callback is only called once per scan-line, and */
- /* only for those scanlines that do have "gray" pixels on them.. */
+ /* Otherwise, the callback is only called once per scan-line, and */
+ /* only for those scanlines that do have `gray' pixels on them. */
/* */
- typedef void (*FT_Raster_Span_Func)( int y,
- int count,
- FT_Span* spans,
- void* user );
+ typedef void (*FT_Raster_Span_Func)( int y,
+ int count,
+ FT_Span* spans,
+ void* user );
+
/*************************************************************************/
/* */
@@ -669,21 +689,24 @@
/* */
/* <Description> */
/* A function used as a call-back by the monochrome scan-converter */
- /* to test wether a given target pixel is already set to the drawing */
- /* "color". These tests are crucial to implement drop-out control */
- /* per-se the TrueType spec.. */
+ /* to test whether a given target pixel is already set to the drawing */
+ /* `color'. These tests are crucial to implement drop-out control */
+ /* per-se the TrueType spec. */
/* */
/* <Input> */
- /* y :: the pixel's y coordinate */
- /* x :: the pixel's x coordinate */
- /* user :: user-supplied data that is passed to the callback */
+ /* y :: The pixel's y-coordinate. */
+ /* */
+ /* x :: The pixel's x-coordinate. */
+ /* */
+ /* user :: User-supplied data that is passed to the callback. */
/* */
/* <Return> */
- /* 1 if the pixel is "set", 0 otherwise */
+ /* 1 if the pixel is `set', 0 otherwise. */
/* */
- typedef int (*FT_Raster_BitTest_Func)( int y,
- int x,
- void* user );
+ typedef int (*FT_Raster_BitTest_Func)( int y,
+ int x,
+ void* user );
+
/*************************************************************************/
/* */
@@ -692,94 +715,103 @@
/* */
/* <Description> */
/* A function used as a call-back by the monochrome scan-converter */
- /* used to set an individual target pixel. This is crucial to */
- /* implement drop-out control per-se the TrueType spec.. */
+ /* to set an individual target pixel. This is crucial to implement */
+ /* drop-out control according to the TrueType specification. */
/* */
/* <Input> */
- /* y :: the pixel's y coordinate */
- /* x :: the pixel's x coordinate */
- /* user :: user-supplied data that is passed to the callback */
+ /* y :: The pixel's y-coordinate. */
+ /* */
+ /* x :: The pixel's x-coordinate. */
+ /* */
+ /* user :: User-supplied data that is passed to the callback. */
/* */
/* <Return> */
- /* 1 if the pixel is "set", 0 otherwise */
- /* */
- typedef void (*FT_Raster_BitSet_Func)( int y,
- int x,
- void* user );
-
-
- /**************************************************************************
- *
- * <Enum>
- * FT_Raster_Flag
- *
- * <Description>
- * An enumeration used to list the bit flags used in the "flags"
- * field of a FT_Raster_Params function.
- *
- * <Fields>
- * ft_raster_flag_default :: this value is 0
- *
- * ft_raster_flag_aa :: resquests the rendering of an anti-aliased
- * glyph bitmap. If unset, a monchrome bitmap
- * will be rendered.
- *
- * ft_raster_flag_direct :: requests direct rendering over the target
- * bitmap. Direct rendering uses user-provided
- * callbacks in order to perform direct
- * drawing or composition over an existing
- * bitmap. If this bit is unset, the content
- * of the target bitmap **must be zeroed** !
- *
- **************************************************************************/
- typedef enum {
+ /* 1 if the pixel is `set', 0 otherwise. */
+ /* */
+ typedef void (*FT_Raster_BitSet_Func)( int y,
+ int x,
+ void* user );
+
+ /*************************************************************************/
+ /* */
+ /* <Enum> */
+ /* FT_Raster_Flag */
+ /* */
+ /* <Description> */
+ /* An enumeration to list the bit flags as used in the `flags' field */
+ /* of a FT_Raster_Params structure. */
+ /* */
+ /* <Fields> */
+ /* ft_raster_flag_default :: This value is 0. */
+ /* */
+ /* ft_raster_flag_aa :: Requests the rendering of an */
+ /* anti-aliased glyph bitmap. If unset, a */
+ /* monchrome bitmap will be rendered. */
+ /* */
+ /* ft_raster_flag_direct :: Requests direct rendering over the */
+ /* target bitmap. Direct rendering uses */
+ /* user-provided callbacks in order to */
+ /* perform direct drawing or composition */
+ /* over an existing bitmap. If this bit is */
+ /* unset, the content of the target bitmap */
+ /* *must be zeroed*! */
+ /* */
+ typedef enum
+ {
ft_raster_flag_default = 0,
ft_raster_flag_aa = 1,
ft_raster_flag_direct = 2
} FT_Raster_Flag;
- /**************************************************************************
- *
- * <Struct>
- * FT_Raster_Params
- *
- * <Description>
- * A structure used to hold the arguments used by a raster's render
- * function.
- *
- * <Fields>
- * target :: the target bitmap
- * source :: pointer to the source glyph image (e.g. a FT_Outline)
- * flags :: rendering flags
- * gray_spans :: gray span drawing callback
- * black_spans :: black span drawing callback
- * bit_test :: bit test callback
- * bit_set :: bit set callback
- * user :: user-supplied data that is passed to each drawing
- * callback..
- *
- * <Note>
- * An anti-aliased glyph bitmap is drawn if the ft_raster_flag_aa bit
- * flag is set in the "flags" field, otherwise a monochrome bitmap will
- * be generated.
- *
- * When the ft_raster_flag_direct bit flag is set in "flags", the raster
- * will call the "gray_spans" callback to drawn gray pixel spans, in the
- * case of an aa glyph bitmap, or "black_spans", "bit_test" and "bit_set"
- * in the case of a monochrome bitmap.
- *
- * This allows direct composition over a pre-existing bitmap through
- * user-provided callbacks to perform the span drawing/composition.
- *
- * Note that the "bit_test" and "bit_set" callbacks are required when
- * rendering a monochrome bitmap, as they are crucial to implement correct
- * drop-out control per-se the TrueType specification..
- *
- **************************************************************************/
-
- typedef struct FT_Raster_Params_
+
+ /*************************************************************************/
+ /* */
+ /* <Struct> */
+ /* FT_Raster_Params */
+ /* */
+ /* <Description> */
+ /* A structure to hold the arguments used by a raster's render */
+ /* function. */
+ /* */
+ /* <Fields> */
+ /* target :: The target bitmap. */
+ /* */
+ /* source :: A pointer to the source glyph image (e.g. an */
+ /* FT_Outline). */
+ /* */
+ /* flags :: The rendering flags. */
+ /* */
+ /* gray_spans :: The gray span drawing callback. */
+ /* */
+ /* black_spans :: The black span drawing callback. */
+ /* */
+ /* bit_test :: The bit test callback. */
+ /* */
+ /* bit_set :: The bit set callback. */
+ /* */
+ /* user :: User-supplied data that is passed to each drawing */
+ /* callback. */
+ /* */
+ /* <Note> */
+ /* An anti-aliased glyph bitmap is drawn if the ft_raster_flag_aa bit */
+ /* flag is set in the `flags' field, otherwise a monochrome bitmap */
+ /* will be generated. */
+ /* */
+ /* If the ft_raster_flag_direct bit flag is set in `flags', the */
+ /* raster will call the `gray_spans' callback to draw gray pixel */
+ /* spans, in the case of an aa glyph bitmap, it will call */
+ /* `black_spans', and `bit_test' and `bit_set' in the case of a */
+ /* monochrome bitmap. This allows direct composition over a */
+ /* pre-existing bitmap through user-provided callbacks to perform the */
+ /* span drawing/composition. */
+ /* */
+ /* Note that the `bit_test' and `bit_set' callbacks are required when */
+ /* rendering a monochrome bitmap, as they are crucial to implement */
+ /* correct drop-out control as defined in the TrueType specification. */
+ /* */
+ typedef struct FT_Raster_Params_
{
FT_Bitmap* target;
void* source;
@@ -793,164 +825,161 @@
} FT_Raster_Params;
+ /*************************************************************************/
+ /* */
+ /* <FuncType> */
+ /* FT_Raster_New_Func */
+ /* */
+ /* <Description> */
+ /* A function used to create a new raster object. */
+ /* */
+ /* <Input> */
+ /* memory :: A handle to the memory allocator. */
+ /* */
+ /* <Output> */
+ /* raster :: A handle to the new raster object. */
+ /* */
+ /* <Return> */
+ /* Error code. 0 means success. */
+ /* */
+ /* <Note> */
+ /* The `memory' parameter is a typeless pointer in order to avoid */
+ /* un-wanted dependencies on the rest of the FreeType code. In */
+ /* practice, it is a FT_Memory, i.e., a handle to the standard */
+ /* FreeType memory allocator. However, this field can be completely */
+ /* ignored by a given raster implementation. */
+ /* */
+ typedef int (*FT_Raster_New_Func)( void* memory,
+ FT_Raster* raster );
+
+
+ /*************************************************************************/
+ /* */
+ /* <FuncType> */
+ /* FT_Raster_Done_Func */
+ /* */
+ /* <Description> */
+ /* A function used to destroy a given raster object. */
+ /* */
+ /* <Input> */
+ /* raster :: A handle to the raster object. */
+ /* */
+ typedef void (*FT_Raster_Done_Func)( FT_Raster raster );
- /**************************************************************************
- * <FuncType>
- * FT_Raster_New_Func
- *
- * <Description>
- * A function used to create a new raster object.
- *
- * <Input>
- * memory :: handle to memory allocator.
- *
- * <Output>
- * raster :: handle to new raster object
- *
- * <Return>
- * Error code. 0 means success
- *
- * <Note>
- * the "memory" parameter is a typeless pointer in order to avoid
- * un-wanted dependencies on the rest of the FreeType code.
- *
- * in practice, it is a FT_Memory, i.e. a handle to the standard
- * FreeType memory allocator. However, this field can be completely
- * ignored by a given raster implementation..
- *
- **************************************************************************/
-
- typedef int (*FT_Raster_New_Func)( void* memory,
- FT_Raster *raster );
-
-
- /**************************************************************************
- * <FuncType>
- * FT_Raster_Done_Func
- *
- * <Description>
- * A function used to destroy a given raster object.
- *
- * <Input>
- * raster :: handle to new raster object
- *
- **************************************************************************/
-
- typedef void (*FT_Raster_Done_Func)( FT_Raster raster );
-
-
-
- /**************************************************************************
- *
- * <FuncType>
- * FT_Raster_Reset_Func
- *
- * <Description>
- * FreeType provides an area of memory called the "render pool",
- * available to all registered rasters. This pool can be freely
- * used during a given scan-conversion but is shared by all rasters.
- * Its content is thus transient.
- *
- * This function is called each time the render pool changes, or
- * just after a new raster object is created.
- *
- * <Input>
- * raster :: handle to new raster object
- * pool_base :: address in memory of render pool
- * pool_size :: size in bytes of render pool
- *
- * <Note>
- * Rasters can ignore the render pool and rely on dynamic memory
- * allocation if they want to (a handle to the memory allocator is
- * passed to the raster constructor). However, this is not recommended
- * for efficiency purposes..
- *
- **************************************************************************/
-
- typedef void (*FT_Raster_Reset_Func)( FT_Raster raster,
- unsigned char* pool_base,
- unsigned long pool_size );
-
-
- /**************************************************************************
- *
- * <FuncType>
- * FT_Raster_Set_Mode_Func
- *
- * <Description>
- * This function is a generic facility to change modes or attributes
- * in a given raster. This can be used for debugging purposes, or
- * simply to allow implementation-specific "features" in a given
- * raster module.
- *
- * <Input>
- * raster :: handle to new raster object
- * mode :: a 4-byte tag used to name the mode or property
- * args :: a pointer to the new mode/property to use
- *
- **************************************************************************/
-
- typedef int (*FT_Raster_Set_Mode_Func)( FT_Raster raster,
- unsigned long mode,
- void* args );
-
- /**************************************************************************
- *
- * <FuncType>
- * FT_Raster_Render_Func
- *
- * <Description>
- * Invokes a given raster to scan-convert a given glyph image into
- * a target bitmap.
- *
- * <Input>
- * raster :: handle to raster object
- * params :: pointer to a FT_Raster_Params structure used to store
- * the rendering parameters.
- *
- * <Return>
- * Error code. 0 means success
- *
- * <Note>
- * The exact format of the source image depends on the raster's
- * glyph format defined in its FT_Raster_Funcs structure. It can be
- * an FT_Outline or anything else in order to support a large array
- * of glyph formats.
- *
- * Note also that the render function can fail and return a
- * FT_Err_Unimplemented_Feature error code when the raster used does
- * not support direct composition.
- *
- * XXX: For now, the standard raster doesn't support direct composition
- * but this should change for the final release (see the files
- * demos/src/ftgrays.c and demos/src/ftgrays2.c for examples of
- * distinct implementations which support direct composition).
- *
- **************************************************************************/
+ /*************************************************************************/
+ /* */
+ /* <FuncType> */
+ /* FT_Raster_Reset_Func */
+ /* */
+ /* <Description> */
+ /* FreeType provides an area of memory called the `render pool', */
+ /* available to all registered rasters. This pool can be freely used */
+ /* during a given scan-conversion but is shared by all rasters. Its */
+ /* content is thus transient. */
+ /* */
+ /* This function is called each time the render pool changes, or just */
+ /* after a new raster object is created. */
+ /* */
+ /* <Input> */
+ /* raster :: A handle to the new raster object. */
+ /* */
+ /* pool_base :: The address in memory of the render pool. */
+ /* */
+ /* pool_size :: The size in bytes of the render pool. */
+ /* */
+ /* <Note> */
+ /* Rasters can ignore the render pool and rely on dynamic memory */
+ /* allocation if they want to (a handle to the memory allocator is */
+ /* passed to the raster constructor). However, this is not */
+ /* recommended for efficiency purposes. */
+ /* */
+ typedef void (*FT_Raster_Reset_Func)( FT_Raster raster,
+ unsigned char* pool_base,
+ unsigned long pool_size );
+
+
+ /*************************************************************************/
+ /* */
+ /* <FuncType> */
+ /* FT_Raster_Set_Mode_Func */
+ /* */
+ /* <Description> */
+ /* This function is a generic facility to change modes or attributes */
+ /* in a given raster. This can be used for debugging purposes, or */
+ /* simply to allow implementation-specific `features' in a given */
+ /* raster module. */
+ /* */
+ /* <Input> */
+ /* raster :: A handle to the new raster object. */
+ /* */
+ /* mode :: A 4-byte tag used to name the mode or property. */
+ /* */
+ /* args :: A pointer to the new mode/property to use. */
+ /* */
+ typedef int (*FT_Raster_Set_Mode_Func)( FT_Raster raster,
+ unsigned long mode,
+ void* args );
+
+
+ /*************************************************************************/
+ /* */
+ /* <FuncType> */
+ /* FT_Raster_Render_Func */
+ /* */
+ /* <Description> */
+ /* Invokes a given raster to scan-convert a given glyph image into a */
+ /* target bitmap. */
+ /* */
+ /* <Input> */
+ /* raster :: A handle to the raster object. */
+ /* */
+ /* params :: A pointer to a FT_Raster_Params structure used to store */
+ /* the rendering parameters. */
+ /* */
+ /* <Return> */
+ /* Error code. 0 means success. */
+ /* */
+ /* <Note> */
+ /* The exact format of the source image depends on the raster's glyph */
+ /* format defined in its FT_Raster_Funcs structure. It can be an */
+ /* FT_Outline or anything else in order to support a large array of */
+ /* glyph formats. */
+ /* */
+ /* Note also that the render function can fail and return a */
+ /* FT_Err_Unimplemented_Feature error code if the raster used does */
+ /* not support direct composition. */
+ /* */
+ /* XXX: For now, the standard raster doesn't support direct */
+ /* composition but this should change for the final release (see */
+ /* the files demos/src/ftgrays.c and demos/src/ftgrays2.c for */
+ /* examples of distinct implementations which support direct */
+ /* composition). */
+ /* */
typedef int (*FT_Raster_Render_Func)( FT_Raster raster,
FT_Raster_Params* params );
- /**************************************************************************
- *
- * <Struct>
- * FT_Raster_Funcs
- *
- * <Description>
- * A structure used to describe a given raster class to the library.
- *
- * <Fields>
- * glyph_format :: the supported glyph format for this raster
- * raster_new :: the raster constructor
- * raster_reset :: used to reset the render pool within the raster
- * raster_render :: renders a glyph into a given bitmap
- * raster_done :: the raster destructor
- *
- **************************************************************************/
-
-
- typedef struct FT_Raster_Funcs_
+ /*************************************************************************/
+ /* */
+ /* <Struct> */
+ /* FT_Raster_Funcs */
+ /* */
+ /* <Description> */
+ /* A structure used to describe a given raster class to the library. */
+ /* */
+ /* <Fields> */
+ /* glyph_format :: The supported glyph format for this raster. */
+ /* */
+ /* raster_new :: The raster constructor. */
+ /* */
+ /* raster_reset :: Used to reset the render pool within the raster. */
+ /* */
+ /* raster_render :: A function to render a glyph into a given bitmap. */
+ /* */
+ /* raster_done :: The raster destructor. */
+ /* */
+ typedef struct FT_Raster_Funcs_
{
FT_Glyph_Format glyph_format;
FT_Raster_New_Func raster_new;
@@ -969,3 +998,5 @@
#endif /* FTIMAGE_H */
+
+/* END */