Branch
Hash :
778b8f21
Author :
Date :
2019-05-24T23:58:47
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 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045
2019-05-24 23:57 Frank Heckenbach <f.heckenbach@fh-soft.de>
* src/FTFont/FTBufferFont.cpp, src/FTFont/FTTextureFont.cpp:
GL_TEXTURE_ENV_MODE is not valid mask for glPushAttrib.
Use GL_TEXTURE_BIT instead to avoid leaking texture env mode.
(reported by Eddie-cz, https://github.com/frankheckenbach/ftgl/issues/3)
2019-02-23 16:41 Frank Heckenbach <f.heckenbach@fh-soft.de>
* ftgl-release: new script
2019-02-08 00:44 Manuel A. Fernandez Montecelo
* docs/projects_using_ftgl.txt: fix duplicated entry in doc
2019-02-07 22:35 Frank Heckenbach <f.heckenbach@fh-soft.de>
* NEWS, configure.ac, ppa_upload.sh, msvc/config.h, CMakeLists.txt:
* Mark package as being version 2.4.0.
2019-02-07 22:31 Frank Heckenbach <f.heckenbach@fh-soft.de>
* configure.ac: remove -Waggregate-return (returning aggregates is
usual in C++)
* src/FTCharToGlyphIndexMap.h, src/FTContour.cpp,
src/FTGL/FTLibrary.h, src/FTGlyph/FTBufferGlyph.cpp,
src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTPixmapGlyph.cpp,
src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyphContainer.cpp,
src/FTGlyphContainer.h, src/FTInternals.h,
src/FTLayout/FTSimpleLayout.cpp, src/FTPoint.cpp,
src/FTVectoriser.cpp, demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
demo/c-demo.c, demo/simple.cpp, demo/trackball.c:
fix (if possible) or silence (otherwise) compiler warnings
2019-02-07 21:05 Frank Heckenbach <f.heckenbach@fh-soft.de>
* src/FTGL/FTLibrary.h, src/FTLibrary.cpp:
new setting LegacyOpenGLState(), see README-LegacyOpenGLState
* README-LegacyOpenGLState: new file
* src/FTLibrary.h: move to src/FTGL
* src/FTGL/ftgl.h: include FTLibrary.h
* src/Makefile.am, src/CMakeLists.txt: add FTGL/FTLibrary.h
* src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTBufferFont.cpp,
src/FTFont/FTOutlineFont.cpp,
src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTTextureFont.cpp:
use FTLibrary::Instance().GetLegacyOpenGLStateSet()
2018-11-21 01:45 Frank Heckenbach <f.heckenbach@fh-soft.de>
* NEWS, configure.ac, ppa_upload.sh, msvc/config.h, CMakeLists.txt:
* Mark package as being version 2.3.1.
2018-11-18 01:00 Frank Heckenbach <f.heckenbach@fh-soft.de>
* configure.ac: find FT2 via PKG_CHECK_MODULES instead of freetype2.m4
* Makefile.am: remove reference to m4/freetype2.m4
* m4/freetype2.m4: removed
2018-10-14 21:17 Frank Heckenbach <f.heckenbach@fh-soft.de>
* NEWS, configure.ac, ppa_upload.sh, msvc/config.h, CMakeLists.txt,
debian/rules:
* Mark package as being version 2.3.0.
2016-10-19 20:38 Richard Ulrich <richi@paraeasy.ch>
* Improved discovery for cmake
2012-11-01 23:40 Richard Ulrich <richi@paraeasy.ch>
* Added the cmake finder to the debian/install file
2012-09-24 21:06 Richard Ulrich <richi@paraeasy.ch>
* another try to get launchpad to build the package
2012-09-13 22:41 Richard Ulrich <richi@paraeasy.ch>
* not building the tests if cxxtest not found
2012-09-14 00:15 Richard Ulrich <richi@paraeasy.ch>
* added some tests
2012-01-26 21:19 Richard Ulrich <richi@paraeasy.ch>
* Fixed a bug with spaces in the text as reported on http://blog.ulrichard.ch/?p=64
2011-11-09 22:09 Richard Ulrich <richi@paraeasy.ch>
* Added build dependency for cmake
2011-11-09 22:09 Richard Ulrich <richi@paraeasy.ch>
* Changes for polygon extraction
2011-09-01 22:09 Matthias Klose <doko@ubuntu.com>
* Build-depend on doxygen-latex. Closes: #616215. LP: #749191.
2008-06-19 13:11 sammy
* [r1193] NEWS, configure.ac:
* Updated NEWS file.
* Mark package as being version 2.2.0.
2008-06-19 13:10 sammy
* [r1192] TODO:
* Mention fontconfig in the TODO list.
2008-06-13 21:16 dtremenak
* [r1191] demo/FTGLDemo.cpp, msvc/config.h, src/FTFont/FTFont.cpp,
src/FTLayout/FTSimpleLayout.cpp:
make windows use the FONT_FILE mechanism for setting default font
in demos also, no reason to special-case it.
add standard license verbage to msvc config.h.
tack a copyright notice on a couple files I made significant
changes to.
2008-06-12 14:56 sammy
* [r1190] ChangeLog:
* Update ChangeLog using svn2cl -i.
2008-06-12 14:13 sammy
* [r1189] NEWS, configure.ac:
* Updated NEWS file.
* Mark package as being version 2.1.3~rc5.
2008-06-12 14:13 sammy
* [r1188] src/FTGL/FTBufferGlyph.h, src/FTGlyph/FTGlyphGlue.cpp:
* ftglCreateBufferGlyph: do not export FTBufferFont in the C API:
we do not
have easy ways to emulate the FTBuffer object.
2008-06-12 14:13 sammy
* [r1187] src/FTFont/FTBufferFont.cpp:
* Prevent issues when strndup is defined as a macro.
2008-06-11 23:35 dtremenak
* [r1186] msvc/vc8/ftgl_dll.vcproj:
be consistent
2008-06-11 23:34 dtremenak
* [r1185] msvc/vc71/ftgl_dll.vcproj:
fix vc7.1 project
2008-06-11 23:23 dtremenak
* [r1184] configure.ac, src/FTFont/FTBufferFont.cpp:
provide for us poor sobs who don't have a native strndup
implementation
2008-06-09 14:21 sammy
* [r1183] README:
* Update README.
2008-06-09 12:57 sammy
* [r1182] AUTHORS, src/FTCharmap.cpp, src/FTContour.cpp,
src/FTContour.h, src/FTFace.cpp, src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp,
src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h,
src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h,
src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h,
src/FTFont/FTPolygonFont.cpp, src/FTFont/FTPolygonFontImpl.h,
src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h,
src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTBitmapGlyphImpl.h,
src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTExtrudeGlyphImpl.h,
src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp,
src/FTGlyph/FTOutlineGlyphImpl.h, src/FTGlyph/FTPixmapGlyph.cpp,
src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolygonGlyph.cpp,
src/FTGlyph/FTPolygonGlyphImpl.h, src/FTGlyph/FTTextureGlyph.cpp,
src/FTGlyph/FTTextureGlyphImpl.h, src/FTGlyphContainer.cpp,
src/FTGlyphContainer.h, src/FTInternals.h,
src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutGlue.cpp,
src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h, src/FTPoint.cpp,
src/FTVectoriser.cpp, src/FTVectoriser.h:
* Add my copyright information to files I modified significantly.
* Add the Unicode, Inc. to the list of authors because of
FTUnicode.h.
2008-06-09 11:47 sammy
* [r1181] src/FTContour.cpp, src/FTContour.h:
* Code simplifications in FTContour.
2008-06-09 11:47 sammy
* [r1180] src/FTGL/FTPoint.h:
* Add "const" qualifier to FTPoint's scalar multiplication
operator.
2008-06-09 11:45 sammy
* [r1179] src/FTBuffer.cpp, src/FTContour.cpp,
src/FTFont/FTBufferFont.cpp, src/FTGL/FTBuffer.h,
src/FTGlyph/FTBufferGlyph.cpp:
* Document and reorganise FTBuffer. It is now clean enough.
2008-06-09 10:13 sammy
* [r1178] src/FTGL/FTBufferGlyph.h, src/FTGL/FTGlyph.h:
* Document missing function parameters.
2008-06-09 10:12 sammy
* [r1177] src/FTContour.cpp:
* Better FTContour::ComputeOutsetPoint() documentation.
2008-06-09 10:11 sammy
* [r1176] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTExtrudeFontImpl.h,
src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp,
src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp,
src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp,
src/FTGL/FTFont.h:
* Create FTFont::GlyphLoadFlags() to vary FT_Load_Glyph() calls
according
to the font type. Now we no longer load vector information when
not
needed.
2008-06-08 15:56 sammy
* [r1175] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTGlyph/FTGlyphImpl.h, src/FTGlyphContainer.cpp,
src/FTGlyphContainer.h, src/FTLayout/FTSimpleLayout.cpp,
test/FTFont-Test.cpp, test/FTGlyph-Test.cpp,
test/FTGlyphContainer-Test.cpp:
* Revert the FTFont::Advance() and FTGlyph::Advance()
improvements. After
discussion, I was convinced they were not worth the backwards
compatibility
breakage. They now return float again, instead of FTPoint.
2008-06-08 15:55 sammy
* [r1174] src/FTFont/FTBufferFont.cpp:
* Add a comment to FTBufferFont to not forget about bugs in it.
2008-06-03 12:24 sammy
* [r1173] src/FTGlyph/FTExtrudeGlyph.cpp:
* Fix a crash in FTExtrudeGlyph caused by uninitialised members.
2008-06-03 12:23 sammy
* [r1172] configure.ac, src/FTFont/FTBufferFont.cpp:
* FTBufferFont: use strndup() and, when available, wcsdup().
2008-06-03 12:23 sammy
* [r1171] demo/FTGLDemo.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTFont.cpp, src/FTUnicode.h:
* Coding style: remove tabs and trailing spaces, wrap long lines.
2008-06-03 12:22 sammy
* [r1170] BUGS, m4/font.m4:
* Multiline sed scripts won't work very well on Cygwin. Falling
back to
two piped sed calls instead.
2008-05-30 04:07 brlcad
* [r1169] m4/font.m4:
push jwmelto's fix for the sed script error back upstream into
ftgl
2008-05-28 18:00 brlcad
* [r1168] configure.ac:
remove unused/unnecessary check for memset
2008-05-28 15:46 brlcad
* [r1167] demo/Makefile.am, test/Makefile.am:
target-specific CPPFLAGS was not added to automake until 1.7 so
use AM_CPPFLAGS instead
2008-05-28 06:07 brlcad
* [r1166] BUGS:
running configure on mac os x results in bad sed during search
for a truetype font. haven't had time to investigate, but at
least document it as a build system bug
2008-05-28 06:05 brlcad
* [r1165] m4/freetype2.m4:
merge freetype.m4 update from downstream bzflag, which is in turn
from latest freetype2 sources albeit modified to not abort on
failure to find the freetype-config script.
2008-05-28 04:43 brlcad
* [r1164] mac:
bye bye, baby, bye bye. no more mac dir. the xcode project was
entirely out of sync to be of any use and the includes are
pointless (do proper subconfigure management instead)
2008-05-24 19:04 dtremenak
* [r1163] src/FTFont/FTBufferFont.cpp:
from BZFlag r17264: rewrite StringCopy. wcscpy is not a standard
function; we have logic for doing it ourselves already (minus the
len = 0 case), so handle len = 0 and do it all ourselves.
2008-05-23 16:45 dtremenak
* [r1162] src/FTUnicode.h:
Copyright notices as requested by sam
2008-05-23 00:56 dtremenak
* [r1161] src/FTLayout/FTSimpleLayout.cpp:
include wctype.h to make gcc happy
2008-05-23 00:53 dtremenak
* [r1160] src/FTFont/FTFont.cpp:
no need to shadow variables
2008-05-23 00:46 dtremenak
* [r1159] TODO, demo/FTGLDemo.cpp, msvc/vc8/ftgl_static.vcproj,
src/FTFont/FTFont.cpp, src/FTLayout/FTSimpleLayout.cpp,
src/FTUnicode.h, src/Makefile.am:
* Provide a helper class for walking potentially-multibyte
unicode strings.
* Provide support for multibyte encodings (UTF-8, UTF-16) in
FTFont and derived classes, and in FTSimpleLayout.
* Put a few UTF-8 strings in non-latin codeplanes in FTGLDemo
(toggle at compile-time) for testing.
* FTSimpleLayout should be tested extensively before release. I
would be surprised if I didn't break at least one unusual use
case.
2008-05-23 00:20 dtremenak
* [r1158] msvc/vc8/FTGLDemo.vcproj, msvc/vc8/trackball.vcproj:
fix release mode configurations
2008-05-23 00:16 sammy
* [r1157] src/FTFont/FTBufferFont.cpp, src/FTGL/FTBuffer.h,
src/FTGlyph/FTBufferGlyph.cpp:
* Start protecting FTBuffer members using getters and setters.
2008-05-23 00:16 sammy
* [r1156] docs/projects_using_ftgl.txt:
* Add ~40 entries to the list of projects that use FTGL.
2008-05-23 00:16 sammy
* [r1155] docs/Makefile.am, docs/faq.dox, docs/ftgl.dox,
docs/projects_using_ftgl.txt, docs/tutorial.dox:
* Work around a Doxygen bug that creates fake latex references
whenever we
use "FTGL" in section names, and fails to remove the "%" in HTML
pages
whenever we use "%FTGL". Fixing HTML pages is easier.
2008-05-23 00:15 sammy
* [r1154] docs/Makefile.am, docs/ftgl.dox, docs/tutorial.dox:
* Simplify EPS creation rules.
2008-05-22 17:28 dtremenak
* [r1153] msvc/config.h:
quell deprecation messages for posix and c-style string functions
2008-05-22 15:32 sammy
* [r1152] docs/images/texturefont.png, docs/tutorial.dox:
* Add GLBufferFont to the tutorial.
2008-05-22 15:31 sammy
* [r1151] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h:
* Empty the FTBufferFont cache when changing the face size.
2008-05-22 15:31 sammy
* [r1150] src/FTGlyph/FTBufferGlyph.cpp:
* Fix a visual bug in FTBufferFont caused by overlapping glyphs.
2008-05-22 15:30 sammy
* [r1149] docs/projects_using_ftgl.txt:
* Add a few entries to the list of projects using FTGL: Gem,
Libinstrudeo,
Light Speed!, projectM, Tulip.
2008-05-22 15:30 sammy
* [r1148] demo/c-demo.c, demo/simple.cpp:
* Print FPS information in the small demos.
2008-05-22 14:38 sammy
* [r1147] docs/Makefile.am, docs/doxygen.cfg.in, docs/faq.dox,
docs/ftgl.dox, docs/projects_using_ftgl.txt, docs/tutorial.dox:
* Refactor the documentation to have a cleaner frontpage: put the
tutorial
and the FAQ in two separate pages, add links to the most
important C and
C++ documentation, and add projects_using_ftgl.txt to the doxygen
project.
2008-05-22 12:39 sammy
* [r1146] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h:
* Implement caching in FTBufferFont. To avoid unnecessary texture
uploads,
each font object keeps the last 16 strings in the graphic card.
2008-05-22 12:39 sammy
* [r1145] src/FTFont/FTBufferFont.cpp,
src/FTGlyph/FTBufferGlyph.cpp:
* Fix an off-by-one error in FTBufferGlyph::Render.
2008-05-21 16:38 sammy
* [r1144] demo/simple.cpp:
* Revert the simple C++ demo to its previous state, now that
FTBufferFont
starts to work.
2008-05-21 16:37 sammy
* [r1143] src/FTFont/FTBufferFont.cpp:
* Fix the quad vertex order in FTBufferFont.
2008-05-21 16:36 sammy
* [r1142] src/FTFont/FTFont.cpp:
* Fix a bug in the FTFont::BBox calculation: the first glyph bbox
was not
relative to the position argument.
2008-05-21 15:45 sammy
* [r1141] src/FTFont/FTBufferFont.cpp:
* Fix a texture coordinate bug caused by our next-power-of-two
ceiling.
2008-05-21 15:43 sammy
* [r1140] src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTOutlineFont.cpp, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTTextureFont.cpp:
* Add proper glPushAttrib() and glPushClientAttrib() calls to the
rendering methods that need them.
2008-05-21 11:39 sammy
* [r1139] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTTextureFont.cpp:
* Enable GL_TEXTURE_2D in FTFont::Render variations that need it.
2008-05-21 11:39 sammy
* [r1138] demo/simple.cpp:
* Temporarily disabled lighting in the simple demo to test
FTBufferFont.
2008-05-21 10:11 sammy
* [r1137] demo/FTGLDemo.cpp:
* Add FTBufferFont to the complex FTGL demo.
2008-05-21 01:16 dtremenak
* [r1136] msvc/vc8/CDemo.vcproj, msvc/vc8/ftgl_demo.sln:
build C demo on windows
2008-05-21 01:14 dtremenak
* [r1135] demo/c-demo.c:
all variables must be declared at the start of a block for C89
compliance. also use explicit float constants.
2008-05-21 00:53 dtremenak
* [r1134] msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static.vcproj:
missed FTBuffer.cpp
2008-05-21 00:44 dtremenak
* [r1133] msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static.vcproj:
build bufferfont/bufferglyph stuff on windows too
2008-05-21 00:39 dtremenak
* [r1132] src/FTFont/FTFontGlue.cpp:
quell warning
2008-05-20 23:49 sammy
* [r1131] src/FTBuffer.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h, src/FTGL/FTBuffer.h,
src/FTGL/FTBufferGlyph.h, src/FTGlyph/FTBufferGlyph.cpp,
src/FTGlyph/FTBufferGlyphImpl.h, src/FTGlyph/FTGlyphGlue.cpp:
* First try at the FTBufferFont/FTBufferGlyph implementation.
2008-05-20 23:48 sammy
* [r1130] src/FTGlyph/FTTextureGlyph.cpp,
src/FTGlyph/FTTextureGlyphImpl.h:
* Rename FTTextureGlyphImpl::pos to FTTextureGlyphImpl::corner
because pos
was misleading.
2008-05-19 15:45 sammy
* [r1129] src/FTBuffer.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h, src/FTFont/FTFontGlue.cpp,
src/FTGL/FTBuffer.h, src/FTGL/FTBufferFont.h,
src/FTGL/FTBufferGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/ftgl.h, src/FTGlyph/FTBufferGlyph.cpp,
src/FTGlyph/FTBufferGlyphImpl.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTInternals.h, src/Makefile.am:
* Starting the buffer font class revival. For now, it just
consists in empty
FTBuffer, FTBufferGlyph and FTBufferFont classes.
2008-05-19 10:06 sammy
* [r1128] src/FTCharmap.cpp:
* Do not crash if the face has no charmaps. Bug found using zzuf:
xvfb-run zzuf -q -F5 -r0.0000001:0.1 -s0:10000 -c CTest
EunjinNakseo.ttf
2008-05-19 10:06 sammy
* [r1127] src/FTVectoriser.cpp:
* Simplified contour parity check routine, formula courtesy of
Guillaume
Bittoun.
2008-05-19 10:06 sammy
* [r1126] src/FTContour.cpp:
* Add parentheses around && within || to please gcc.
2008-05-19 10:05 sammy
* [r1125] Makefile.am:
* Add a "make upload-doc" rule for easy online documentation
updates.
2008-05-12 14:25 sammy
* [r1124] m4/font.m4:
* Use fontconfig to find fonts on the system.
2008-05-12 14:11 sammy
* [r1123] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/c-demo.c,
demo/simple.cpp:
* The examples now use FONT_FILE if it was found by the configure
step.
2008-05-12 14:10 sammy
* [r1122] configure.ac, m4/font.m4:
* Add an m4 check to look for a font file on the system.
2008-05-12 04:59 brlcad
* [r1121] docs/Makefile.am, docs/projects_using_ftgl.txt:
add a list of project using ftgl
2008-05-11 21:43 sammy
* [r1120] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTLayoutGlue.cpp:
* Simplify the C bindings. 70 lines gained.
2008-05-11 21:43 sammy
* [r1119] src/FTGL/FTSimpleLayout.h, src/FTLayout/FTLayoutGlue.cpp,
src/FTLayout/FTSimpleLayout.cpp:
* Get rid of FTSimpleLayout::RenderSpace(). It's still useful in
FTSimpleLayoutImpl, but as a public method FTFont::Render() is
just
as powerful.
2008-05-11 21:43 sammy
* [r1118] demo/FTGLDemo.cpp, src/FTGL/FTFont.h,
src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h,
src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h:
* Added optional position and string length to the Layout
methods.
2008-05-11 11:29 sammy
* [r1117] src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h,
src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h,
src/FTLayout/FTSimpleLayout.cpp:
* Get rid of all methods in FTLayoutImpl that were accessing
FTFontImpl
internals, since FTFont now has all the proper public methods for
that.
2008-05-11 11:29 sammy
* [r1116] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h,
src/FTLayout/FTLayout.cpp:
* Get rid of FTFontImpl::DoRender(), one of the oldest TODOs.
2008-05-11 11:28 sammy
* [r1115] src/FTGL/FTFont.h:
* Re-add FTFont::BBox() implementations with the old prototype,
in case
old projects use them.
2008-05-11 11:28 sammy
* [r1114] src/FTGlyph/FTExtrudeGlyph.cpp,
src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTPolygonGlyph.cpp:
* Honour the pen's Z coordinate when rendering glyphs (except the
raster
ones, where the Z coordinate makes no sense).
2008-05-11 11:28 sammy
* [r1113] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBitmapFontImpl.h,
src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTFont.cpp,
src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h,
src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h,
src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h,
src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h,
src/FTGL/FTFont.h, src/FTGlyphContainer.cpp,
src/FTGlyphContainer.h, src/FTLayout/FTSimpleLayout.cpp,
test/FTFont-Test.cpp, test/FTGlyphContainer-Test.cpp:
* FTFont::Advance(), FTFont::Render() and FTFont::BBox() are now
far
more powerful, allowing for substring display and extra spacing
between
characters.
2008-05-11 11:26 sammy
* [r1112] src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp,
src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTTextureFont.cpp,
src/FTFont/FTTextureFontImpl.h, src/FTGL/FTFont.h,
src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h, src/FTGL/ftgl.h,
src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h:
* Kill 180 lines of code by removing duplicate *::Render()
functions and
giving a default value to the renderMode parameter.
2008-05-11 11:23 sammy
* [r1111] docs/ftgl.dox:
* More documentation.
2008-05-11 11:23 sammy
* [r1110] .gitignore:
* Ignore autom4te.cache and generated EPS files.
2008-05-09 15:43 brlcad
* [r1109] AUTHORS:
add daniel and jeff
2008-05-09 15:41 brlcad
* [r1108] demo/FTGLDemo.cpp, test/demo.cpp:
reference a font that actually exists.. alas we do not all have a
/Users/henry/Development directory. at least this one will exist
if X11 is installed.
2008-05-09 13:42 sammy
* [r1107] configure.ac, docs/Makefile.am, docs/ftgl.dox,
docs/images/ftgl.png, docs/images/logo.png,
docs/images/rasterfont.png, docs/images/texturefont.png,
docs/images/vectorfont.png:
* Add a few pictures to the documentation to illustrate what the
font
objects look like.
* Generate EPS files at build time if the LaTeX output is
activated.
2008-05-09 10:03 sammy
* [r1106] BUGS:
* Update BUGS.
2008-05-09 10:02 sammy
* [r1105] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTLayoutGlue.cpp:
* Put a few wrapper functions into extern "C++" braces because
they return
references to C++ objects.
2008-05-09 10:01 sammy
* [r1104] src/FTContour.cpp:
* Minor cosmetic fix (remove tab).
2008-05-08 23:45 dtremenak
* [r1103] demo/trackball.c:
use float constants when assigning to floats
2008-05-08 23:31 dtremenak
* [r1102] msvc/config.h:
disable "'this': used in base member initializer list" warning.
although it is dangerous practice, it's valid and ftgl does not
use the passed pointer until well after the object is guaranteed
to be fully constructed.
2008-05-08 23:27 dtremenak
* [r1101] msvc/vc8/FTGLDemo.vcproj:
quell spurious deprecation warnings
2008-05-08 23:12 dtremenak
* [r1100] src/FTVectoriser.cpp:
and more fun with float/double consistency
2008-05-08 23:12 dtremenak
* [r1099] src/FTContour.cpp:
more fun with size_t consistency
2008-05-08 23:10 dtremenak
* [r1098] msvc/config.h:
M_PI and friends on MSVC are only defined if _USE_MATH_DEFINES is
defined first. include it appropriately in config.h.
2008-05-08 22:35 sammy
* [r1097] demo/c-demo.c, demo/simple.cpp,
src/FTFont/FTFontGlue.cpp, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/FTPolyGlyph.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTInternals.h:
* Implement C bindings for FTGlyph and FTFont subclassing.
* Add subclassing to the simple C demo to show how to do similar
stuff as
in the C++ demo.
2008-05-08 17:07 sammy
* [r1096] BUGS, TODO:
* Update BUGS and TODO now that we got rid of some bugs.
2008-05-08 17:07 sammy
* [r1095] src/FTContour.cpp, src/FTContour.h, src/FTVectoriser.cpp:
* When a glyph is created, check that all its contours have the
proper
clockwise/counterclockwise orientation. This fixes a nasty
display bug
with some badly encoded fonts.
2008-05-08 17:06 sammy
* [r1094] src/FTContour.cpp, src/FTContour.h:
* During contour creation, compute whether the contour is
clockwise or
anti-clockwise. This will be needed later to correct fonts that
do not
abide to the even-odd and non-zero winding number conventions,
thus
breaking our nice outset glyphs.
2008-05-08 17:05 sammy
* [r1093] src/FTGL/FTPoint.h:
* Add scalar product to the FTPoint operators.
2008-05-08 17:04 sammy
* [r1092] src/FTLayout/FTLayoutGlue.cpp:
* Cosmetic fixes in the FTLayout C bindings.
2008-05-08 17:03 sammy
* [r1091] src/FTContour.cpp:
* Small optimisation in FTContour::ComputeOutsetPoint().
2008-05-08 17:01 sammy
* [r1090] src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/FTLayout.h:
* Made most FTFont, FTGlyph and FTLayout function virtual. It's
true that
most of them use private members of the pImpl class and thus are
not
easily replaced, but intercepting the information may be useful
in
subclassing, too.
2008-05-07 16:10 sammy
* [r1089] src/FTFace.cpp, src/FTFace.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h,
src/FTGlyphContainer.cpp:
* Some code cleanup here and there, mostly in FTGlyphContainer.
2008-05-07 15:09 sammy
* [r1088] test/FTFont-Test.cpp, test/FTGlyph-Test.cpp,
test/FTGlyphContainer-Test.cpp, test/FTlayout-Test.cpp,
test/Makefile.am:
* Fixed and reactivated unit tests that were disabled during the
pImpl
refactoring.
2008-05-07 15:07 sammy
* [r1087] src/FTGL/FTBBox.h, src/FTGL/FTFont.h:
* Documentation updates.
2008-05-07 15:06 sammy
* [r1086] src/FTFont/FTFont.cpp, src/FTGL/FTBBox.h,
test/FTBBox-Test.cpp:
* Replace FTBBox::Move() with the += operator, to make it clearer
that the
object is modified in the process.
2008-05-07 15:03 sammy
* [r1085] src/FTFont/FTFont.cpp, src/FTGL/FTBBox.h,
src/FTLayout/FTSimpleLayout.cpp:
* Change the += operator for bounding boxes to |=, which better
represents
what is happening, and avoids future confusion with "FTBBox +
FTPoint"
constructs.
2008-05-07 15:01 sammy
* [r1084] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTGL/FTFont.h, src/FTGL/FTLayout.h,
src/FTGL/FTSimpleLayout.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTLayoutGlue.cpp, src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h:
* Make all BBox functions return an FTBBox object instead of
doing
countless conversions to floats or arrays of floats.
2008-05-07 14:59 sammy
* [r1083] src/FTGL/FTBBox.h:
* Fix FTBBox::SetDepth() behaviour with negative depth values (as
done in
the FTExtrudeGlyph class).
2008-05-07 14:58 sammy
* [r1082] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h:
* Reimplement all FTFont::BBox() variants using the same
FTFontImpl::BBox()
common method.
2008-05-07 14:56 sammy
* [r1081] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h,
src/FTGL/FTFont.h:
* Add an overload of FTFont::BBox that returns an FTBBox object.
It will
save us a lot of code later.
2008-05-07 14:55 sammy
* [r1080] src/FTGL/FTBBox.h, src/FTGL/FTPoint.h:
* Allow to create an FTBBox using two FTPoint objects.
* Allow the operands to FTPoint's "+" and "-" operators to be
const.
2008-05-07 07:17 sammy
* [r1079] demo/c-demo.c, demo/simple.cpp:
* In the C++ demo, show that FTFont itself can be directly
derived, not
only its subclasses.
* Minor changes to the C demo to reduce the differences with the
C++ version.
2008-05-07 00:11 sammy
* [r1078] msvc/Makefile.am:
* Synchronise msvc/Makefile.am with its directory contents.
2008-05-06 22:36 dtremenak
* [r1077] msvc/demo.cpp, msvc/vc8/FTGLDemo.vcproj,
msvc/vc8/README_WIN32.txt, msvc/vc8/SimpleDemo.vcproj,
msvc/vc8/ftgl_demo.sln, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj, msvc/vc8/trackball.vcproj:
get rid of the (broken and obsolete) windows-specific demo, and
obsolete VC6 readme (which has been superceded by the global msvc
readme). build the normal and simple demos in visual studio too.
2008-05-06 21:43 dtremenak
* [r1076] msvc/demo.cpp, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj:
make the windows demo build (on vc8 at least)
2008-05-06 21:41 dtremenak
* [r1075] demo/simple.cpp:
on recent MS compilers one must include stdlib.h before glut.h
2008-05-06 21:19 sammy
* [r1074] src/FTContour.cpp:
* Refactor FTContour::ComputeOutsetPoint so that it's twice as
short, even
with the additional comments.
2008-05-06 21:19 sammy
* [r1073] src/FTContour.cpp:
* Make FTContour:FTContour comply with the FreeType specification
and
remove duplicate points in the Bézier curves. Fixes weird
rendering
errors with some fonts.
2008-05-06 21:19 sammy
* [r1072] demo/simple.cpp:
* Minor fixes to the simple demo.
2008-05-06 12:14 sammy
* [r1071] .gitignore, demo, demo/Makefile.am, demo/c-demo.c, docs:
* Create a C demo to show how the C bindings work.
2008-05-06 10:01 sammy
* [r1070] demo/simple.cpp:
* Show how to subclass FTFont classes in the simple demo.
2008-05-06 10:00 sammy
* [r1069] src/FTVectoriser.cpp:
* Fix an unsigned int / size_t mismatch in FTVectoriser.
2008-05-06 08:24 sammy
* [r1068] msvc/Makefile.am, msvc/vc8/Makefile.am:
* Move msvc/Makefile.am back to its proper place.
* Add the new visual studio build files to the distribution.
2008-05-06 07:08 sammy
* [r1067] src/FTCharmap.cpp, src/FTFace.cpp:
* Fix indentation by replacing a few tabs with spaces.
2008-05-06 06:54 dtremenak
* [r1066] src/FTFont/FTFontGlue.cpp:
l != 1, depending on your font of course
2008-05-06 06:38 dtremenak
* [r1065] src/FTCharmap.cpp, src/FTCharmap.h, src/FTContour.h,
src/FTFace.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTFont/FTTextureFont.cpp, src/FTGL/FTPoint.h,
src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTExtrudeGlyph.cpp,
src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTOutlineGlyph.cpp,
src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPolygonGlyph.cpp,
src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyphContainer.cpp,
src/FTLayout/FTSimpleLayout.cpp, src/FTPoint.cpp,
src/FTVectoriser.cpp, src/FTVectoriser.h:
VC build fixes from bzflag revs 17848-17852.
* size_t consistency
* avoid coercing from int to bool
* make casts from double to float explicit rather than implicit,
mostly by way of a few new getter functions in FTPoint, or avoid
if possible.
2008-05-06 06:03 JeffM2501
* [r1064] msvc/README.txt:
mention the joy of the build dir.
2008-05-06 06:02 JeffM2501
* [r1063] msvc/README.txt:
a readme for those that like to read and learn and grow.
2008-05-06 05:51 JeffM2501
* [r1062] msvc/vc8/ftgl_demo.sln, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj:
make the demos build, and pair it down to just one set of build
targets, release and debug
2008-05-06 05:43 JeffM2501
* [r1061] msvc/vc8/ftgl_dll.vcproj:
put our stuff in build not debug
2008-05-06 05:43 JeffM2501
* [r1060] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_static.vcproj:
build a static lib as an option
2008-05-06 05:12 JeffM2501
* [r1059] msvc/vc71, msvc/vc71/ftgl.sln, msvc/vc71/ftgl_dll.vcproj:
start a vc7.1 build
2008-05-06 04:55 JeffM2501
* [r1058] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_dll.vcproj,
msvc/vc8/ftgl_static_lib.vcproj, msvc/vc8/unit_tests.vcproj:
build as a VC8 DLL again
2008-05-06 04:15 JeffM2501
* [r1057] msvc/config.h, msvc/demo.cpp, msvc/vc8/config.h,
msvc/vc8/demo.cpp:
move the config.h and demo file up so they can be shared with all
MSVC builds.
2008-05-06 04:04 brlcad
* [r1056] mac/Libraries:
begone, vile beasties
2008-05-06 04:03 JeffM2501
* [r1055] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj, msvc/vc8/ftgl_dll.vcproj,
msvc/vc8/ftgl_static_lib.vcproj, msvc/vc8/unit_tests.vcproj:
fix busted line endings
2008-05-06 03:59 JeffM2501
* [r1054] msvc/Makefile.am, msvc/README_WIN32.txt, msvc/config.h,
msvc/demo.cpp, msvc/ftgl.sln, msvc/ftgl_demo.vcproj,
msvc/ftgl_demo_2.vcproj, msvc/ftgl_dll.vcproj,
msvc/ftgl_static_lib.vcproj, msvc/unit_tests.vcproj, msvc/vc8,
msvc/vc8/Makefile.am, msvc/vc8/README_WIN32.txt,
msvc/vc8/config.h, msvc/vc8/demo.cpp, msvc/vc8/ftgl.sln,
msvc/vc8/ftgl_demo.vcproj, msvc/vc8/ftgl_demo_2.vcproj,
msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static_lib.vcproj,
msvc/vc8/unit_tests.vcproj:
move 2005 build files to VC8 dir so we can have more then one
windows build system
2008-05-05 22:16 sammy
* [r1053] .gitignore, demo, demo/Makefile.am, demo/simple.cpp:
* The FTGL "simple demo" is no longer simple. Wrote a really
simple one.
2008-05-05 14:55 sammy
* [r1052] src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTFont.cpp,
src/FTFont/FTOutlineFont.cpp, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTPolygonFont.cpp, src/FTFont/FTTextureFont.cpp,
src/FTGL/FTBitmapGlyph.h, src/FTGL/FTExtrdGlyph.h,
src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h,
src/FTGL/FTOutlineGlyph.h, src/FTGL/FTPixmapGlyph.h,
src/FTGL/FTPolyGlyph.h, src/FTGL/FTSimpleLayout.h,
src/FTGL/FTTextureGlyph.h, src/FTGlyph/FTBitmapGlyph.cpp,
src/FTGlyph/FTBitmapGlyphImpl.h, src/FTGlyph/FTExtrudeGlyph.cpp,
src/FTGlyph/FTExtrudeGlyphImpl.h, src/FTGlyph/FTGlyph.cpp,
src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp,
src/FTGlyph/FTOutlineGlyphImpl.h, src/FTGlyph/FTPixmapGlyph.cpp,
src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolygonGlyph.cpp,
src/FTGlyph/FTPolygonGlyphImpl.h, src/FTGlyph/FTTextureGlyph.cpp,
src/FTGlyph/FTTextureGlyphImpl.h, src/FTLayout/FTLayout.cpp,
src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp:
* Refactor FTGlyph, FTFont and FTLayout so that client
applications can
hopefully subclass them.
2008-05-05 14:52 sammy
* [r1051] src/FTFont/FTTextureFont.cpp,
src/FTFont/FTTextureFontImpl.h:
* Rename FTTextureFontImpl::MakeGlyph to
FTTextureFontImpl::MakeGlyphImpl to
avoid confusion.
2008-05-05 14:52 sammy
* [r1050] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h:
* Rename FTFontImpl::base to FTFontImpl::intf.
2008-05-05 13:22 brlcad
* [r1049] src/FTFont/FTFont.cpp:
quell warnings, reorder initializations
2008-05-05 13:14 brlcad
* [r1048] m4/gl.m4:
don't need to check for glu if we have the mac opengl framework
2008-05-04 19:39 sammy
* [r1047] src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp,
src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp,
src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp,
src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp,
src/FTFont/FTTextureFontImpl.h, src/FTGL/FTFont.h,
src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h,
src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h,
src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h:
* Put MakeGlyph back into FT*Font classes instead of FT*FontImpl,
and make
it use as few FT*FontImpl members as possible so that external
application
may actually have a chance to properly subclass us.
2008-05-04 19:38 sammy
* [r1046] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h:
* The FTFont<->FTFontImpl bridge is now complete.
2008-05-04 19:38 sammy
* [r1045] src/FTGL/FTBBox.h, src/FTGL/FTBitmapGlyph.h,
src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h,
src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h,
src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h,
src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h,
src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h,
src/FTGL/FTOutlineGlyph.h, src/FTGL/FTPixmapGlyph.h,
src/FTGL/FTPoint.h, src/FTGL/FTPolyGlyph.h,
src/FTGL/FTSimpleLayout.h, src/FTGL/FTTextureGlyph.h,
src/FTGL/ftgl.h:
* Put my name and Sean's in the public headers so that people
know who to
contact.
2008-05-04 19:38 sammy
* [r1044] src/FTFont/FTFont.cpp:
* Cast strings to unsigned char * before handling them to our
internal
methods, because the chars may be cast directly to int, causing
crashes
with 8-bit strings.
2008-05-04 16:24 brlcad
* [r1043] Makefile.am, configure.ac, m4/pkg.m4:
revert the r1027 changes related to PKG_CHECK_MODULES. provide
the macro via the pkg.m4 script but still don't abort if it's not
found.
2008-05-04 06:23 brlcad
* [r1042] src/FTGL/ftgl.h:
quell compilation warnings about the last enum having a comma
2008-05-04 06:04 brlcad
* [r1041] Makefile.am, cleanup:
remove the silly one-liner cleanup script that just removes
Finder files
2008-05-04 05:45 brlcad
* [r1040] configure.ac:
sort makefiles for easier comparison
2008-05-04 05:04 brlcad
* [r1039] Makefile.am:
include the changelog
2008-05-04 04:55 brlcad
* [r1038] ChangeLog:
initial changelog through today created via svn2cl.sh -i -a
2008-05-04 04:50 brlcad
* [r1037] NEWS:
credit self for the precomputed glyph and kerning tables that
gave a nice performance boost to the font rendering (at a mild
expense of 64k memory per font face)
2008-05-04 04:46 brlcad
* [r1036] NEWS:
annotate that sam fixed many bugs related to memory corruption,
leaks, and prevented/fixed more than a handful of bugs through
inspection and valgrinding
2008-05-04 04:35 brlcad
* [r1035] Makefile.am:
print an informative summary
2008-05-04 04:31 brlcad
* [r1034] configure.ac:
have to add the default include dir path to the CPPFLAGS so we
can find the headers
2008-05-04 04:29 brlcad
* [r1033] m4/glut.m4:
GLUT framework needs the OpenGL framework, use the same Xlinker
hack for libtool
2008-05-04 03:59 brlcad
* [r1032] configure.ac:
add an output summary
2008-05-04 03:55 brlcad
* [r1031] m4/gl.m4:
test with LIBS instead of LDFLAGS but don't persist since that's
done later
2008-05-04 03:13 brlcad
* [r1030] m4/gl.m4, m4/glut.m4:
fix the gl/glut tests so that they also work on mac os x where
libraries are specified through frameworks instead of libs.
libtool 1.5 and earlier are unfortunately have busted behavior
with -no-undefined libraries as it strips off unrecognized
options, hence the use of -Xlinker
2008-05-04 02:58 brlcad
* [r1029] src/FTFont/FTTextureFont.cpp, src/FTLayout/FTLayout.cpp:
refer to local/private headers with local path inclusion,
otherwise the search include paths are wrong
2008-05-04 02:57 brlcad
* [r1028] src/Makefile.am:
list the libs as libs instead of flags so they get passed through
as dependencies in the libtool archive
2008-05-03 23:40 brlcad
* [r1027] configure.ac:
use AC_PATH_PROG instead of PKG_CHECK_MODULES to keep the
versions to a minimum
2008-05-03 17:21 brlcad
* [r1026] m4/gl.m4:
have to quote the AC_MSG_ERROR else the exit code is screwed up
2008-05-02 14:52 sammy
* [r1025] src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h:
* Add a virtual destructor to FTLayoutImpl to make sure derived
classes
have their destructors called.
* Make all FTLayoutImpl members protected. Only its derived
classes and
FTLayout need to access them.
2008-05-02 13:28 sammy
* [r1024] docs/Makefile.am:
* Fix inconsistencies in the documentation install paths.
2008-05-02 13:27 sammy
* [r1023] src/FTLayout/FTLayoutGlue.cpp:
* Add an implicit cast to FTGL::TextAlignment in the
FTLayout::SetAlignment
C wrapper.
2008-05-02 13:18 sammy
* [r1022] src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h,
src/FTLayout/FTLayoutGlue.cpp:
* Started documenting the FTLayout C bindings.
2008-05-02 13:17 sammy
* [r1021] .gitignore, configure.ac, docs/Makefile.am,
docs/doxygen.cfg.in:
* Generate PDF documentation if a proper LaTeX installation can
be found.
2008-05-02 12:45 sammy
* [r1020] docs/Makefile.am, docs/ftgl.dox, docs/images/ftgl.png,
docs/images/ftgldemo.jpg, src/FTGlyph/FTTextureGlyph.cpp:
* Use a smaller logo on the User Guide's front page.
2008-05-02 12:43 sammy
* [r1019] src/FTFont/FTFontGlue.cpp, src/FTGL/FTBitmapGlyph.h,
src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/FTLayout.h, src/FTGL/FTOutlineGlyph.h,
src/FTGL/FTPixmapGlyph.h, src/FTGL/FTPolyGlyph.h,
src/FTGL/FTTextureGlyph.h, src/FTGL/ftgl.h,
src/FTGlyph/FTGlyphGlue.cpp:
* Document the C bindings for FTGlyph.
2008-05-02 12:43 sammy
* [r1018] src/FTGlyph/FTGlyphGlue.cpp:
* Fix a potential memory leak in the FTGlyph C bindings error
handler.
2008-05-02 09:58 sammy
* [r1017] docs/FTGL.html, docs/Makefile.am, docs/doxygen.cfg.in,
docs/ftgl.dox:
* Converted the HTML documentation to Doxygen so that everything
ends up
in the same document. Plus, Doxygen's C++ pretty-printer is very
nice for
code examples.
2008-05-02 09:17 sammy
* [r1016] ftgl.pc.in:
* Fixes and enhancements to ftgl.pc:
+ Add -I${includedir}/FTGL to Cflags because we want to support
legacy
application that still #include <FTGLBitmapFont.h>.
+ Remove @GL_CFLAGS@ from Cflags because our public headers do
not use
GL headers.
+ Add freetype2 to Requires.private since it ships its own .pc
file. Not
using Requires because freetype2 is only really needed for
statically
linking. Getting rid of @FT2_CFLAGS@ and @FT2_LIBS@ at the same
time.
2008-05-02 09:16 sammy
* [r1015] docs/doxygen.cfg.in:
* Activate macro expansion in Doxygen to hide useless macros such
as
FTGL_EXPORT in the documentation.
2008-05-02 09:15 sammy
* [r1014] src/FTFont/FTFontGlue.cpp, src/FTGL/FTFont.h,
src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h,
src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h,
src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h,
test/CTest.c:
* Change a few function names in the FTFont C bindings to avoid
confusion
with other classes.
* Document the C bindings. Since it's almost copypasta from the
C++
documentation, I put the constructors back in their original
files.
2008-05-02 09:13 sammy
* [r1013] src/FTGL/ftgl.h:
* Add RENDER_ALL to the enum used in Font::Render() so that
client
applications need not worry about future extensions.
2008-05-02 07:21 sammy
* [r1012] src/FTGlyph/FTExtrudeGlyph.cpp:
* Fix a memory leak in ~FTExtrudeGlyph: only one of the three
display lists
was being freed.
2008-05-02 07:21 sammy
* [r1011] test/CTest.c, test/FTBitmapFont-Test.cpp,
test/FTExtrudeFont-Test.cpp, test/FTOutlineFont-Test.cpp,
test/FTPixmapFont-Test.cpp, test/FTPolygonFont-Test.cpp,
test/FTTextureFont-Test.cpp:
* Fix memory leaks in the font tests due to temporary variables
not being
deleted.
* Add a few method calls to the C test program.
2008-05-02 07:21 sammy
* [r1010] src/FTGL/FTPoint.h:
* Fix brown-paper-bag bug in the vector product computation: the
indices
were completely messed up. Thanks to valgrind for spotting it for
me.
2008-05-02 07:20 sammy
* [r1009] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTLayoutGlue.cpp:
* Fix a small memory leak in the C bindings destructors.
2008-05-02 04:17 brlcad
* [r1008] mac/FTGL.pbproj:
remove the obsolete 10.3 project builder project for mac, it's
now pretty far out of date and is without maintainer
2008-05-02 03:52 brlcad
* [r1007] AUTHORS:
add a utf-8 coding line for emacs, attribute full name with
e-mail
2008-05-02 03:45 brlcad
* [r1006] .:
don't ignore COPYING now that there is one
2008-05-01 19:31 sammy
* [r1005] src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/FTLayout.h:
* Make our base classes' destructors public. We want to prevent
accidental
instantiation, but direct destruction is perfectly legal.
2008-05-01 18:46 sammy
* [r1004] src/FTFace.cpp:
* Proper FTFace member initialisation to prevent destructor-time
crashes.
2008-05-01 18:33 sammy
* [r1003] src/FTCharmap.cpp, src/FTCharmap.h, src/FTFace.cpp,
src/FTFace.h:
* Optimise FTFace::KernAdvance() so that kerning for font indices
< 128 is
precomputed during FTFace() instantiation to avoid calling
FT_Get_Kerning()
too often. Patch by Sean Morrison, taken from bzflag commit
r14652,
reworked for safety and performance by me.
2008-05-01 18:31 sammy
* [r1002] src/FTCharmap.cpp, src/FTCharmap.h:
* Optimize FTCharmap::FontIndex() so that font indices < 128 are
precomputed
during FTCharmap() instantiation to avoid repeated
tt_cmap4_char_index()
calls. Performance patch by Sean Morrison, taken from bzflag
commit r14644.
2008-05-01 18:30 sammy
* [r1001] src/FTFont/FTTextureFont.cpp:
* Avoid crashing when the texture size is so small that its
integer size
becomes zero. At the same time, round many floats instead of
simply
flooring them to int. First part by Sean Morrison from bzflag
commit
r14590.
2008-05-01 14:19 sammy
* [r1000] AUTHORS, src/FTFont/FTTextureFont.cpp:
* Patches by Sean Morrison, from BzFlag commits r15755 and
r14843:
+ Only delete textures if there is at least one of them.
+ Ensure that the FTTextureFont data members get set for all
cases.
* Added Sean to the AUTHORS file.
2008-05-01 13:42 sammy
* [r999] src/FTFont/FTFont.cpp, src/FTFont/FTTextureFont.cpp,
src/FTGL/FTBBox.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTSimpleLayout.cpp, test/FTBBox-Test.cpp:
* Store FTPoints in the BBox object instead of floats. This was a
todo
from Henry.
2008-05-01 12:05 sammy
* [r998] docs/Makefile.am, docs/images/metrics.png,
docs/images/metrics.svg:
* Remade metrics.png using Inkscape.
2008-05-01 10:54 sammy
* [r997] src/FTGL/FTPoint.h, src/FTGlyph/FTExtrudeGlyph.cpp,
src/FTPoint.cpp:
* Inline most FTPoint methods and operators. This will probably
make the
code smaller instead of bigger, because most of what they do will
be
optimised out by the compiler.
* Get rid of the weird GetNormal() method and reimplement it
using the ^
operator (vector product) and Normalise() method instead.
2008-05-01 10:04 sammy
* [r996] .gitignore, docs, src/FTGL/FTFont.h,
src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h,
src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h,
src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h,
src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h, src/FTGL/FTPoint.h,
src/FTGL/FTSimpleLayout.h, test:
* Moved C constructor bindings to FTFont.h and FTLayout.h so that
they appear in the same file in the generated documentation.
* Various minor documentation updates.
2008-05-01 09:45 sammy
* [r995] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
test/CXXTest.cpp, test/FTBitmapFont-Test.cpp,
test/FTExtrdGlyph-Test.cpp, test/FTExtrudeFont-Test.cpp,
test/FTExtrudeGlyph-Test.cpp, test/FTGLBitmapFont-Test.cpp,
test/FTGLExtrdFont-Test.cpp, test/FTGLOutlineFont-Test.cpp,
test/FTGLPixmapFont-Test.cpp, test/FTGLPolygonFont-Test.cpp,
test/FTGLTextureFont-Test.cpp, test/FTOutlineFont-Test.cpp,
test/FTPixmapFont-Test.cpp, test/FTPolyGlyph-Test.cpp,
test/FTPolygonFont-Test.cpp, test/FTPolygonGlyph-Test.cpp,
test/FTTextureFont-Test.cpp, test/Makefile.am, test/TestMain.cpp,
test/demo.cpp:
* Update demos and unit tests so that they use the newly named
types.
2008-05-01 09:31 sammy
* [r994] src/FTContour.h, src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp,
src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontGlue.cpp, src/FTFont/FTGLBitmapFont.cpp,
src/FTFont/FTGLBitmapFontImpl.h, src/FTFont/FTGLExtrdFont.cpp,
src/FTFont/FTGLExtrdFontImpl.h, src/FTFont/FTGLOutlineFont.cpp,
src/FTFont/FTGLOutlineFontImpl.h, src/FTFont/FTGLPixmapFont.cpp,
src/FTFont/FTGLPixmapFontImpl.h, src/FTFont/FTGLPolygonFont.cpp,
src/FTFont/FTGLPolygonFontImpl.h, src/FTFont/FTGLTextureFont.cpp,
src/FTFont/FTGLTextureFontImpl.h, src/FTFont/FTOutlineFont.cpp,
src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp,
src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp,
src/FTFont/FTTextureFontImpl.h, src/FTGL/FTExtrdGlyph.h,
src/FTGL/FTFont.h, src/FTGL/FTGLBitmapFont.h,
src/FTGL/FTGLExtrdFont.h, src/FTGL/FTGLOutlineFont.h,
src/FTGL/FTGLPixmapFont.h, src/FTGL/FTGLPolygonFont.h,
src/FTGL/FTGLTextureFont.h, src/FTGL/FTPolyGlyph.h,
src/FTGlyph/FTExtrdGlyph.cpp, src/FTGlyph/FTExtrdGlyphImpl.h,
src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTExtrudeGlyphImpl.h,
src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTPolyGlyph.cpp,
src/FTGlyph/FTPolyGlyphImpl.h, src/FTGlyph/FTPolygonGlyph.cpp,
src/FTGlyph/FTPolygonGlyphImpl.h,
src/FTGlyph/FTTextureGlyphImpl.h, src/FTVectoriser.h,
src/Makefile.am:
* Mass consistency renaming: the fonts' "FTGL" prefix is dropped
in favour
of "FT" because all other types use only the latter.
* Rename "Extrd" types to "Extrude" because the former doesn't
really make
much sense.
* Added appropriate #defines so that legacy applications still
build.
2008-05-01 07:47 sammy
* [r993] docs/doxygen.cfg.in:
* Predefine __cplusplus in the Doxygen config file so that the
whole
headers are parsed.
2008-05-01 07:37 sammy
* [r992] configure.ac, docs/Makefile.am, docs/doxygen.cfg.in,
docs/ftgl_dox:
* Generate the Doxygen configuration file at configure time so
that we
don't need to hardcode the package version in it.
* Only generate documentation for the public classes.
2008-04-30 19:59 sammy
* [r991] docs/Makefile.am, docs/ftgl_dox, docs/html.tar.gz:
* Remove deprecated html.tar.gz tarball. We may ship one later,
but right
now it is unusable.
* Update Doxygen config file so that it sees our new header
locations.
2008-04-30 16:35 sammy
* [r990] src/FTCharToGlyphIndexMap.h, src/FTCharmap.h,
src/FTContour.h, src/FTFace.h, src/FTGlyphContainer.h,
src/FTLibrary.h, src/FTList.h, src/FTSize.h, src/FTVector.h,
src/FTVectoriser.h:
* Remove FTGL_EXPORT specification from classes that are not
actually
exported.
2008-04-30 16:27 sammy
* [r989] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
demo/Makefile.am, include, src/FTCharToGlyphIndexMap.h,
src/FTCharmap.h, src/FTContour.h, src/FTFace.h,
src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h,
src/FTFont/FTGLBitmapFont.cpp, src/FTFont/FTGLBitmapFontImpl.h,
src/FTFont/FTGLExtrdFont.cpp, src/FTFont/FTGLExtrdFontImpl.h,
src/FTFont/FTGLOutlineFont.cpp, src/FTFont/FTGLOutlineFontImpl.h,
src/FTFont/FTGLPixmapFont.cpp, src/FTFont/FTGLPixmapFontImpl.h,
src/FTFont/FTGLPolygonFont.cpp, src/FTFont/FTGLPolygonFontImpl.h,
src/FTFont/FTGLTextureFont.cpp, src/FTFont/FTGLTextureFontImpl.h,
src/FTGL, src/FTGL/FTBBox.h, src/FTGL/FTBitmapGlyph.h,
src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h,
src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h,
src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h,
src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h,
src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h,
src/FTGL/FTOutlineGlyph.h, src/FTGL/FTPixmapGlyph.h,
src/FTGL/FTPoint.h, src/FTGL/FTPolyGlyph.h,
src/FTGL/FTSimpleLayout.h, src/FTGL/FTTextureGlyph.h,
src/FTGL/ftgl.h, src/FTGlyph/FTBitmapGlyph.cpp,
src/FTGlyph/FTBitmapGlyphImpl.h, src/FTGlyph/FTExtrdGlyph.cpp,
src/FTGlyph/FTExtrdGlyphImpl.h, src/FTGlyph/FTGlyph.cpp,
src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTGlyphImpl.h,
src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTOutlineGlyphImpl.h,
src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyphImpl.h,
src/FTGlyph/FTPolyGlyph.cpp, src/FTGlyph/FTPolyGlyphImpl.h,
src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyphImpl.h,
src/FTGlyphContainer.cpp, src/FTGlyphContainer.h,
src/FTInternals.h, src/FTLayout/FTLayout.cpp,
src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h, src/FTLibrary.h, src/FTList.h,
src/FTPoint.cpp, src/FTSize.h, src/FTVector.h,
src/FTVectoriser.h, src/Makefile.am, test/CTest.c,
test/FTBBox-Test.cpp, test/FTBitmapGlyph-Test.cpp,
test/FTExtrdGlyph-Test.cpp, test/FTFont-Test.cpp,
test/FTGLBitmapFont-Test.cpp, test/FTGLExtrdFont-Test.cpp,
test/FTGLOutlineFont-Test.cpp, test/FTGLPixmapFont-Test.cpp,
test/FTGLPolygonFont-Test.cpp, test/FTGLTextureFont-Test.cpp,
test/FTGlyph-Test.cpp, test/FTOutlineGlyph-Test.cpp,
test/FTPixmapGlyph-Test.cpp, test/FTPoint-Test.cpp,
test/FTPolyGlyph-Test.cpp, test/FTTextureGlyph-Test.cpp,
test/Makefile.am:
* Move include/* to src/FTGL/* so the files in there can directly
be
referred to as "FTGL/*.h". This is convenient because they will
be
installed in a similar location.
* Put a warning in each legacy public header to advise users to
only include
the generic <FTGL/ftgl.h> header instead.
2008-04-30 14:10 sammy
* [r988] src/FTFont/FTFontGlue.cpp, src/FTLayout/FTLayoutGlue.cpp:
* Improve constructor code in the FTFont and FTLayout C bindings.
Shorter
(40 lines) and more consistend code.
2008-04-30 14:07 sammy
* [r987] src/Makefile.am:
* Fix Makefile to add missing header files in "make dist".
2008-04-30 14:02 sammy
* [r986] include/FTLayout.h, src/FTLayout/FTLayout.cpp,
src/FTLayout/FTLayoutImpl.h:
* Implement FTLayout::Error(). Nothing uses it yet and it's
always zero,
but it may come in handy later and we want a stable API.
2008-04-29 23:08 sammy
* [r985] .gitignore, configure.ac, test, test/CTest.c,
test/Makefile.am:
* Small C test program. It does not do anything yet, but it's
already a good
thing to know whether all public headers can be #included from C
code.
2008-04-29 22:59 sammy
* [r984] include/FTBBox.h, include/FTBitmapGlyph.h,
include/FTExtrdGlyph.h, include/FTGlyph.h, include/FTLayout.h,
include/FTOutlineGlyph.h, include/FTPixmapGlyph.h,
include/FTPoint.h, include/FTPolyGlyph.h,
include/FTSimpleLayout.h, include/FTTextureGlyph.h,
include/ftgl.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTInternals.h:
* Wrote C bindings for the FTGlyph class.
2008-04-29 21:35 sammy
* [r983] TODO, include/FTBBox.h, include/FTBitmapGlyph.h,
include/FTExtrdGlyph.h, include/FTGlyph.h,
include/FTOutlineGlyph.h, include/FTPixmapGlyph.h,
include/FTPoint.h, include/FTPolyGlyph.h,
include/FTTextureGlyph.h, include/ftgl.h, src/FTBBox.h,
src/FTFont/FTGLTextureFont.cpp, src/FTGlyph/FTBitmapGlyph.cpp,
src/FTGlyph/FTBitmapGlyph.h, src/FTGlyph/FTBitmapGlyphImpl.h,
src/FTGlyph/FTExtrdGlyph.cpp, src/FTGlyph/FTExtrdGlyph.h,
src/FTGlyph/FTExtrdGlyphImpl.h, src/FTGlyph/FTGlyph.cpp,
src/FTGlyph/FTGlyph.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp,
src/FTGlyph/FTOutlineGlyph.h, src/FTGlyph/FTOutlineGlyphImpl.h,
src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyph.h,
src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolyGlyph.cpp,
src/FTGlyph/FTPolyGlyph.h, src/FTGlyph/FTPolyGlyphImpl.h,
src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyph.h,
src/FTGlyph/FTTextureGlyphImpl.h, src/FTLayout/FTLayout.cpp,
src/FTPoint.cpp, src/FTPoint.h, src/Makefile.am,
test/FTBBox-Test.cpp, test/FTPoint-Test.cpp, test/Makefile.am:
* End of the pImpl refactoring task started in [972]. FTGlyph was
the last
class needing the change. As a consequence, FTGlyph is now also
exported
in the library API, and so are FTBBox and FTPoint.
2008-04-29 20:42 sammy
* [r982] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, src/FTFont/FTFont.cpp,
src/FTFont/FTGLBitmapFont.cpp, src/FTFont/FTGLExtrdFont.cpp,
src/FTFont/FTGLOutlineFont.cpp, src/FTFont/FTGLPixmapFont.cpp,
src/FTFont/FTGLPolygonFont.cpp, src/FTFont/FTGLTextureFont.cpp:
* Simplified FTFont's constructor. Since the class is kind of
abstract,
there is no need to export the constructor interface: only
derived classes
need to advertise how they are instantiated.
2008-04-29 17:11 sammy
* [r981] configure.ac, src/FTBitmapGlyph.cpp, src/FTBitmapGlyph.h,
src/FTExtrdGlyph.cpp, src/FTExtrdGlyph.h, src/FTFont,
src/FTFont.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTFont/FTFontImpl.h, src/FTFont/FTGLBitmapFont.cpp,
src/FTFont/FTGLBitmapFontImpl.h, src/FTFont/FTGLExtrdFont.cpp,
src/FTFont/FTGLExtrdFontImpl.h, src/FTFont/FTGLOutlineFont.cpp,
src/FTFont/FTGLOutlineFontImpl.h, src/FTFont/FTGLPixmapFont.cpp,
src/FTFont/FTGLPixmapFontImpl.h, src/FTFont/FTGLPolygonFont.cpp,
src/FTFont/FTGLPolygonFontImpl.h, src/FTFont/FTGLTextureFont.cpp,
src/FTFont/FTGLTextureFontImpl.h, src/FTFontGlue.cpp,
src/FTFontImpl.h, src/FTGLBitmapFont.cpp,
src/FTGLBitmapFontImpl.h, src/FTGLExtrdFont.cpp,
src/FTGLExtrdFontImpl.h, src/FTGLOutlineFont.cpp,
src/FTGLOutlineFontImpl.h, src/FTGLPixmapFont.cpp,
src/FTGLPixmapFontImpl.h, src/FTGLPolygonFont.cpp,
src/FTGLPolygonFontImpl.h, src/FTGLTextureFont.cpp,
src/FTGLTextureFontImpl.h, src/FTGlyph, src/FTGlyph.cpp,
src/FTGlyph.h, src/FTGlyph/FTBitmapGlyph.cpp,
src/FTGlyph/FTBitmapGlyph.h, src/FTGlyph/FTExtrdGlyph.cpp,
src/FTGlyph/FTExtrdGlyph.h, src/FTGlyph/FTGlyph.cpp,
src/FTGlyph/FTGlyph.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTOutlineGlyph.h,
src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyph.h,
src/FTGlyph/FTPolyGlyph.cpp, src/FTGlyph/FTPolyGlyph.h,
src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyph.h,
src/FTGlyphGlue.cpp, src/FTLayout, src/FTLayout.cpp,
src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutGlue.cpp,
src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h, src/FTLayoutGlue.cpp,
src/FTLayoutImpl.h, src/FTOutlineGlyph.cpp, src/FTOutlineGlyph.h,
src/FTPixmapGlyph.cpp, src/FTPixmapGlyph.h, src/FTPolyGlyph.cpp,
src/FTPolyGlyph.h, src/FTSimpleLayout.cpp,
src/FTSimpleLayoutImpl.h, src/FTTextureGlyph.cpp,
src/FTTextureGlyph.h, src/Makefile.am, test/Makefile.am:
* Move FTGlyph, FTFont and FTLayout classes and their derivatives
into
separate subdirectories of src/ to avoid cluttering src/ with too
many
files. The Visual Studio solution still needs an update.
2008-04-29 16:47 sammy
* [r980] include/FTFont.h, include/FTLayout.h, include/ftgl.h,
src/FTFont.cpp, src/FTFontGlue.cpp, src/FTFontImpl.h,
src/FTGLBitmapFont.cpp, src/FTGLBitmapFontImpl.h,
src/FTGLExtrdFont.cpp, src/FTGLExtrdFontImpl.h,
src/FTGLOutlineFont.cpp, src/FTGLOutlineFontImpl.h,
src/FTGLPixmapFont.cpp, src/FTGLPixmapFontImpl.h,
src/FTGLPolygonFont.cpp, src/FTGLPolygonFontImpl.h,
src/FTGLTextureFont.cpp, src/FTGLTextureFontImpl.h,
src/FTInternals.h, src/FTLayout.cpp, src/FTSimpleLayout.cpp,
src/FTSimpleLayoutImpl.h:
* More cleanup following the private pointer refactoring:
+ Removed private type enums from the public ftgl.h header.
+ Protected all private implementation ctors and dtors.
+ Prevent accidental initialisation of the base classes by
protecting
their constructors. Derived classes can still be properly
instantiated.
2008-04-29 15:44 sammy
* [r979] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, include/FTLayout.h,
include/FTSimpleLayout.h, include/ftgl.h, src/FTFont.cpp,
src/FTFontGlue.cpp, src/FTGLBitmapFont.cpp,
src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlue.cpp, src/FTGlyphGlue.cpp,
src/FTInternals.h, src/FTLayoutGlue.cpp, src/FTSimpleLayout.cpp,
src/Makefile.am:
* Clean up the C bindings by splitting FTGlue.cpp into
FTLayoutGlue.cpp,
FTGlyphGlue.cpp (unused yet) and FTFontGlue.cpp. C methods
previously
scattered all around are now located in one of these 3 files.
* Hide extern "C" and namespace C constructs in a single
FTGL_BEGIN_C_DECLS
macro.
* Use namespace FTGL all around instead of a mix of C and FTGL
namespaces.
2008-04-29 14:57 sammy
* [r978] include/FTLayout.h, src/FTGlue.cpp:
* Fix the ftglLayoutRenderSpace C binding's prototype, which
wasn't in sync
with its implementation in FTGlue.cpp.
2008-04-29 14:39 sammy
* [r977] COPYING, COPYING.LGPL, COPYING.MIT, Makefile.am,
demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, include/FTFont.h,
include/FTGLBitmapFont.h, include/FTGLExtrdFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTGLTextureFont.h,
include/FTLayout.h, include/FTSimpleLayout.h, include/ftgl.h,
src/FTBBox.h, src/FTBitmapGlyph.cpp, src/FTBitmapGlyph.h,
src/FTCharToGlyphIndexMap.h, src/FTCharmap.cpp, src/FTCharmap.h,
src/FTContour.cpp, src/FTContour.h, src/FTExtrdGlyph.cpp,
src/FTExtrdGlyph.h, src/FTFace.cpp, src/FTFace.h, src/FTFont.cpp,
src/FTFontImpl.h, src/FTGLBitmapFont.cpp,
src/FTGLBitmapFontImpl.h, src/FTGLExtrdFont.cpp,
src/FTGLExtrdFontImpl.h, src/FTGLOutlineFont.cpp,
src/FTGLOutlineFontImpl.h, src/FTGLPixmapFont.cpp,
src/FTGLPixmapFontImpl.h, src/FTGLPolygonFont.cpp,
src/FTGLPolygonFontImpl.h, src/FTGLTextureFont.cpp,
src/FTGLTextureFontImpl.h, src/FTGlue.cpp, src/FTGlyph.cpp,
src/FTGlyph.h, src/FTGlyphContainer.cpp, src/FTGlyphContainer.h,
src/FTInternals.h, src/FTLayout.cpp, src/FTLayoutImpl.h,
src/FTLibrary.cpp, src/FTLibrary.h, src/FTList.h,
src/FTOutlineGlyph.cpp, src/FTOutlineGlyph.h,
src/FTPixmapGlyph.cpp, src/FTPixmapGlyph.h, src/FTPoint.cpp,
src/FTPoint.h, src/FTPolyGlyph.cpp, src/FTPolyGlyph.h,
src/FTSimpleLayout.cpp, src/FTSimpleLayoutImpl.h, src/FTSize.cpp,
src/FTSize.h, src/FTTextureGlyph.cpp, src/FTTextureGlyph.h,
src/FTVector.h, src/FTVectoriser.cpp, src/FTVectoriser.h,
test/Fontdefs.h:
* Since the MIT license is LGPL-compatible, there is no real
point in
shipping FTGL under a dual license. Consequently removing LGPL
references
from the code, in agreement with Sean.
2008-04-29 11:30 sammy
* [r976] include/FTGLBufferFont.h, src/FTBufferGlyph.cpp,
src/FTBufferGlyph.h, src/FTGLBufferFont.cpp,
src/FTGLBufferFontImpl.h:
* Remove dead code: FTGLBufferFont and FTBufferGlyph are the same
as
FTGLPixmapFont and FTPixmapGLyph, except the latter are actually
used
and do work.
2008-04-29 11:18 sammy
* [r975] include/FTGLBitmapFont.h, src/FTGLBitmapFont.cpp:
* Remove useless overriden methods in FTGLBitmapFont that
reimplemented
the same thing as in FTFont.
2008-04-29 06:44 sammy
* [r974] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
include/FTBBox.h, include/FTBitmapGlyph.h,
include/FTBufferGlyph.h, include/FTCharToGlyphIndexMap.h,
include/FTCharmap.h, include/FTContour.h, include/FTExtrdGlyph.h,
include/FTFace.h, include/FTFont.h, include/FTGL.h,
include/FTGLBitmapFont.h, include/FTGLBufferFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, include/FTGlyph.h,
include/FTGlyphContainer.h, include/FTInternals.h,
include/FTLayout.h, include/FTLibrary.h, include/FTList.h,
include/FTOutlineGlyph.h, include/FTPixmapGlyph.h,
include/FTPoint.h, include/FTPolyGlyph.h,
include/FTSimpleLayout.h, include/FTSize.h,
include/FTTextureGlyph.h, include/FTVector.h,
include/FTVectoriser.h, include/ftgl.h, src/FTBBox.h,
src/FTBitmapGlyph.cpp, src/FTBitmapGlyph.h, src/FTBufferGlyph.h,
src/FTCharToGlyphIndexMap.h, src/FTCharmap.h, src/FTContour.h,
src/FTExtrdGlyph.cpp, src/FTExtrdGlyph.h, src/FTFace.h,
src/FTFont.cpp, src/FTFontImpl.h, src/FTGLBitmapFont.cpp,
src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlue.cpp, src/FTGlyph.h,
src/FTGlyphContainer.h, src/FTInternals.h, src/FTLibrary.h,
src/FTList.h, src/FTOutlineGlyph.cpp, src/FTOutlineGlyph.h,
src/FTPixmapGlyph.cpp, src/FTPixmapGlyph.h, src/FTPoint.h,
src/FTPolyGlyph.cpp, src/FTPolyGlyph.h, src/FTSimpleLayout.cpp,
src/FTSize.h, src/FTTextureGlyph.cpp, src/FTTextureGlyph.h,
src/FTVector.h, src/FTVectoriser.cpp, src/FTVectoriser.h,
src/Makefile.am, test/FTBitmapGlyph-Test.cpp,
test/FTExtrdGlyph-Test.cpp, test/FTGLBitmapFont-Test.cpp,
test/FTGLExtrdFont-Test.cpp, test/FTGLOutlineFont-Test.cpp,
test/FTGLPixmapFont-Test.cpp, test/FTGLPolygonFont-Test.cpp,
test/FTGLTextureFont-Test.cpp, test/FTMesh-Test.cpp,
test/FTOutlineGlyph-Test.cpp, test/FTPixmapGlyph-Test.cpp,
test/FTPolyGlyph-Test.cpp, test/FTTesselation-Test.cpp,
test/FTTextureGlyph-Test.cpp, test/FTVectoriser-Test.cpp,
test/Makefile.am:
* Moved header files that are not required by library clients
into src/
so that they do not get installed.
* Created an ftgl.h header that allows clients to #include
<FTGL/ftgl.h> and
be done with it.
2008-04-28 21:48 sammy
* [r973] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLBufferFont.h, include/FTGLExtrdFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTGLTextureFont.h,
include/FTLayout.h, include/FTSimpleLayout.h, src/FTFont.cpp,
src/FTFontImpl.h, src/FTGLBitmapFont.cpp,
src/FTGLBitmapFontImpl.h, src/FTGLBufferFont.cpp,
src/FTGLBufferFontImpl.h, src/FTGLExtrdFont.cpp,
src/FTGLExtrdFontImpl.h, src/FTGLOutlineFont.cpp,
src/FTGLOutlineFontImpl.h, src/FTGLPixmapFont.cpp,
src/FTGLPixmapFontImpl.h, src/FTGLPolygonFont.cpp,
src/FTGLPolygonFontImpl.h, src/FTGLTextureFont.cpp,
src/FTGLTextureFontImpl.h, src/FTLayout.cpp, src/FTLayoutImpl.h,
src/FTSimpleLayout.cpp, src/FTSimpleLayoutImpl.h,
src/Makefile.am:
* Split Font and Layout headers into Foo.h and FooImpl.h, and
taking the
latter out of the include/ directory.
2008-04-28 21:12 sammy
* [r972] include/FTFont.h, include/FTGL.h,
include/FTGLBitmapFont.h, include/FTGLBufferFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, include/FTLayout.h,
include/FTSimpleLayout.h, src/FTBufferGlyph.cpp, src/FTFont.cpp,
src/FTGLBitmapFont.cpp, src/FTGLBufferFont.cpp,
src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlue.cpp, src/FTLayout.cpp,
src/FTSimpleLayout.cpp, test/Makefile.am:
* Beginning of a new refactoring task. Classes inheriting FTFont
or FTLayout
now hide their private members behind a pImpl pointer. This will
make the
public headers smaller, and we will not break the ABI by changing
private
members of our public classes. This first step just splits
classes but
does not reorganise files.
2008-04-28 17:48 brlcad
* [r971] ., Makefile.am, autogen.sh, bootstrap:
replace the bootstrap script with autogen.sh (buildconf project)
with does much (much) more in terms of protections, reporting
options, and error recovery that supports a wide variety of
autotool versions, autoreconf bug workarounds, and system
misconfiguration issues.
2008-04-28 17:31 brlcad
* [r970] Makefile.am, configure.ac, demo/Makefile.am,
docs/Makefile.am, msvc/Makefile.am, src/Makefile.am,
test/Makefile.am:
specify minimum versions, make ac be 2.58 and am be 1.6 (needed
in order to support os x 10.4 out-of-the-box). PKG_CHECK_MODULES
doesn't seem to wrap the args properly so you can't embed
AC_MSG_RESULT, make a zip and bzip2 when we make a dist, and
provide NULL to make am happy
2008-04-28 15:24 sammy
* [r963] include/FTFont.h, include/FTGlyph.h, include/FTLayout.h,
src/FTFont.cpp, src/FTGlyph.cpp, src/FTLayout.cpp,
src/Makefile.am:
* Remove all method implementations from the main FTFont.h,
FTLayout.h and
FTGlyph.h headers. Since they use private members, they belong to
their
respective .cpp files.
2008-04-28 13:11 sammy
* [r962] extras:
* Remove deprecated extras/layout stuff. We now have
FTSimpleLayout anyway.
2008-04-28 11:17 sammy
* [r961] include/FTBBox.h, include/FTBitmapGlyph.h,
include/FTBufferGlyph.h, include/FTCharToGlyphIndexMap.h,
include/FTCharmap.h, include/FTContour.h, include/FTExtrdGlyph.h,
include/FTFace.h, include/FTFont.h, include/FTGL.h,
include/FTGLBitmapFont.h, include/FTGLBufferFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, include/FTGlyph.h,
include/FTGlyphContainer.h, include/FTInternals.h,
include/FTLibrary.h, include/FTList.h, include/FTOutlineGlyph.h,
include/FTPixmapGlyph.h, include/FTSize.h, include/FTVector.h,
include/FTVectoriser.h, src/FTBitmapGlyph.cpp,
src/FTBufferGlyph.cpp, src/FTCharmap.cpp, src/FTContour.cpp,
src/FTFace.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp,
src/FTGLBufferFont.cpp, src/FTGLExtrdFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp,
src/FTGlyph.cpp, src/FTGlyphContainer.cpp, src/FTLibrary.cpp,
src/FTPixmapGlyph.cpp, src/FTPoint.cpp, src/FTSize.cpp,
src/FTVectoriser.cpp, test/FTBBox-Test.cpp,
test/FTBitmapGlyph-Test.cpp, test/FTCharToGlyphIndexMap-Test.cpp,
test/FTCharmap-Test.cpp, test/FTContour-Test.cpp,
test/FTExtrdGlyph-Test.cpp, test/FTFace-Test.cpp,
test/FTFont-Test.cpp, test/FTGLBitmapFont-Test.cpp,
test/FTGLExtrdFont-Test.cpp, test/FTGLOutlineFont-Test.cpp,
test/FTGLPixmapFont-Test.cpp, test/FTGLPolygonFont-Test.cpp,
test/FTGLTextureFont-Test.cpp, test/FTGlyph-Test.cpp,
test/FTGlyphContainer-Test.cpp, test/FTLibrary-Test.cpp,
test/FTList-Test.cpp, test/FTMesh-Test.cpp,
test/FTOutlineGlyph-Test.cpp, test/FTPixmapGlyph-Test.cpp,
test/FTPoint-Test.cpp, test/FTPolyGlyph-Test.cpp,
test/FTSize-Test.cpp, test/FTTesselation-Test.cpp,
test/FTTextureGlyph-Test.cpp, test/FTVector-Test.cpp,
test/FTVectoriser-Test.cpp, test/FTlayout-Test.cpp,
test/Fontdefs.h, test/HPGCalc_afm.cpp, test/HPGCalc_pfb.cpp,
test/TestMain.cpp, test/demo.cpp:
* Cosmetic: remove trailing spaces, fix unbalanced
parenthesis/space
constructs, remove tab/space mixes, wrap a lot of long source
lines.
2008-04-28 09:11 sammy
* [r960] include/FTInternals.h:
* The C constructors now properly return NULL if the C++
constructor failed.
2008-04-28 09:10 sammy
* [r959] src/FTFont.cpp:
* Crash fix: do not try to delete FTFont::glyphList if the
constructor
failed.
2008-04-27 19:55 sammy
* [r958] configure.ac, src/Makefile.am:
* Use libtool' versioning features to call the library
libftgl.2.1.3. This
is not the recommended way to do, but it's nice to synchronise
the
package's version and the library's soname.
2008-04-27 10:22 sammy
* [r957] include/FTSimpleLayout.h, src/FTGlue.cpp:
* Fix erroneous warnings in the C bindings for destructors, by
Eric Beets.
2008-04-27 09:52 sammy
* [r956] demo/FTGLDemo.cpp:
* Various fixes and improvements to the demo, by Eric Beets and
myself.
2008-04-25 12:24 sammy
* [r955] src/FTExtrdGlyph.cpp:
* *sigh*, another bug fix for a problem I introduced in [941].
2008-04-25 12:22 sammy
* [r954] include/FTGL.h, include/FTSimpleLayout.h:
* Use macros instead of enums in the C bindings. Not the most
elegant thing,
but it avoids naming conflicts when mixing C and C++ code. Patch
by Eric
Beets.
2008-04-25 10:01 sammy
* [r953] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLTextureFont.h, src/FTGlue.cpp:
* Implement Render() for all Font types. Patch by Eric Beets.
2008-04-25 10:01 sammy
* [r952] src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp:
* Align FTPixmapGlyph and FTTextureGlyph objects at round pixel
coordinates
to reduce bleeding. Patch by Ton Roosendaal, from Blender commit
r4411.
2008-04-25 10:00 sammy
* [r951] src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp:
* Disable the use of the font's internal bitmap in
FTGLTextureFont and
FTGLPixmapFont. Patch by Shizu, from Blender commit r4569.
2008-04-25 10:00 sammy
* [r950] src/FTGLTextureFont.cpp:
* Turn off the color buffer bit in the TextureFont renderer to
increase
performance. Patch by Ton Roosendaal, from Blender commit r5362.
2008-04-25 09:59 sammy
* [r949] src/FTCharmap.cpp:
* Synchronise FTCharmap::GlyphListIndex and FTCharmap::FontIndex
prototypes
declarations with their definitions. Patch by Vladimir Marek,
taken from
Blender commit r8915.
2008-04-25 09:59 sammy
* [r948] src/FTVectoriser.cpp:
* OS X Leopard build fix. Starting from this version,
GLUTesselatorFunction
has a standard prototype again. Patch by Kent Mein, taken from
Blender
commit r11864.
2008-04-25 09:59 sammy
* [r947] include/FTGL.h:
* Somewhat hackish support for Solaris 10 x86 support. The
problem is that
our public headers need the GL and GLU headers, which are in very
different
locations depending the system. One solution would be to generate
FTGL.h
at configure time. Patch by Kent Mein, taken from Blender commit
r12796.
2008-04-25 09:59 sammy
* [r946] include/FTContour.h, src/FTContour.cpp,
src/FTOutlineGlyph.cpp, src/FTPoint.cpp, src/FTPolyGlyph.cpp:
* Fix random bugs introduced in [941] and [943].
2008-04-24 13:40 sammy
* [r945] Makefile.am, configure.ac, msvc, msvc/Makefile.am,
msvc/README_WIN32.txt, msvc/config.h, msvc/demo.cpp,
msvc/ftgl.sln, msvc/ftgl_demo.vcproj, msvc/ftgl_demo_2.vcproj,
msvc/ftgl_dll.vcproj, msvc/ftgl_static_lib.vcproj,
msvc/unit_tests.vcproj, win32_vcpp:
* Rename "win32_vcpp" to "msvc" and move all Visual Studio build
files out
of their subdirectory.
* Add the msvc subdirectory to "make dist" so that it gets
distributed.
2008-04-24 13:20 sammy
* [r944] src/FTGlue.cpp, win32_vcpp/config.h, win32_vcpp/ftgl.dsw,
win32_vcpp/ftgl.sln, win32_vcpp/ftgl_demo/ftgl_demo.dsp,
win32_vcpp/ftgl_demo/ftgl_demo.vcproj,
win32_vcpp/ftgl_demo/ftgl_demo_2.dsp,
win32_vcpp/ftgl_demo/ftgl_demo_2.vcproj,
win32_vcpp/ftgl_dll/ftgl_dll.dsp,
win32_vcpp/ftgl_dll/ftgl_dll.vcproj,
win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp,
win32_vcpp/ftgl_static_lib/ftgl_static_lib.vcproj,
win32_vcpp/unit_tests/unit_tests.dsp,
win32_vcpp/unit_tests/unit_tests.vcproj:
* Updated Visual Studio build, by Eric Beets. We decided to
switch the
solution file to Visual Studio 2005 because no one was able to
get an
older version. Sorry.
2008-04-23 21:23 sammy
* [r943] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/tb.c,
demo/trackball.c, include/FTGlyph.h, include/FTVector.h,
src/FTContour.cpp, src/FTExtrdGlyph.cpp, src/FTFace.cpp,
src/FTGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp,
src/FTVectoriser.cpp, test/FTFont-Test.cpp, test/FTMesh-Test.cpp:
* Fix most compilation warnings. Most frequent causes: shadow
declarations
and const qualifier disappearances.
2008-04-23 21:23 sammy
* [r942] configure.ac:
* Add loads of C/C++ warning flags to the build process:
-Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow
-Wsign-compare
* Add C-specific warning flags, too:
-Waggregate-return -Wstrict-prototypes -Wmissing-prototypes
-Wnested-externs
2008-04-23 15:56 sammy
* [r941] include/FTContour.h, include/FTExtrdGlyph.h,
include/FTGLOutlineFont.h, include/FTOutlineGlyph.h,
include/FTPolyGlyph.h, include/FTVectoriser.h, src/FTContour.cpp,
src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTVectoriser.cpp,
test/FTVectoriser-Test.cpp:
* Only build outset contours when really needed. This spares
quite a few
operations and removes now useless parameters from several
methods.
Patch by Eric Beets, reworked by me.
2008-04-23 12:12 sammy
* [r940] demo/FTGLDemo.cpp:
* Cosmetic changes to FTGLDemo: bigger font, layout-compliant
text, filtered
textures.
2008-04-23 09:51 sammy
* [r939] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/tb.c,
m4/glut.m4, test/TestMain.cpp, test/demo.cpp:
* Check for <GL/glut.h> and <GLUT/glut.h> during the configure
step instead
of guessing their location at build time.
2008-04-23 09:50 sammy
* [r938] src/FTVectoriser.cpp:
* Assume unknown operating systems share the
GLUTesselatorFunction prototype
with other standard Linux/Unix systems. It's a pretty safe bet
and spares
us from patching the code each time a new system such as
GNU/kFreeBSD
appears.
2008-04-23 09:49 sammy
* [r937] src/FTOutlineGlyph.cpp:
* In outline mode, do not render the original outline if an
outset value
was specified: only render the modified one. Patch by Eric Beets.
2008-04-22 23:47 sammy
* [r936] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, include/FTGL.h,
include/FTInternals.h, include/FTLayout.h,
include/FTSimpleLayout.h, src/FTGlue.cpp, src/FTSimpleLayout.cpp:
* C bindings for the FTLayout interface. Code by Eric Beets.
2008-04-22 17:09 sammy
* [r935] NEWS:
* Advertise the C bindings in the NEWS file.
2008-04-22 17:06 sammy
* [r934] demo/FTGLDemo.cpp, include/FTTextureGlyph.h,
src/FTTextureGlyph.cpp:
* Fix FTTextureGlyph rendering offset so that it works with
layouts.
2008-04-22 16:45 sammy
* [r933] demo/FTGLDemo.cpp:
* Fix the demo program so that it uses the FTTextureFont class.
2008-04-22 16:42 sammy
* [r932] demo/FTGLDemo.cpp:
* Slightly tune the demo to show the new FTGL::RENDER_FRONT and
RENDER_SIDE
features.
2008-04-22 16:21 sammy
* [r931] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp:
* Fix displaylist usage in FTExtrdGlyph. Closes SourceForge
ticket #1945392.
2008-04-22 16:21 sammy
* [r930] include/FTBitmapGlyph.h, include/FTExtrdGlyph.h,
include/FTFont.h, include/FTGL.h, include/FTGLBitmapFont.h,
include/FTGlyph.h, include/FTGlyphContainer.h,
include/FTLayout.h, include/FTOutlineGlyph.h,
include/FTPixmapGlyph.h, include/FTPolyGlyph.h,
include/FTSimpleLayout.h, include/FTTextureGlyph.h,
src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTFont.cpp,
src/FTGlyphContainer.cpp, src/FTOutlineGlyph.cpp,
src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp,
src/FTSimpleLayout.cpp, src/FTTextureGlyph.cpp,
test/FTBitmapGlyph-Test.cpp, test/FTExtrdGlyph-Test.cpp,
test/FTFont-Test.cpp, test/FTGlyph-Test.cpp,
test/FTGlyphContainer-Test.cpp, test/FTOutlineGlyph-Test.cpp,
test/FTPixmapGlyph-Test.cpp, test/FTPolyGlyph-Test.cpp,
test/FTTextureGlyph-Test.cpp:
* Allow to selectively display parts of the glyph/font/layout.
This is
currently only used in FTExtrdGlyph: it lets the user render the
front
surface in a different color than the extruded side surface. Code
written
by Eric Beets.
2008-04-22 16:18 sammy
* [r929] include/FTOutlineGlyph.h, include/FTPolyGlyph.h,
src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp:
* Fix displaylist usage in FTOutlineGlyph and FTPolyGlyph.
FTExtrdGlyph
still needs to be fixed, but that will be after pending Render()
changes.
Partially addresses SourceForge ticket #1945392.
2008-04-22 09:31 brlcad
* [r928] NEWS:
M-q column 70 formatting
2008-04-22 08:43 sammy
* [r927] NEWS:
* Fix my name in the NEWS file and change its encoding to UTF-8.
2008-04-22 08:08 brlcad
* [r926] NEWS:
asterisk bullets
2008-04-22 08:06 brlcad
* [r925] NEWS:
annotate the recent changes from eric beets and sam hovecar for
the layout managers and new inset/outset contour support
2008-04-22 08:01 brlcad
* [r924] HISTORY, Makefile.am, NEWS:
rename HISTORY to NEWS, reformat with distinct sections for each
released version and consistent formatting
2008-04-22 07:20 brlcad
* [r923] HISTORY, HISTORY.txt, INSTALL, INSTALL.txt, Makefile.am,
README, README.txt:
drop all the main doc file suffixes to be consistent with more
prevalent gnu conventions
2008-04-21 21:48 sammy
* [r922] demo/FTGLDemo.cpp:
* Fine tune the demo so that the extrude mode shows the outset
results.
2008-04-21 21:48 sammy
* [r921] include/FTContour.h, include/FTExtrdGlyph.h,
include/FTFont.h, include/FTGLExtrdFont.h,
include/FTGLOutlineFont.h, include/FTGLPolygonFont.h,
include/FTOutlineGlyph.h, include/FTPoint.h,
include/FTPolyGlyph.h, include/FTVectoriser.h, src/FTContour.cpp,
src/FTExtrdGlyph.cpp, src/FTGLExtrdFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPolygonFont.cpp, src/FTGlue.cpp,
src/FTOutlineGlyph.cpp, src/FTPoint.cpp, src/FTPolyGlyph.cpp,
src/FTVectoriser.cpp, test/FTExtrdGlyph-Test.cpp,
test/FTOutlineGlyph-Test.cpp, test/FTPolyGlyph-Test.cpp,
test/FTVectoriser-Test.cpp:
* Inset/outset contour support for fonts, by Eric Beets. For now,
only
contours with exactly the same number of points are generated.
2008-04-21 16:09 sammy
* [r920] src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp,
src/FTFont.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTPolyGlyph.cpp:
* Fix the FTLayout rendering: line feeds were not properly
handled. Patch
by Eric Beets.
2008-04-17 16:13 sammy
* [r919] AUTHORS, README.txt:
* Moved authorship information from README.txt to a separate
AUTHORS file and
added Eric Beets and myself. No need to track the file with
automake, it's
picked up by default.
2008-04-17 16:07 sammy
* [r918] BUGS, Makefile.am, TODO:
* Re-added BUGS and TODO from the old trunk.
2008-04-17 13:38 sammy
* [r917] src/FTFont.cpp, src/FTSimpleLayout.cpp:
* Use pen += FTPoint(a, 0) constructs instead of pen.X(pen.X() +
a), it's
more object-oriented.
2008-04-17 13:37 sammy
* [r916] include/FTPoint.h:
* Implement - and -= operators in the FTPoint class.
* Allow to omit the Z coordinate in the FTPoint constructor, in
which case
it is set to zero.
2008-04-17 13:36 sammy
* [r915] src/FTFont.cpp:
* Fix a bug in FTFont::DoRender() introduced by my FTSimpleLayout
merge
that was causing excessive spacing between characters.
2008-04-16 15:57 sammy
* [r914] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLTextureFont.h, include/FTSimpleLayout.h,
src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp,
src/FTSimpleLayout.cpp:
* Remove a lot of code duplication caused by the char/wchar_t
overloading
thanks to templates. No API change here.
2008-04-15 13:52 sammy
* [r913] .gitignore:
* Add a .gitignore file for people tracking FTGL using git-svn.
2008-04-15 09:53 sammy
* [r912] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, src/FTGLBitmapFont.cpp,
src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlue.cpp:
* Added ftglDestroyFont() destructor for the C bindings.
* Remove useless "#ifdef __cplusplus" constructs from .cpp files.
2008-04-14 14:22 sammy
* [r911] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp:
* Made the FTGLDemo and FTGLMFontDemo coding style consistent
with the rest
of the code.
2008-04-14 13:41 sammy
* [r910] include/FTSimpleLayout.h:
* Remove stray non-breaking spaces from the source code.
2008-04-14 13:22 sammy
* [r909] include/FTLayout.h, include/FTSimpleLayout.h,
src/FTSimpleLayout.cpp:
* Made the FTSimpleLayout coding style consistent with the rest
of the code.
2008-04-13 22:13 sammy
* [r908] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
include/FTLayout.h, include/FTSimpleLayout.h,
src/FTSimpleLayout.cpp, test/Fontdefs.h:
* Added copyright and license information to recently merged
files.
2008-04-13 21:47 sammy
* [r907] .:
* Branch FTGL_2_0_2b is the new trunk.
2008-04-13 21:39 sammy
* [r905] :
* Merged trunk commits [678] and [711], by henry:
+ Created a demo that can handle multiple fonts and command line
options.
+ Updated for new compiler.
2008-04-13 21:27 sammy
* [r904] :
* Merged trunk commits [741], [742], [745], [747], [748] and
[749], by
henry:
+ Changed to use FTGlyphSlot internally instead of FTGlyph.
+ Added a test for broken glyph but freetype is broken so it
doesn't work.
+ Added SetDepth function to FTBBox.
+ Tidy Up.
+ Test for bitmap bbox.
2008-04-13 21:14 sammy
* [r903] :
* Merged trunk commits [664], [665], [666], [667], [669], [670],
[671],
[672] and [684], by patrick and henry:
+ Added FTLayout.h, FTSimpleLayout.h and FTSimpleLayout.cpp to
implement
a framework for layout managers and an implementation of a simple
layout
manager.
+ Updated FTGLDemo to use the new FTSimpleLayout. Changes
include:
- Added a font origin to specify the location to render the font.
- The default text is now blatantly plagarized from the back
cover of
the OGL red book.
- The font size is much smaller.
- Font metrics are rendered differently depending on the current
layout
manager.
- The FTSimpleLayout alignment mode is now output with other font
information.
- The space bar no longer cycles through the fonts. The cursor
up/down
keys do.
- The cursor left/right keys increment/decrement the size of the
current
font.
- The page up/page down keys cycle through the layout managers.
- The home/end keys increment and decrement the line length of a
simple
layout
- The tab key cycles through the alignment modes of a simple
layout.
+ Fixed a bug where the trackball rotation was applied after
translation.
+ Minor reformatting and enabled texture fonts to be selected
+ Un-inlined private methods...because they are called by other
private
inlined methods
+ Minor formatting changes
+ Adding FTLayout
2008-04-13 19:37 sammy
* [r902] :
* Merged trunk commits [662] and [663], by patrick:
+ Added the FTBBox::Invalidate and FTBBox::IsValid methods.
+ Changed the FTFont::BBox to accept a range of indicies. Only
characters
with the range are checked. The previous funcitonality is
preserved via
inline methods that call the new implementation.
+ Kluged a fix for a bug where FTFont::BBox was returning
bounding volumes
where min > max. I don't know where the problem is originating, I
just
force the bounds to be correct.
+ Changed the FTFont::DoRender methods to accept an external
FTPoint for
the pen position. This enables FTLayout classes to use their own
pen
for rendering.
+ Added the FTLayout class as a friend of FTFont to allow layout
managers
to call private rendering functions and access private font
information.
2008-04-13 14:04 sammy
* [r899] :
* Changed some unit tests so that they're clearer about where the
failures
come from.
2008-04-13 09:50 sammy
* [r898] :
* Fix a crash in the glyph extrusion code when a contour has zero
points.
2008-04-13 09:37 sammy
* [r897] :
* Fix minor typo (polyon -> polygon).
2008-04-13 09:34 sammy
* [r896] :
* Fix a coordinate bug in the extrusion texture mapping.
2008-04-13 09:28 sammy
* [r895] :
* Minor refactoring in FTExtrdGlyph.cpp.
2008-04-13 09:06 sammy
* [r894] :
* Fix a crash in FTContour::FTContour caused by invalid or
unknown tags.
2008-04-13 07:48 sammy
* [r893] :
* Refactoring FTContour.
2008-04-13 01:29 sammy
* [r892] :
* Fix a crash in FTBitmapGlyph-Test.cpp caused by glGetError()
calls with
no GL context.
2008-04-13 00:53 sammy
* [r891] :
* Build cppunit tests using the autotools.
2008-04-12 23:55 sammy
* [r890] :
* Merging [689].
2008-04-12 22:57 sammy
* [r889] :
* Rename license files to COPYING.MIT and COPUING.LGPL.
2008-04-12 22:44 sammy
* [r888] :
* Add licensing information to all files in the library.
2008-04-12 22:41 sammy
* [r887] :
* Fix an undefined operation in the FTGL demo.
2008-04-11 16:24 sammy
* [r886] :
* C bindings for FTGL, written by Éric Beets <ericbeets@free.fr>.
2008-04-04 13:16 sammy
* [r885] :
* Build the documentation the autotools way. If doxygen is not
present,
then do nothing.
2008-04-04 12:43 sammy
* [r884] :
* Generate a config.h file instead of passing all defines in the
compiler
command line.
* "make install" now properly installs the includes, the
documentation and
the .pc file.
* Generate a shared library.
2008-04-04 12:21 sammy
* [r883] :
* Big build system overhaul. Autotools-generated files are no
longer stored
in SVN, the bootstrap script is more tolerant with odd
installations, all
makefiles are a lot shorter.
2008-04-04 11:19 sammy
* [r882] :
* Put standard system headers first because on Windows glut.h
uses exit().
2008-04-04 09:20 sammy
* [r881] :
* Fix an illegal cast of a static string to a char* (has to be
char const*).
2008-04-04 09:18 sammy
* [r880] :
* Remove extra qualification in
FTTextureGlyph::ResetActiveTexture, this is
illegal and no longer tolerated by recent gcc versions.
2008-04-04 09:17 sammy
* [r879] :
* Abort make with an error if a submake fails, otherwise the
error might
never be noticed by automated builds.
2008-03-03 16:41 sammy
* [r878] :
* Remove svn:executable property from source files.
2005-01-03 09:09 henry
* [r876] :
Reset the error when setting the charmap
2005-01-03 07:54 henry
* [r875] :
Added test for SDL
2004-12-20 20:12 henry
* [r874] :
Fixed xcode paths
2004-12-12 10:01 henry
* [r873] :
Changed behaviour so that if an errror occurs the object isn't
modified. (strong guarantee).
2004-12-10 21:48 henry
* [r871] :
Updated for 2.1.2
2004-12-10 09:51 henry
* [r870] :
const correctness
2004-12-10 09:51 henry
* [r869] :
Added include for assert
2004-12-06 22:42 henry
* [r868] :
const correctness.
2004-12-06 22:41 henry
* [r867] :
Minor code format change
2004-12-06 10:34 henry
* [r866] :
Changed the way the colour is specified. It can now be done per
string rather than at start up as previous.
2004-12-05 09:53 henry
* [r864] :
Added xCode project properly. 2.1.1
2004-12-05 09:50 henry
* [r863] :
Added xCode project
2004-12-05 09:38 henry
* [r861] :
Updated for 2.1
2004-12-05 09:35 henry
* [r860] :
Updated for 2.1
2004-12-05 09:29 henry
* [r859] :
Updated to 2.1
2004-12-05 09:29 henry
* [r858] :
const correctness
2004-12-05 09:08 henry
* [r857] :
const correctness
2004-10-18 21:41 henry
* [r856] :
Removed depth member var.
Fixed a problem with normal generation.
2004-10-17 00:40 henry
* [r855] :
Changed advance to be an FTPoint rather than a float.
2004-10-12 01:23 henry
* [r854] :
Updated comments
2004-10-12 01:06 henry
* [r853] :
Got rid of the DoRender function.
2004-10-11 09:46 henry
* [r852] :
Added a test for pen position
2004-10-11 09:46 henry
* [r851] :
Changed the gl window creation so that the pen position test in
bitmap font test would work
2004-10-11 09:45 henry
* [r850] :
Changed pos assignment
2004-10-11 02:58 henry
* [r849] :
Added operator + & * to FTPoint
2004-10-11 01:58 henry
* [r848] :
Renamed variable
2004-10-11 01:56 henry
* [r847] :
Removed a redundant var
2004-10-11 01:55 henry
* [r846] :
Fixed a casting problem
2004-10-10 22:50 henry
* [r845] :
Refactoring FTPoint
2004-10-10 11:14 henry
* [r844] :
Refactoring FTPoint
2004-10-10 10:45 henry
* [r843] :
Added cast to double operator
2004-10-08 11:37 henry
* [r842] :
Changed a couple of variable names.
2004-10-07 02:11 henry
* [r841] :
Fixed some floats
2004-10-07 02:09 henry
* [r840] :
Changed testKerning to use a font with a kerning table.
2004-10-05 04:49 henry
* [r839] :
nothing
2004-10-05 04:48 henry
* [r838] :
Added hasKerningTable member so we don't query the font every
glyph.
Got rid of the redundant Close() and unused UnitsPerEM()
2004-10-03 22:50 henry
* [r837] :
Adding support for turning off display lists in FTGL
2004-10-03 22:44 henry
* [r836] :
size_t suddenly stopped working in xCode!!
2004-10-03 22:42 henry
* [r835] :
Updated for 2.1
2004-10-03 22:34 henry
* [r834] :
Only set the err in CheckGlyph if it hasn't been set by some
other part of the process.
2004-10-03 21:59 henry
* [r833] :
Doh
2004-10-03 21:11 henry
* [r832] :
CheckGlyph sets error flag
2004-10-03 21:10 henry
* [r831] :
Update comments
2004-10-01 05:32 henry
* [r830] :
Updated for 2.1 candidate release
2004-09-30 22:50 henry
* [r829] :
Minor
2004-09-30 13:18 henry
* [r828] :
Removed GL_EXT_texture_object defines.
2004-09-30 11:46 henry
* [r827] :
Updating documentation
2004-09-30 08:15 henry
* [r826] :
Code to turn off display lists.
2004-09-30 00:08 henry
* [r825] :
Change to BBox to stop it exiting completely on a NULL glyph.
2004-09-29 23:55 henry
* [r824] :
Fixed infinite loop.
2004-09-29 23:46 henry
* [r823] :
Changed tests to better show the interaction between character
encodings
2004-09-29 23:11 henry
* [r822] :
Made tests more obvious
2004-09-29 23:09 henry
* [r821] :
Removed the pixels per em function because no one is using them.
Added a test to bail early if the client is setting the size to
the existing size.
2004-09-29 23:07 henry
* [r820] :
Removed the pixels per em function because no one is using them.
2004-09-29 23:06 henry
* [r819] :
Added a test to bail early of the client sets the size to the
existing size.
Removed the pixels per em function because no one is using them.
2004-09-29 10:24 henry
* [r818] :
Refactored tests
2004-09-29 04:13 henry
* [r817] :
Constructed texture to stop glError in test.
2004-09-29 03:13 henry
* [r816] :
Improved error values for tests
2004-09-29 03:07 henry
* [r815] :
Added testCheckGlyphFailure test
2004-09-29 03:01 henry
* [r814] :
Fixing render tests. Must set size before rendering.
2004-09-28 11:49 henry
* [r813] :
Changed CheckGlyph function to indicate failure to create a
glyph.
2004-09-28 05:35 henry
* [r812] :
Trying to track down a crashing bug when calling render before
FaceSize();
2004-09-28 04:50 henry
* [r811] :
Fixed a bug where resizing FTGLTextureFont caused a GL error
2004-09-28 03:55 henry
* [r810] :
Added assert for gl error
2004-09-28 03:54 henry
* [r809] :
Newline at end of file
2004-09-28 02:39 henry
* [r808] :
Added a function to construct a gl context. Required for some
tests
2004-09-28 02:39 henry
* [r807] :
New tests.
2004-09-28 02:19 henry
* [r806] :
New tests.
2004-09-27 23:21 henry
* [r805] :
Less precision
2004-09-27 05:59 henry
* [r804] :
Tests work and pass
2004-09-27 05:34 henry
* [r803] :
Initial Add
2004-09-26 09:47 henry
* [r802] :
Finalised texture coordinate generation code.
Tidied some code.
2004-09-26 09:46 henry
* [r801] :
Removed activeTextureID from initialisation list.
2004-09-26 09:45 henry
* [r800] :
Added an assert for a 0 maximum texture size. This is tripping
some people up.
2004-09-18 11:25 henry
* [r799] :
Added demonstration of texture co-ordinate generation.
2004-09-18 11:24 henry
* [r798] :
Added texture co-ordinate generation.
2004-08-23 08:05 henry
* [r797] :
Added LineHeight function.
2004-08-23 08:03 henry
* [r796] :
Remove a superfluous semi-colon.
2004-08-23 07:18 henry
* [r795] :
Got rid fo the GL_TEXTURE_2D_BINDING_EXT call in FTTextureGlyph
and replaced it with a static member.
2004-08-22 05:50 henry
* [r794] :
Removed unnecessary translates in the glyph rendering code.
2004-08-22 04:03 henry
* [r793] :
Removed out of date Code warrior project
2004-08-19 05:43 henry
* [r792] :
FaceSize now sets the error value.
2004-08-17 01:53 henry
* [r791] :
tweatked the font size
2004-08-17 01:51 henry
* [r790] :
Added docs
2004-08-17 01:46 henry
* [r789] :
Added note for CYGWIN tesselator define for v2.0.10
2004-08-16 06:56 henry
* [r787] :
Updated FTFont( *pBufferBytes, bufferSizeInBytes) documentation.
2004-08-16 06:54 henry
* [r786] :
Updated to 2.0.11
2004-08-16 06:25 henry
* [r784] :
Updated for 2.0.10
2004-08-16 06:22 henry
* [r783] :
Updated FTFont( *pBufferBytes, bufferSizeInBytes) documentation.
2004-08-16 06:09 henry
* [r782] :
Fixed a couple of tabs
2004-05-10 09:11 henry
* [r781] :
First add for buffer font stuff
2004-05-09 07:22 henry
* [r780] :
Changed signed to unsigned for glyph indices
2004-05-09 07:13 henry
* [r779] :
Updated for changes in FTCharmap
2004-05-09 07:09 henry
* [r778] :
Renamed functions for clarity
2004-05-04 10:38 henry
* [r777] :
Added __CYGWIN__
2004-05-04 10:17 henry
* [r776] :
Renamed
2004-04-21 09:17 henry
* [r774] :
Update for 2.0.9
2004-04-20 20:55 henry
* [r773] :
includes now go in FTGL subdir
2004-04-20 20:50 henry
* [r772] :
Moved include to fix FT_OPEN_MEMORY # def for older freetype
versions
2004-04-09 05:43 henry
* [r770] :
updated docs
2004-04-09 05:42 henry
* [r769] :
Added comment extra function
2004-04-09 05:29 henry
* [r768] :
Update for 2.0.8
2004-04-09 05:28 henry
* [r767] :
Not needed any more
2004-04-09 05:24 henry
* [r766] :
Updated for 2.0.8
2004-04-09 05:22 henry
* [r765] :
Added comments for new functions
2004-04-09 05:09 henry
* [r764] :
For 2.0.8
2004-04-09 04:08 henry
* [r763] :
Fixes for glyph to glyphSlot change
2004-04-09 04:01 henry
* [r761] :
Added symbol for front and rear facing
2004-04-09 03:51 henry
* [r760] :
Added symbol for front and rear facing
2004-01-22 08:11 henry
* [r759] :
Changed FTGLTextureFont to use FTVector for texture id list.
2003-11-02 21:40 henry
* [r758] :
Removed FTLayout.h
2003-10-20 02:48 henry
* [r757] :
Moved charmap list from FTCharmap to FTFont
2003-10-19 21:38 henry
* [r756] :
Moved charmap list function out of FTCharmap into FTFont
2003-10-19 21:16 henry
* [r755] :
Moved charmap list function out of FTCharmap into FTFont
2003-10-19 02:40 henry
* [r754] :
Can now get the list of supported charmaps for the font.
2003-10-11 03:41 henry
* [r753] :
FTCharToGlyphIndexMap::find no longer returns a pointer
2003-10-08 21:00 henry
* [r752] :
Delete charmap in destructor.
2003-10-04 04:58 henry
* [r751] :
Initial test before refactoring
2003-10-02 04:07 henry
* [r750] :
Test for outline or bitmap doesn't seem to matter.
2003-10-01 06:46 henry
* [r747] test/FTBBox-Test.cpp:
Now uses FT_Outline_Get_CBox where possible
2003-10-01 00:25 henry
* [r746] :
Minor change
2003-09-29 20:59 henry
* [r745] test/FTBBox-Test.cpp:
Added SetDepth function to FTBBox
2003-09-29 04:56 henry
* [r744] :
Changed from FT_Glyph to FT_GlyphSlot
2003-09-29 04:55 henry
* [r743] :
Tidied up test
2003-09-25 03:55 henry
* [r741] test/FTBBox-Test.cpp:
Changed to use FTGlyphSlot internally instead of FTGlyph
2003-09-24 22:13 henry
* [r740] :
Initial Add
2003-09-24 22:12 henry
* [r739] :
Fixed some error return values.
2003-09-24 22:05 henry
* [r738] :
Removed old char map function
2003-09-24 22:05 henry
* [r737] :
Removed old comments
2003-09-22 05:27 henry
* [r736] :
Refactored setUpFreetype function.
2003-09-22 02:11 henry
* [r735] :
Fixes for deprecated identifiers in 2.1.5
2003-09-21 22:36 henry
* [r734] :
Fixed FT_OPEN_MEMORY for 2.1.5
2003-09-21 01:43 henry
* [r732] :
Fixed for 2.1.5
2003-09-21 01:42 henry
* [r731] :
Fixed memory face error code
2003-09-21 01:42 henry
* [r730] :
Small change for VC.net
2003-09-19 23:37 henry
* [r729] :
Added a test for the freetype library version.
2003-09-19 23:35 henry
* [r728] :
Fixed a spelling mistake.
2003-08-30 23:24 henry
* [r726] :
Update for 2.0.7
2003-08-29 00:04 henry
* [r723] :
Removed FTSimpleLayout
2003-08-25 04:23 henry
* [r721] :
Updated the unix build scripts
2003-08-25 04:18 henry
* [r720] :
Updated unix build scripts
2003-08-25 03:31 henry
* [r718] :
Updated for 2.0.5
2003-08-25 03:02 henry
* [r717] :
Update for 2.0.5
2003-08-05 00:26 henry
* [r716] :
Refactored variable names
2003-07-23 09:06 henry
* [r715] :
Remove Font Table function.
2003-07-23 09:06 henry
* [r714] :
Fixed precision conversion
2003-07-18 10:13 henry
* [r712] :
Minor change
2003-07-16 10:18 henry
* [r711] test/demo.cpp:
Updated for new compiler
2003-07-16 10:17 henry
* [r710] :
Made a constant a float
2003-07-12 12:06 henry
* [r709] :
Removed inline directive
2003-07-12 12:06 henry
* [r708] :
Re-ordereds function for inlining
2003-06-08 01:21 henry
* [r707] :
Refactored FTGlyphContainer & FTCharmap
2003-06-08 01:09 henry
* [r706] :
Refactored FTGlyphContainer & FTCharmap. They now store FTGlyphs
sequentially rather than by glyph index.
2003-06-08 01:08 henry
* [r705] :
Minor format change
2003-06-08 01:02 henry
* [r704] :
Minor format change
2003-06-03 04:02 henry
* [r703] :
Now takes an FTGL face not a Freetype fac
2003-06-03 04:01 henry
* [r702] :
Now takes an FTGL face not a Freetype fac
Fixed docs
Added glyphIndex function
2003-06-03 03:58 henry
* [r701] :
Minor format fix
2003-06-03 03:08 henry
* [r700] :
Moved FTCharmap into this class
2003-06-03 02:57 henry
* [r699] :
Removed FTCharmap from FTFace
2003-06-03 02:51 henry
* [r698] :
Added extra defines for GLUTesselatorFunction
2003-06-03 02:50 henry
* [r697] :
Removed FTCharmap member and associated methods
2003-06-03 02:44 henry
* [r696] :
Better variable name
2003-05-04 21:12 henry
* [r695] :
Changed for the new hinter in Freetype 2.1.4
2003-05-04 21:06 henry
* [r694] :
Added null size test in PixelsPerEm functions
2003-05-04 21:02 henry
* [r693] :
Changed unit tests for new hinter in Freetype 2.1.4
2003-05-04 20:59 henry
* [r692] :
Added test for broken contour tags
2003-05-04 20:54 henry
* [r691] :
Changed unit tests for new hinter in Freetype 2.1.4
2003-05-03 05:45 henry
* [r690] :
Changed MAC font path
2003-04-13 02:09 henry
* [r680] :
Fixed FTGLTextureFont resize bug
2003-04-12 01:57 henry
* [r679] :
Fix in FTGLTextureFont
2003-04-09 10:20 henry
* [r677] :
Updated for 2.03
2003-04-09 10:14 henry
* [r675] :
Added extra test for broken contour
2003-04-09 10:13 henry
* [r674] :
Fixed broken contour bug
2003-04-05 00:40
* [r661] :
This commit was manufactured by cvs2svn to create branch
'FTGL_2_0_2b'.
2003-04-05 00:40 henry
* [r659] include/FTList.h:
Fixed formatting
2003-04-05 00:34 henry
* [r658] docs/html.tar.gz:
Updated for 2.02
2003-04-04 02:09 henry
* [r657] HISTORY.txt, README.txt, TODO.txt,
test/font_pack/README.txt:
Updated for 2.02
2003-04-03 23:59 henry
* [r656] src/FTExtrdGlyph.cpp:
Made vectoriser a stack var and refactored variables
2003-04-02 23:47 henry
* [r655] include/FTList.h, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTVectoriser.cpp:
Fixed memory leaks
2003-03-14 01:40 henry
* [r653] README.txt, TODO.txt:
Updated for 2.0.1
2003-03-13 06:01 henry
* [r652] HISTORY.txt:
Update 2.01
2003-03-13 00:40 ellers
* [r651] win32_vcpp/README_WIN32.txt:
(hopefully) changed newlines to DOS style)
2003-03-12 18:55 marcelo
* [r649] unix/acinclude.m4, unix/aclocal.m4, unix/config.guess,
unix/config.sub, unix/configure:
Update autoconf stuff to incorporate GL detection fixes
2003-03-12 18:49 marcelo
* [r648] unix/configure.ac, unix/m4/gl.m4:
Fix problem with configure failing to find GL libraries because
they are installed in the X11 tree
2003-03-12 11:44 marcelo
* [r647] unix/src/Makefile:
Fix blooper with include file installation; the include files
were moved to 'include', I noticed, but forgot to update the
Makefile
2003-03-06 10:30 marcelo
* [r646] unix/src/Makefile:
Get rid of annoying IRIX droppings on distclean
2003-03-06 10:22 marcelo
* [r645] unix/docs/Makefile:
Last minute change to get document generation working again on
IRIX
2003-03-06 10:06 marcelo
* [r644] unix/aclocal.m4, unix/configure:
Update aclocal.m4 and configure script before release
2003-03-06 08:09 henry
* [r642] HISTORY.txt:
Minor changes
2003-03-05 21:25 henry
* [r641] HISTORY.txt, README.txt, TODO.txt, demo/README.txt,
mac/README.txt, test/README.txt, test/font_pack/README.txt:
Version 2.0 release
2003-02-27 22:28 henry
* [r640] src/FTFont.cpp, test/FTFont-Test.cpp:
Fixed null string bug in BBox
2003-02-24 03:03 henry
* [r639] test/README.txt, test/font_pack/README.txt:
Updated for v2 release
2003-02-24 01:24 henry
* [r638] test/README.txt, test/font_pack,
test/font_pack/README.txt:
Initial Add
2003-02-07 13:04 ellers
* [r637] win32_vcpp/ftgl_demo/ftgl_demo.dsp,
win32_vcpp/ftgl_demo/ftgl_demo_2.dsp,
win32_vcpp/ftgl_dll/ftgl_dll.dsp,
win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp:
a few more minor tweaks to the project files
2003-02-07 12:58 ellers
* [r636] win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo/ftgl_demo.dsp,
win32_vcpp/ftgl_demo/ftgl_demo_2.dsp,
win32_vcpp/ftgl_dll/ftgl_dll.dsp,
win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp,
win32_vcpp/unit_tests/unit_tests.dsp:
altered projects so unit tests will build with cppunit
2003-01-30 12:24 ellers
* [r635] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp,
test/FTMesh-Test.cpp, test/FTSize-Test.cpp,
test/FTVectoriser-Test.cpp, test/mmgr.cpp, test/mmgr.h,
win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo/demo.cpp,
win32_vcpp/ftgl_dll/ftgl_dll.dsp,
win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp,
win32_vcpp/unit_tests, win32_vcpp/unit_tests/unit_tests.dsp:
updates for win32 build
2003-01-28 13:53 ellers
* [r634] src/FTExtrdGlyph.cpp:
minor update for win32
2003-01-28 13:52 ellers
* [r633] win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo/ftgl_demo.dsp,
win32_vcpp/ftgl_demo/ftgl_demo_2.dsp,
win32_vcpp/ftgl_dll/ftgl_dll.dsp,
win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp:
updated win32 project files
2003-01-20 13:58 marcelo
* [r632] demo/FTGLDemo.cpp:
Expect a fontfile on the command line, fall back to a default one
on systems
where a default is known -- else complain about the missing
parameter.
Come to think of it, I could use a PS font on IRIX. I'll look
into that later.
2003-01-16 00:23 henry
* [r631] src/FTVectoriser.cpp:
Removed redundant () in preprocess
2003-01-14 16:13 marcelo
* [r630] unix/acinclude.m4, unix/aclocal.m4, unix/configure,
unix/m4/glut.m4:
Add a couple of extra libraries usually required by GLUT
2003-01-14 16:09 marcelo
* [r629] unix/demo/Makefile:
Mantra: Link C++ programs with the C++ compiler
2003-01-14 16:08 marcelo
* [r628] src/FTVectoriser.cpp:
The parser in the IRIX C++ compiler has a bug and the result of:
new (Type*)[size]
is of type "Type*" instead of "Type**". Work arround it by
typedef'ing TypeP
which is just Type*.
2003-01-14 14:32 marcelo
* [r627] unix/acinclude.m4, unix/aclocal.m4, unix/configure,
unix/m4/glut.m4:
Get ./configure to work with IRIX (and other systems with broken
linkers)
2003-01-13 03:09 henry
* [r626] extras/layout/FTICUFace.cpp, extras/layout/FTICUFace.h,
extras/layout/FTLayoutFont.cpp, extras/layout/FTLayoutFont.h,
extras/layout/LEFontInstance.h, test/FTlayout-Test.cpp:
Integrating ICU
2003-01-12 21:27 marcelo
* [r625] unix, unix/Make.conf.in, unix/Make.rules, unix/Makefile,
unix/README.txt, unix/acinclude.m4, unix/aclocal.m4,
unix/bootstrap, unix/config.guess, unix/config.sub,
unix/configure, unix/configure.ac, unix/demo, unix/demo/Makefile,
unix/docs, unix/docs/Makefile, unix/ftgl.pc.in, unix/install-sh,
unix/ltmain.sh, unix/m4, unix/m4/cxx.m4, unix/m4/freetype2.m4,
unix/m4/gl.m4, unix/m4/glut.m4, unix/src, unix/src/Makefile:
Unified UNIX building system
2003-01-12 08:42 henry
* [r623] extras, extras/layout, extras/layout/FTICUFace.h,
extras/layout/FTLayoutFont.h:
Layout stuff
2003-01-10 03:43 henry
* [r622] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Added layout test
2003-01-10 03:26 henry
* [r621] test/FTlayout-Test.cpp:
Starting future layout support tests
2003-01-10 03:26 henry
* [r620] test/FTVectoriser-Test.cpp, test/Fontdefs.h:
Adding fonts for future layout support tests
2003-01-10 03:25 henry
* [r619] include/FTFace.h, src/FTFace.cpp, test/FTFace-Test.cpp:
Trying to add table support
2003-01-10 01:47 henry
* [r618] include/FTFace.h, include/FTSize.h, src/FTFace.cpp,
src/FTSize.cpp, test/FTFace-Test.cpp, test/FTSize-Test.cpp:
Added units per EM square
2003-01-09 09:25 henry
* [r617] HISTORY.txt:
added attach file from memory
2003-01-09 02:56 henry
* [r616] src/FTFace.cpp:
Fixed warning and kerning
2003-01-09 01:59 henry
* [r615] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp,
test/FTFace-Test.cpp, test/FTFont-Test.cpp,
test/FTGlyphContainer-Test.cpp, test/FTLibrary-Test.cpp,
test/FTList-Test.cpp, test/FTMesh-Test.cpp,
test/FTPoint-Test.cpp, test/FTSize-Test.cpp,
test/FTTesselation-Test.cpp, test/FTVector-Test.cpp,
test/FTVectoriser-Test.cpp:
Formatting changes
2003-01-08 23:32 henry
* [r614] include/FTGLOutlineFont.h, include/FTGLPixmapFont.h:
Updated doc
2003-01-08 23:13 henry
* [r613] include/FTFont.h, include/FTGLExtrdFont.h:
Updated doc
2003-01-08 23:10 henry
* [r612] include/FTFont.h:
Updated doc
2003-01-08 22:47 henry
* [r611] include/FTFont.h:
Updated doc
2003-01-08 22:42 henry
* [r610] test/FTList-Test.cpp, test/FTMesh-Test.cpp,
test/FTPoint-Test.cpp:
Tidied up includes
2003-01-08 21:48 henry
* [r609] test/arial_ttf.cpp:
Replaced by HPGCalc
2003-01-08 21:46 henry
* [r608] test/FTFace-Test.cpp, test/FTFont-Test.cpp,
test/Fontdefs.h, test/HPGCalc_afm.cpp, test/HPGCalc_pfb.cpp:
Implemented Attach from memory test
2003-01-08 19:13 henry
* [r607] test/HPGCalc_afm.cpp, test/HPGCalc_pfb.cpp:
Files for attch mem test
2003-01-08 09:02 henry
* [r606] test/FTBBox-Test.cpp, test/FTFace-Test.cpp,
test/FTFont-Test.cpp, test/FTSize-Test.cpp,
test/FTVectoriser-Test.cpp, test/Fontdefs.h:
Added Type1 file attach test
2003-01-08 04:24 henry
* [r605] include/FTFace.h, include/FTFont.h, src/FTFace.cpp,
src/FTFont.cpp, test/FTFace-Test.cpp, test/FTFont-Test.cpp:
Added attach from memory function
2003-01-08 00:35 henry
* [r604] HISTORY.txt, README.txt, license.txt:
Impending autoconf and year 03
2003-01-06 04:11 henry
* [r603] src/FTGlyphContainer.cpp:
removed test in d_stor
2003-01-06 04:10 henry
* [r602] src/FTFont.cpp:
Minor change to BBox
2003-01-05 22:40 henry
* [r601] test/FTFace-Test.cpp:
Minor change
2002-12-31 04:47 henry
* [r600] test/FTFont-Test.cpp:
Change size test
2002-12-31 04:24 henry
* [r599] HISTORY.txt, README.txt:
Fixes to bitmap glyph alignment
2002-12-31 04:07 henry
* [r598] include/FTBitmapGlyph.h, src/FTBitmapGlyph.cpp,
src/FTGLBitmapFont.cpp, src/FTGLTextureFont.cpp,
src/FTTextureGlyph.cpp:
Fixed alignment issues for bitmap and texture glyphs
2002-12-21 09:11 henry
* [r597] docs/html.tar.gz:
No private structs
2002-12-21 09:09 henry
* [r596] demo/FTGLDemo.cpp:
Changed int to float in glRasterPos
2002-12-21 09:08 henry
* [r595] HISTORY.txt:
Delete lists
2002-12-21 07:32 henry
* [r594] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp:
Delete the display list
2002-12-21 07:23 henry
* [r593] include/FTGlyphContainer.h:
Minor change
2002-12-21 07:23 henry
* [r592] docs/ftgl_dox:
Don't doc private classes
2002-12-21 07:19 henry
* [r591] include/FTGlyphContainer.h:
Fixed docs
2002-12-21 07:15 henry
* [r590] include/FTList.h:
Docs
2002-12-21 07:11 henry
* [r589] src/FTGlyphContainer.cpp:
Refactored variable names
2002-12-21 07:10 henry
* [r588] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Refactored variable names
2002-12-21 05:18 henry
* [r587] include/FTFace.h, src/FTFace.cpp:
Updated docs and removed numberOfCharmaps member
2002-12-21 05:08 henry
* [r586] include/FTFont.h, src/FTFont.cpp:
Removed DoAdvance function
2002-12-21 03:24 henry
* [r585] src/FTFont.cpp:
Refactored BBox()
2002-12-20 22:23 henry
* [r584] test/FTVector-Test.cpp:
Started writing tests
2002-12-20 22:22 henry
* [r583] test/FTMesh-Test.cpp:
Changes for FTList
2002-12-20 22:22 henry
* [r582] test/FTList-Test.cpp:
Added testGetFront
2002-12-20 22:21 henry
* [r581] test/FTLibrary-Test.cpp:
Added TestError()
2002-12-20 22:21 henry
* [r580] include/FTVectoriser.h, src/FTVectoriser.cpp,
test/FTTesselation-Test.cpp:
Added Mesh::Combine and changed tempPointList to FTList
2002-12-20 22:20 henry
* [r579] test/FTGlyphContainer-Test.cpp:
Change for FTFace
2002-12-20 22:19 henry
* [r578] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Made Glyph() const
2002-12-20 22:18 henry
* [r577] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp:
Removed comments and makeGlyphList function
2002-12-20 22:17 henry
* [r576] include/FTGlyph.h:
Made BBox() const
2002-12-20 22:17 henry
* [r575] include/FTFont.h, src/FTFont.cpp:
Removed maekGlyphList function and changes for FTFace
2002-12-20 22:13 henry
* [r574] include/FTFace.h, src/FTFace.cpp, test/FTFace-Test.cpp:
Removed Open functions. C_stors now open face
2002-12-20 10:26 henry
* [r573] include/FTList.h:
Finished
2002-12-20 10:26 henry
* [r572] include/FTVector.h:
Minor formatting
2002-12-20 10:18 henry
* [r571] include/FTLibrary.h:
Minor formatting and and made get library const
2002-12-20 10:17 henry
* [r570] src/FTTextureGlyph.cpp:
Minor formatting and removed comments
2002-12-20 10:16 henry
* [r569] include/FTGLBitmapFont.h, include/FTGLExtrdFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTSize.h:
Minor formatting
2002-12-20 10:13 henry
* [r568] include/FTCharmap.h:
Changed protected to private
2002-12-19 10:31 henry
* [r567] include/FTList.h, mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj, test/FTList-Test.cpp,
test/FTVector-Test.cpp:
Added FTList, FTListTest and FTVectorTest
2002-12-19 10:29 henry
* [r566] test/FTMesh-Test.cpp, test/FTTesselation-Test.cpp,
test/FTVectoriser-Test.cpp:
More tests
2002-12-19 10:28 henry
* [r565] test/FTFace-Test.cpp:
Uncommented test
2002-12-19 10:28 henry
* [r564] include/FTFace.h, src/FTFace.cpp:
Made return value const
2002-12-19 10:27 henry
* [r563] include/FTFont.h, src/FTFont.cpp:
Refactored function names
2002-12-19 10:27 henry
* [r562] include/FTVectoriser.h, src/FTVectoriser.cpp:
Made return values const
2002-12-19 10:26 henry
* [r561] include/FTVector.h:
Removed comments and protected
2002-12-19 10:25 henry
* [r560] include/FTLibrary.h, src/FTLibrary.cpp:
Changed init function name
2002-12-19 10:25 henry
* [r559] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp:
Changed vars to GLunit
2002-12-19 10:24 henry
* [r558] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp:
Made some objects const
2002-12-19 10:22 henry
* [r557] include/FTContour.h:
Inlined some functions
2002-12-18 03:53 henry
* [r556] include/FTContour.h, src/FTContour.cpp:
Trying to simplify the constructor.
2002-12-18 02:13 henry
* [r555] test/FTMesh-Test.cpp:
Added test for glCombine
2002-12-18 01:30 henry
* [r554] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Fixed tests
2002-12-17 23:51 henry
* [r553] test/FTBBox-Test.cpp, test/FTVectoriser-Test.cpp,
test/Fontdefs.h:
Fixed tests
2002-12-17 23:28 henry
* [r552] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp,
test/FTFace-Test.cpp, test/FTFont-Test.cpp,
test/FTGlyphContainer-Test.cpp, test/FTSize-Test.cpp,
test/FTVectoriser-Test.cpp, test/Fontdefs.h, test/arial_ttf.cpp:
Moved all the constants into a header
2002-12-17 20:17 henry
* [r551] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Fixed paths
2002-12-17 20:02 henry
* [r550] HISTORY.txt:
Note about include directory
2002-12-17 09:15 henry
* [r549] docs/ftgl_dox, docs/html.tar.gz:
Added include dir
2002-12-17 09:15 henry
* [r548] include/FTContour.h:
Fix docs
2002-12-17 09:10 henry
* [r547] demo/FTGLDemo.cpp, test/demo.cpp:
Changed render to Render
2002-12-17 08:42 henry
* [r546] mac/Includes/freetype/cache,
mac/Includes/freetype/cache/ftccache.h,
mac/Includes/freetype/cache/ftccmap.h,
mac/Includes/freetype/cache/ftcglyph.h,
mac/Includes/freetype/cache/ftcimage.h,
mac/Includes/freetype/cache/ftcmanag.h,
mac/Includes/freetype/cache/ftcsbits.h,
mac/Includes/freetype/cache/ftlru.h,
mac/Includes/freetype/config,
mac/Includes/freetype/config/ftconfig.h,
mac/Includes/freetype/config/ftheader.h,
mac/Includes/freetype/config/ftmodule.h,
mac/Includes/freetype/config/ftoption.h,
mac/Includes/freetype/internal,
mac/Includes/freetype/internal/autohint.h,
mac/Includes/freetype/internal/cfftypes.h,
mac/Includes/freetype/internal/fnttypes.h,
mac/Includes/freetype/internal/ftcalc.h,
mac/Includes/freetype/internal/ftdebug.h,
mac/Includes/freetype/internal/ftdriver.h,
mac/Includes/freetype/internal/ftextend.h,
mac/Includes/freetype/internal/ftmemory.h,
mac/Includes/freetype/internal/ftobjs.h,
mac/Includes/freetype/internal/ftstream.h,
mac/Includes/freetype/internal/internal.h,
mac/Includes/freetype/internal/pcftypes.h,
mac/Includes/freetype/internal/psaux.h,
mac/Includes/freetype/internal/psglobal.h,
mac/Includes/freetype/internal/pshints.h,
mac/Includes/freetype/internal/psnames.h,
mac/Includes/freetype/internal/sfnt.h,
mac/Includes/freetype/internal/t1types.h,
mac/Includes/freetype/internal/tttypes.h:
Adding Unit tests
2002-12-17 08:40 henry
* [r545] mac/FTGL.pbproj/project.pbxproj,
mac/Includes/cppunit/extensions,
mac/Includes/cppunit/extensions/AutoRegisterSuite.h,
mac/Includes/cppunit/extensions/HelperMacros.h,
mac/Includes/cppunit/extensions/Orthodox.h,
mac/Includes/cppunit/extensions/RepeatedTest.h,
mac/Includes/cppunit/extensions/TestDecorator.h,
mac/Includes/cppunit/extensions/TestFactory.h,
mac/Includes/cppunit/extensions/TestFactoryRegistry.h,
mac/Includes/cppunit/extensions/TestSetUp.h,
mac/Includes/cppunit/extensions/TestSuiteBuilder.h,
mac/Includes/cppunit/extensions/TestSuiteFactory.h,
mac/Includes/cppunit/extensions/TypeInfoHelper.h,
mac/Includes/cppunit/ui, mac/Includes/cppunit/ui/text,
mac/Includes/cppunit/ui/text/TestRunner.h:
Adding unit tests
2002-12-17 08:35 henry
* [r544] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj, mac/Includes,
mac/Includes/cppunit, mac/Includes/cppunit/Asserter.h,
mac/Includes/cppunit/CompilerOutputter.h,
mac/Includes/cppunit/Exception.h,
mac/Includes/cppunit/NotEqualException.h,
mac/Includes/cppunit/Outputter.h,
mac/Includes/cppunit/Portability.h,
mac/Includes/cppunit/SourceLine.h,
mac/Includes/cppunit/SynchronizedObject.h,
mac/Includes/cppunit/Test.h, mac/Includes/cppunit/TestAssert.h,
mac/Includes/cppunit/TestCaller.h,
mac/Includes/cppunit/TestCase.h,
mac/Includes/cppunit/TestFailure.h,
mac/Includes/cppunit/TestFixture.h,
mac/Includes/cppunit/TestListener.h,
mac/Includes/cppunit/TestResult.h,
mac/Includes/cppunit/TestResultCollector.h,
mac/Includes/cppunit/TestSucessListener.h,
mac/Includes/cppunit/TestSuite.h,
mac/Includes/cppunit/TextOutputter.h,
mac/Includes/cppunit/TextTestProgressListener.h,
mac/Includes/cppunit/TextTestResult.h,
mac/Includes/cppunit/TextTestRunner.h,
mac/Includes/cppunit/XmlOutputter.h,
mac/Includes/cppunit/config-auto.h,
mac/Includes/cppunit/config-bcb5.h,
mac/Includes/cppunit/config-msvc6.h, mac/Includes/freetype,
mac/Includes/freetype/freetype.h, mac/Includes/freetype/ftbbox.h,
mac/Includes/freetype/ftcache.h,
mac/Includes/freetype/ftchapters.h,
mac/Includes/freetype/fterrors.h,
mac/Includes/freetype/ftglyph.h, mac/Includes/freetype/ftimage.h,
mac/Includes/freetype/ftlist.h, mac/Includes/freetype/ftmac.h,
mac/Includes/freetype/ftmm.h, mac/Includes/freetype/ftmoderr.h,
mac/Includes/freetype/ftmodule.h,
mac/Includes/freetype/ftoutln.h,
mac/Includes/freetype/ftrender.h,
mac/Includes/freetype/ftsizes.h,
mac/Includes/freetype/ftsnames.h,
mac/Includes/freetype/ftsynth.h,
mac/Includes/freetype/ftsystem.h,
mac/Includes/freetype/fttrigon.h,
mac/Includes/freetype/fttypes.h,
mac/Includes/freetype/t1tables.h,
mac/Includes/freetype/ttnameid.h,
mac/Includes/freetype/tttables.h, mac/Includes/freetype/tttags.h,
mac/Includes/ft2build.h, mac/Libraries,
mac/Libraries/libcppunit.a, mac/Libraries/libfreetype.a:
Adding unit tests
2002-12-17 08:21 henry
* [r543] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp,
test/FTContour-Test.cpp, test/FTFace-Test.cpp,
test/FTFont-Test.cpp, test/FTGlyphContainer-Test.cpp,
test/FTLibrary-Test.cpp, test/FTMesh-Test.cpp,
test/FTPoint-Test.cpp, test/FTSize-Test.cpp,
test/FTTesselation-Test.cpp, test/FTVectoriser-Test.cpp,
test/TestMain.cpp, test/arial_ttf.cpp:
Added unit tests
2002-12-17 08:18 henry
* [r542] demo/FTGLDemo.cpp, test/demo.cpp:
Changed mac font path to test directory
2002-12-17 04:44 henry
* [r541] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTTextureGlyph.cpp:
Fixed freetype render flag :)
2002-12-17 04:42 henry
* [r540] include/FTBitmapGlyph.h, include/FTFont.h,
include/FTGLBitmapFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLTextureFont.h,
include/FTGlyphContainer.h, src/FTBitmapGlyph.cpp,
src/FTExtrdGlyph.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlyphContainer.cpp,
src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp:
Renamed render to Render
2002-12-17 04:37 henry
* [r539] HISTORY.txt:
More refactoring
2002-12-17 03:55 henry
* [r538] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Major refactoring to FTVectoriser and clients
2002-12-17 03:53 henry
* [r537] include/FTVectoriser.h, src/FTVectoriser.cpp:
Refactored to get rid of data memory buffers and function name
tidy ups
2002-12-17 03:52 henry
* [r536] src/FTPolyGlyph.cpp:
Removed data memory buffer
2002-12-17 03:50 henry
* [r535] src/FTOutlineGlyph.cpp:
Changes in FTVectoriser and FTContour
2002-12-17 03:49 henry
* [r534] src/FTExtrdGlyph.cpp:
Removed data buffers. Now call into vectoriser
2002-12-17 03:46 henry
* [r533] include/FTContour.h:
Renamed 'Points' to 'PointCount'
2002-12-17 01:44 henry
* [r532] include/FTBBox.h:
Removed operator +
2002-12-17 01:33 henry
* [r531] src/FTBBox.cpp:
No loger needed. Replaced by +=
2002-12-17 01:16 henry
* [r530] src/FTExtrdGlyph.cpp:
Removed redundant code and memory allocation
2002-12-17 01:05 henry
* [r529] include/FTPoint.h:
Added operator +=
2002-12-16 23:25 henry
* [r528] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp,
src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp:
Changes to the outline code in FTVectoriser
2002-12-16 23:24 henry
* [r527] include/FTVectoriser.h, src/FTVectoriser.cpp:
Made ProcessContours Private and removed GetOutline
2002-12-16 20:12 henry
* [r526] include/FTVectoriser.h, src/FTVectoriser.cpp:
Changes in FTContour
2002-12-16 20:11 henry
* [r525] include/FTContour.h:
Made pointList private and removed size()
2002-12-16 09:13 henry
* [r524] docs/html.tar.gz:
Reafctored *Font. Got rid of Open function
2002-12-16 08:53 henry
* [r523] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h:
Updated the docs
2002-12-16 08:27 henry
* [r522] HISTORY.txt, demo/FTGLDemo.cpp, include/FTFont.h,
include/FTGLBitmapFont.h, include/FTGLExtrdFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTGLTextureFont.h,
mac/FTGL.pbproj/henry.pbxuser, src/FTFont.cpp,
src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, test/demo.cpp:
Refactored FTFont to get rid of Open function
2002-12-16 03:46 henry
* [r521] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Refactoring FTContour
2002-12-16 00:40 henry
* [r520] src/FTContour.cpp:
Removed unused constants
2002-12-15 23:04 henry
* [r519] include/FTContour.h:
Updated comments
2002-12-15 23:02 henry
* [r518] include/FTContour.h, src/FTContour.cpp:
Unrolled evaluate curve
2002-12-15 22:04 henry
* [r517] include/FTContour.h, src/FTContour.cpp:
Refactored evaluate curve
2002-12-15 08:51 henry
* [r516] include/FTContour.h, src/FTContour.cpp:
Got rid of ctrlPtArray
2002-12-15 08:32 henry
* [r515] docs/ftgl_dox, docs/html.tar.gz:
Updated doxygen template
2002-12-15 08:23 henry
* [r514] HISTORY.txt, mac/FTGL.pbproj/henry.pbxuser:
FTcontour update
2002-12-15 08:20 henry
* [r513] include/FTContour.h, src/FTContour.cpp:
Removed contourPoint struct
2002-12-14 22:02 henry
* [r512] include/FTContour.h:
Removed conic and cubic functions
2002-12-14 22:01 henry
* [r511] src/FTContour.cpp:
Contour extraction is now one pass. The code is a bit ugly at
this stage though.
2002-12-12 23:51 henry
* [r510] docs/html.tar.gz:
Refactored FTFont
2002-12-12 23:50 henry
* [r509] include/FTGlyphContainer.h:
Updated comments
2002-12-12 22:36 henry
* [r508] mac/FTGL.pbproj/henry.pbxuser:
update
2002-12-12 21:47 henry
* [r507] include/FTFont.h, src/FTFont.cpp:
Added CheckGlyph function
2002-12-12 21:46 henry
* [r506] include/FTGLTextureFont.h:
Made some members unsigned
2002-12-12 20:48 henry
* [r505] include/FTFace.h, include/FTGlyphContainer.h,
src/FTFace.cpp, src/FTGlyphContainer.cpp:
Added GlyphCount accessor to FTFace
2002-12-12 20:46 henry
* [r504] include/FTFont.h, src/FTFont.cpp, src/FTGLTextureFont.cpp:
Pushed down numGlyph field
2002-12-12 06:12 henry
* [r503] include/FTBitmapGlyph.h, include/FTGlyph.h,
include/FTPixmapGlyph.h, include/FTTextureGlyph.h,
src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp:
Got rid of numGreys and pushed down pos
2002-12-11 09:30 henry
* [r502] HISTORY.txt:
Glyph refactoring
2002-12-11 09:29 henry
* [r501] src/FTFont.cpp:
Minor change to bbox functions
2002-12-11 09:29 henry
* [r500] include/FTBBox.h, src/FTBBox.cpp:
Added another c_stor and operator +=
Fixed 'add' functions
2002-12-11 09:28 henry
* [r499] include/FTExtrdGlyph.h, include/FTGlyph.h,
include/FTOutlineGlyph.h, include/FTPolyGlyph.h,
src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTGlyph.cpp,
src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp:
Removed redundant members.
Moved BBox and advance to FTGlyph c_stor
2002-12-11 09:25 henry
* [r498] src/FTGLTextureFont.cpp:
Had to increase padding now that FTBBox uses floats.
2002-12-11 07:41 henry
* [r497] include/FTVectoriser.h, src/FTVectoriser.cpp:
Replaced contourList FTVector with an array.
2002-12-10 09:01 henry
* [r496] src/FTContour.cpp, src/FTVectoriser.cpp:
Minor fix
2002-12-10 08:48 henry
* [r495] include/FTBBox.h:
Changed size calculations to use floats
2002-12-10 08:38 henry
* [r494] include/FTFont.h, include/FTSize.h, src/FTFont.cpp,
src/FTGLTextureFont.cpp, src/FTSize.cpp:
Changed size calculations to use floats
2002-12-08 09:39 henry
* [r493] src/FTVectoriser.cpp:
WIN32 function pointer typedef
2002-12-08 08:58 henry
* [r492] HISTORY.txt:
Refactored FTContour
2002-12-08 08:56 henry
* [r491] include/FTVectoriser.h, src/FTVectoriser.cpp:
Fixes for broken glyphs. Uses numberOfContours as a flag that the
glyph is valid.
2002-12-08 07:01 henry
* [r490] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp:
Minor tidy up
2002-12-08 06:57 henry
* [r489] include/FTExtrdGlyph.h, include/FTOutlineGlyph.h,
include/FTPolyGlyph.h, src/FTExtrdGlyph.cpp,
src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp:
Made vectoriser a local variable
2002-12-08 06:51 henry
* [r488] include/FTOutlineGlyph.h, src/FTOutlineGlyph.cpp:
Removed an unnecessary memory allocation
2002-12-08 05:12 henry
* [r487] docs/html.tar.gz, mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Updated for FTContour refactoring
2002-12-08 05:07 henry
* [r486] include/FTVectoriser.h, src/FTVectoriser.cpp:
Removed redundant member
2002-12-08 04:49 henry
* [r485] include/FTContour.h:
Removed freetype includes
2002-12-08 04:40 henry
* [r484] include/FTVectoriser.h, src/FTVectoriser.cpp:
Refactored FTContour - moved it into its own file
2002-12-08 04:38 henry
* [r483] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp:
Refactored FTContour
2002-12-08 04:37 henry
* [r482] include/FTContour.h, src/FTContour.cpp:
Moved from FTVectoriser to own file
2002-12-05 10:23 henry
* [r481] src/FTVectoriser.cpp:
Minor fix up
2002-12-05 09:33 henry
* [r480] include/FTVectoriser.h, src/FTVectoriser.cpp:
Refactored variables in Process()
Changed Process to void
Test in FTVectoriser c_stor
2002-12-05 06:47 henry
* [r479] demo/FTGLDemo.cpp:
Fixed path
2002-12-05 06:47 henry
* [r478] include/FTVectoriser.h:
Added docs
2002-12-05 06:46 henry
* [r477] src/FTVectoriser.cpp:
Refactored variable names
2002-12-05 06:11 henry
* [r476] include/FTVectoriser.h, src/FTVectoriser.cpp:
Refactored variable names
Removed Point()
Added docs
2002-12-05 06:01 henry
* [r475] include/FTVectoriser.h:
Fixed comments
2002-12-05 05:59 henry
* [r474] include/FTGlyphContainer.h:
Made numGlyphs unsigned
2002-12-04 09:02 henry
* [r473] HISTORY.txt, docs/html.tar.gz:
Updating for 141
2002-12-04 08:20 henry
* [r472] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Error checking in Add
Un-virtualised some functions
Minor tidy ups
2002-12-04 07:03 henry
* [r471] include/FTFont.h, include/FTGlyphContainer.h:
Fixed documentation
2002-12-04 06:58 henry
* [r470] include/FTFont.h:
Fixed documentation
2002-12-04 06:21 henry
* [r469] src/FTVectoriser.cpp:
typedef for mips and linux
2002-12-04 06:19 henry
* [r468] include/FTFont.h, src/FTFont.cpp:
Error handling in Attach
2002-12-02 06:40 henry
* [r467] docs/html.tar.gz:
Preparing for 1.41
2002-12-02 06:35 henry
* [r466] HISTORY.txt, TODO.txt, mac/FTGL.pbproj/henry.pbxuser:
Getting ready for 1.41
2002-12-02 06:32 henry
* [r465] demo/FTGLDemo.cpp:
Rewriting to make it more 'correct'
2002-12-02 06:32 henry
* [r464] src/FTSize.cpp:
Minor bug fix
2002-12-02 06:31 henry
* [r463] include/FTLibrary.h, src/FTLibrary.cpp:
Renamed lib to library.
Got rid of the version stuff.
Unvirtualised some functions
2002-12-02 06:28 henry
* [r462] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Got rid of the pre cache flag
2002-12-02 06:27 henry
* [r461] src/FTGLTextureFont.cpp:
Minor tidy up.
2002-12-02 06:27 henry
* [r460] include/FTFont.h, src/FTFont.cpp:
Fixed BBox null string bug.
Better error handling.
Got rid of pre cache flag.
2002-12-01 08:45 henry
* [r459] test/demo.cpp:
Added Idle function
2002-12-01 07:52 henry
* [r458] src/FTFace.cpp, src/FTSize.cpp:
Better error handling
2002-12-01 07:50 henry
* [r457] include/FTCharmap.h, src/FTCharmap.cpp:
Better error handling and remove platform/encoding function
2002-11-29 10:42 henry
* [r456] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
FTBBox and FTPoint
2002-11-29 10:41 henry
* [r455] mac/FTGL.pbproj/henry.pbxuser:
FTBBox and FTPoint
2002-11-29 08:21 henry
* [r454] include/FTFace.h, src/FTFace.cpp:
Improved error handling
2002-11-29 08:20 henry
* [r453] include/FTCharmap.h:
Removed redundant include
2002-11-29 08:18 henry
* [r452] include/FTBBox.h:
Added Move and operator +
2002-11-29 08:13 henry
* [r451] include/FTFont.h, src/FTFont.cpp:
Got rid of Close() and improved som error handling
2002-11-29 07:58 henry
* [r450] src/FTBBox.cpp:
Operator +
2002-11-28 09:43 henry
* [r449] src/FTBitmapGlyph.cpp:
Added a static cast
2002-11-28 09:43 henry
* [r448] include/FTFont.h, include/FTGLTextureFont.h:
Got rid of inline for irix
2002-11-28 09:41 henry
* [r447] include/FTCharToGlyphIndexMap.h:
Changed cstdlib to stdlib.h for irix
2002-11-28 09:41 henry
* [r446] src/FTFace.cpp:
Set default values for kernAdvance
2002-11-28 09:40 henry
* [r445] include/FTGlyph.h:
Changed FT_Vector for FTPoint
2002-11-28 09:40 henry
* [r444] src/FTGlyphContainer.cpp:
Got rid of the tabs
2002-11-28 09:39 henry
* [r443] src/FTVectoriser.cpp:
Changed the gluTess callback function definitions
2002-11-28 08:23 henry
* [r442] include/FTSize.h, include/FTVector.h,
include/FTVectoriser.h:
Changes to Documentation
2002-11-28 08:21 henry
* [r441] include/FTBBox.h, include/FTCharmap.h, include/FTFace.h,
include/FTFont.h, include/FTGLExtrdFont.h, include/FTLibrary.h,
include/FTPoint.h, src/FTGLBitmapFont.cpp:
Documentation Changes
2002-11-28 08:01 henry
* [r440] demo/FTGLDemo.cpp:
Removed some redundant code
2002-11-28 08:00 henry
* [r439] include/FTBitmapGlyph.h, include/FTExtrdGlyph.h,
include/FTGlyph.h, include/FTOutlineGlyph.h,
include/FTPixmapGlyph.h, include/FTPolyGlyph.h,
include/FTTextureGlyph.h, src/FTBitmapGlyph.cpp,
src/FTExtrdGlyph.cpp, src/FTGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp,
src/FTTextureGlyph.cpp:
Changed FT_Vector to FTPoint
2002-11-27 07:47 henry
* [r438] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Changes for FTPoint
2002-11-27 07:46 henry
* [r437] src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp:
Changes to the glyph loading flags
2002-11-27 07:39 henry
* [r436] include/FTFont.h, src/FTFont.cpp:
Changes for FTPoint & FTBBox
2002-11-27 07:38 henry
* [r435] include/FTFace.h, src/FTFace.cpp:
Changes for FTPoint
2002-11-27 07:34 henry
* [r434] include/FTVectoriser.h:
Fixed an FTPoint
2002-11-27 07:12 henry
* [r433] include/FTVectoriser.h, src/FTVectoriser.cpp:
Moved FTPoint to its own file
2002-11-27 06:35 henry
* [r432] include/FTBBox.h, include/FTPoint.h, src/FTPoint.cpp:
Moved these classes to their own files
2002-11-27 06:20 henry
* [r431] include/FTFont.h, include/FTLibrary.h,
include/FTVectoriser.h, src/FTExtrdGlyph.cpp, src/FTFont.cpp,
src/FTGLExtrdFont.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTVectoriser.cpp:
Tidied up some float declarations
2002-11-23 09:04 henry
* [r430] src/FTFace.cpp:
Added cast to FT_New_Memory_Face
2002-11-23 09:02 henry
* [r429] src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLTextureFont.cpp:
Fixed PushAttrib call
2002-11-21 06:26 henry
* [r428] src/FTTextureGlyph.cpp:
Added glPixelStorei call to fix corrupt glyphs
2002-10-23 08:22 henry
* [r426] test, test/demo.cpp, test/mmgr.cpp, test/mmgr.h,
test/nommgr.h:
Added test app
2002-10-23 08:19 henry
* [r425] HISTORY.txt, README.txt, TODO.txt:
Release 1.4
2002-10-23 08:07 henry
* [r424] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Updated for 1.4
2002-10-23 07:04 henry
* [r423] src/FTGLPixmapFont.cpp, src/FTPixmapGlyph.cpp:
Minor formatting and moved Push Attribs to the font
2002-10-23 07:04 henry
* [r422] src/FTBitmapGlyph.cpp:
Minor formatting
2002-08-28 09:46 henry
* [r421] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp:
Reduced texture ID array size
2002-08-28 09:45 henry
* [r420] HISTORY.txt:
Added release date
2002-08-27 07:45 henry
* [r419] HISTORY.txt, README.txt, TODO.txt:
Updated for 1.4
2002-08-27 07:45 henry
* [r418] docs/html.tar.gz:
Updated dox
2002-08-27 07:13 henry
* [r417] include/FTCharToGlyphIndexMap.h:
Inlined the whole class
2002-08-27 07:12 henry
* [r416] include/FTCharmap.h, include/FTExtrdGlyph.h,
include/FTFace.h, include/FTFont.h, include/FTGLTextureFont.h,
include/FTGlyphContainer.h, include/FTSize.h,
include/FTVectoriser.h:
Updated dox comments
2002-08-26 10:18 henry
* [r415] include/FTVector.h:
Updated to VTK latest
2002-08-26 10:17 henry
* [r414] src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp:
Removed mmgr
2002-08-26 09:01 henry
* [r413] include/FTBitmapGlyph.h:
Made some ints unsigned
2002-08-26 08:57 henry
* [r412] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Removed std::vector
2002-08-26 08:53 henry
* [r411] src/FTPixmapGlyph.cpp:
Added some braces
2002-08-26 08:51 henry
* [r410] include/FTVectoriser.h:
Updated comments
2002-08-26 08:49 henry
* [r409] src/FTBitmapGlyph.cpp:
Made some ints unsigned
2002-07-04 01:03 henry
* [r408] include/FTFont.h:
Added a comment about impicit conversions
2002-07-01 09:48 henry
* [r407] src/FTTesselationVector.h:
FTVector is now a template
2002-07-01 09:47 henry
* [r406] src/FTContourVector.h, src/FTGlyphVector.h,
src/FTPointVector.h:
FTvector is now a template
2002-07-01 09:44 henry
* [r405] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h:
Inlined private functions
2002-06-22 23:35 henry
* [r404] include/FTVector.h, include/FTVectoriser.h:
Made FTVector a template
2002-06-22 23:34 henry
* [r403] include/FTFace.h, src/FTFace.cpp:
Made charmap() const
2002-06-22 23:33 henry
* [r402] include/FTFont.h, include/FTSize.h, src/FTFont.cpp,
src/FTSize.cpp:
Added accessors for point size
2002-06-21 08:32 henry
* [r401] HISTORY.txt, README.txt, TODO.txt,
mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj:
Merged 1.32 into main branch
2002-06-21 08:30 henry
* [r400] win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo,
win32_vcpp/ftgl_demo/demo.cpp,
win32_vcpp/ftgl_demo/ftgl_demo.dsp,
win32_vcpp/ftgl_demo/ftgl_demo_2.dsp, win32_vcpp/ftgl_dll,
win32_vcpp/ftgl_dll/ftgl_dll.dsp, win32_vcpp/ftgl_static_lib,
win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp:
New VC porj
2002-06-21 08:30 henry
* [r399] win32_vcpp, win32_vcpp/README_WIN32.txt:
New VC proj
2002-06-21 08:29 henry
* [r398] demo/README.txt, mac/README.txt:
Merged 1.32 into 1.4
2002-06-21 08:23 henry
* [r397] include/FTVectoriser.h:
removed stl vector
2002-06-21 08:22 henry
* [r396] demo/FTGLDemo.cpp:
Added hash define for windows fonts
2002-06-21 08:22 henry
* [r395] src/FTFace.cpp:
Getting rid of magic numbers
2002-06-21 08:21 henry
* [r394] include/FTCharToGlyphIndexMap.h, include/FTVector.h,
src/FTContourVector.h, src/FTGlyphVector.h, src/FTPointVector.h,
src/FTTesselationVector.h:
Replacements for stl containers
2002-06-21 08:20 henry
* [r393] include/FTCharmap.h, src/FTCharmap.cpp:
Remove <map> replaced with FTCharToGlyphIndexMap
2002-06-20 08:40 henry
* [r392] license.txt:
Added 2002
2002-06-20 08:22 henry
* [r391] include/FTBitmapGlyph.h, include/FTCharmap.h,
include/FTExtrdGlyph.h, include/FTFace.h, include/FTFont.h,
include/FTGL.h, include/FTGLBitmapFont.h,
include/FTGLExtrdFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, include/FTGlyph.h,
include/FTGlyphContainer.h, include/FTLibrary.h,
include/FTOutlineGlyph.h, include/FTPixmapGlyph.h,
include/FTPolyGlyph.h, include/FTSize.h,
include/FTTextureGlyph.h, include/FTVectoriser.h,
src/FTBitmapGlyph.cpp, src/FTCharmap.cpp, src/FTExtrdGlyph.cpp,
src/FTFace.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp,
src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlyph.cpp,
src/FTGlyphContainer.cpp, src/FTLibrary.cpp,
src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp,
src/FTVectoriser.cpp:
Changes for VTK
Removed tabs
Removed mmgr
Optimisations for loading pixel based fonts
Minor changes
2002-06-12 08:56 henry
* [r390] include/FTFace.h, include/FTFont.h, include/FTGL.h,
src/FTFace.cpp, src/FTFont.cpp:
Merged FTGL_1_3_2
2002-06-12 08:18 henry
* [r389] src/FTGLTextureFont.cpp:
Reformatted and merged with 1.32
2002-02-16 06:19 henry
* [r369] mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
Changed FTGLDemo to .cpp
2002-02-16 06:19 henry
* [r368] src/FTGLBitmapFont.cpp:
Removed FT_DoneGlyph and fix state stuff
2002-02-16 06:18 henry
* [r367] src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp:
removed FT_Done_Glyph
2002-02-16 06:17 henry
* [r366] README.txt:
Added Ellers and Marcelo to contributors
2002-02-16 06:17 henry
* [r365] src/FTPixmapGlyph.cpp:
hardly worth mentioning
2002-02-16 06:15 henry
* [r364] include/FTGlyph.h:
Changed formatting
2002-02-16 06:14 henry
* [r363] TODO.txt:
Added glGet -> display list problem
2002-02-16 05:42 henry
* [r362] demo/tb.h, demo/trackball.h:
Added EXTERN "C"
2002-02-16 05:12 henry
* [r360] demo/FTGLDemo.c, demo/FTGLDemo.cpp:
Renamed from *.c to *.cpp
2002-02-16 00:04 henry
* [r359] src/FTFont.cpp:
Put glyphcontainer back in
2002-02-09 23:56 henry
* [r358] docs/FTGL.html:
Added an faq about missing freetype includes
2002-02-06 02:41 henry
* [r357] src/FTGLPixmapFont.cpp:
nothing
2002-02-06 02:40 henry
* [r356] include/FTFont.h, src/FTFont.cpp:
inlined the ascender and descender functions
2002-02-05 09:50 henry
* [r355] docs/FTGL.html:
a bit more
2002-02-02 01:48 henry
* [r354] include/FTTextureGlyph.h, src/FTTextureGlyph.cpp:
Removed redundant data and numGreys fields and changed render
function slightly
2002-02-02 00:16 henry
* [r353] src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp,
src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp:
Removed FT_DoneGlyph and clean up delete []
2002-02-02 00:15 henry
* [r352] src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp:
Moved FT_Done_Glyph from FT*Glyph
2002-01-28 06:56 henry
* [r346] docs/FTGL.html:
Added note in font manager sample code about the inline static
problem.
2002-01-28 06:24 henry
* [r345] demo/FTGLDemo.c:
Added comment about font path
2002-01-26 21:58 henry
* [r342] README.txt, TODO.txt:
Updated foe 1.3b5
2002-01-26 21:58 henry
* [r341] HISTORY.txt:
Updated for 1.3b5
2002-01-25 22:48 henry
* [r340] include/FTFont.h:
More comments
2002-01-25 22:34 henry
* [r339] include/FTGLTextureFont.h:
Updated comments
2002-01-25 22:34 henry
* [r338] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp:
Removed some redundant members and made then local
2002-01-24 09:43 henry
* [r337] src/FTExtrdGlyph.cpp:
Removed the winding code. Reverted back to broken outline.flag.
Glyph winding still broken!!!
2002-01-24 09:42 henry
* [r336] include/FTVectoriser.h, src/FTVectoriser.cpp:
Fixed compiler warnings (size_t)
2002-01-24 09:41 henry
* [r335] src/FTPolyGlyph.cpp:
Removed complier warnings
2002-01-24 09:40 henry
* [r334] demo/FTGLDemo.c, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp:
Set the correct state for font type
2002-01-12 00:38 henry
* [r333] docs/FTGL.html:
More work on docs
2002-01-10 07:14 henry
* [r332] demo/FTGLDemo.c:
Bbox now uses float
2002-01-09 20:54 henry
* [r331] HISTORY.txt:
Updated Jan 2002
2002-01-09 20:54 henry
* [r330] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTTextureGlyph.cpp:
Added a check for zero dimension bitmaps
2002-01-09 20:35 henry
* [r329] include/FTFont.h, include/FTGlyph.h, src/FTFont.cpp:
FTBbox now uses floats rather then ints
2002-01-09 20:34 henry
* [r328] include/FTCharmap.h:
Fixed up a comment
2002-01-09 20:34 henry
* [r327] src/FTExtrdGlyph.cpp:
Minor tidy up
2002-01-09 20:33 henry
* [r326] src/FTGlyphContainer.cpp:
More const stuff
Replaced the for loop with a resize to fill the vector with null
2002-01-09 20:32 henry
* [r325] include/FTGlyphContainer.h:
More const stuff
2001-12-14 02:52 henry
* [r324] src/FTExtrdGlyph.cpp:
Added math.h header
2001-12-11 23:11 henry
* [r323] demo/README.txt:
Added compilation note
2001-12-11 23:04 henry
* [r322] demo/tb.c:
fixed glut header for OSX
2001-12-11 22:52 henry
* [r320] README.txt, TODO.txt:
1.3b4
2001-12-11 22:46 henry
* [r319] demo/README.txt:
initial import
2001-12-11 03:56 henry
* [r318] include/FTFont.h, src/FTFont.cpp:
rejigged the advance and render functions to make them
sleaner...not really
2001-12-11 03:55 henry
* [r317] include/FTExtrdGlyph.h, include/FTOutlineGlyph.h,
include/FTPolyGlyph.h, include/FTVectoriser.h,
src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTVectoriser.cpp:
Replaced double with FTGL_DOUBLE typedef
2001-12-11 03:54 henry
* [r316] HISTORY.txt:
1.3b4
2001-12-11 03:53 henry
* [r315] src/FTCharmap.cpp, src/FTGLTextureFont.cpp:
Tidied up includes
2001-12-11 03:42 henry
* [r314] TODO.txt:
Fixed FTExtrdGlyph bug
OSX proj
2001-12-11 03:42 henry
* [r313] demo/FTGLDemo.c:
Tidy ups for release 1.3
2001-12-11 01:31 henry
* [r312] mac/FTGL.pbproj, mac/FTGL.pbproj/henry.pbxuser,
mac/FTGL.pbproj/project.pbxproj:
initial import
2001-12-11 01:26 henry
* [r311] mac/README.txt:
Added a note about the linker problem when building freetype
2001-12-10 23:35 henry
* [r310] demo/FTGLDemo.c:
Added edit mode, labels and a bunch more
2001-12-10 21:53 henry
* [r309] include/FTBitmapGlyph.h, include/FTCharmap.h,
include/FTGlyph.h, include/FTGlyphContainer.h,
include/FTPixmapGlyph.h, include/FTSize.h,
include/FTTextureGlyph.h:
Tidied up includes
2001-12-10 21:52 henry
* [r308] include/FTLibrary.h:
Clarified comment about init()
2001-12-10 21:35 henry
* [r307] README.txt:
Added site link about texture caching
2001-12-10 21:30 henry
* [r306] src/FTBitmapGlyph.cpp, src/FTFace.cpp,
src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGlyph.cpp,
src/FTGlyphContainer.cpp, src/FTLibrary.cpp,
src/FTPixmapGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp:
Added include for mmgr
2001-11-29 05:10 henry
* [r305] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp:
Added Winding fuction to colc area for a full contour rather than
part of one
2001-11-29 01:13 henry
* [r304] include/FTGL.h:
Added #define and a couple of typedefs for debugging
2001-11-29 01:12 henry
* [r303] src/FTGLTextureFont.cpp:
Added an include for mmgr
2001-11-29 01:12 henry
* [r302] src/FTCharmap.cpp:
Added include for mmgr
2001-11-28 23:04 henry
* [r301] src/FTExtrdGlyph.cpp:
Added a work around for a bug in freetype. Calcs the winding
direction of the contour
2001-11-28 03:16 henry
* [r300] TODO.txt:
Added FTExtrdGlyph bug
2001-11-27 04:52 henry
* [r299] include/FTVectoriser.h:
Added a comment
2001-11-25 20:40 henry
* [r298] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp:
Fixed the space bug AGAIN.
2001-11-15 05:19 henry
* [r297] TODO.txt:
Added a couple of bugs
2001-11-15 05:16 henry
* [r296] docs/FTGL.html:
Added a couple of web links
2001-11-15 05:14 henry
* [r295] docs/FTGL.html:
Added email discussion about sizes
2001-11-14 03:23 henry
* [r294] demo/FTGLDemo.c:
Enabled lighting for texture font
2001-11-13 20:10 henry
* [r293] demo/FTGLDemo.c:
Can now switch between font types.
2001-11-13 20:09 henry
* [r292] docs/FTGL.html:
Minor fixes, unix line endings
2001-11-13 05:45 henry
* [r290] src/FTGLTextureFont.cpp:
Fixed up the xOffset ( +padding)
2001-11-13 05:45 henry
* [r289] include/FTFont.h:
Added an empty virtual depth function
2001-11-13 01:53 henry
* [r288] HISTORY.txt, README.txt, TODO.txt:
Updated fro v1.3b3
2001-11-13 01:35 henry
* [r287] demo/FTGLDemo.c:
Added some comments
2001-11-12 23:38 henry
* [r286] FTGL.jpg:
turned into a gif and moved into the docs dir
2001-11-12 23:36 henry
* [r285] mac/README.txt:
updated for v1.3
2001-11-12 23:34 henry
* [r284] mac/ftlib.prj:
Updated for new texture font code and Extruded fonts
2001-11-12 22:28 henry
* [r283] include/FTGLTextureFont.h, include/FTTextureGlyph.h,
src/FTGLTextureFont.cpp, src/FTTextureGlyph.cpp:
Refactored texture fonts to ba able to load glyphs on the
fly...uses glTexSubImage2D. They are now more in line with the
rest of the fonts.
2001-11-12 22:26 henry
* [r282] src/FTFont.cpp:
fix me
2001-11-12 04:14 henry
* [r281] include/FTFont.h:
Made MakeGlyphList() virtual again
2001-11-12 02:45 henry
* [r280] src/FTPolyGlyph.cpp:
Set the bounding box
2001-11-12 02:44 henry
* [r279] src/FTTextureGlyph.cpp:
Set the bounding box
Tidied up some code
2001-11-12 02:44 henry
* [r278] src/FTVectoriser.cpp:
gluTesselation now feeds data to internal FTMesh class
2001-11-12 02:43 henry
* [r277] include/FTVectoriser.h:
changed ftPoint to use doubles and inlined a lot of stuff
2001-11-12 02:42 henry
* [r276] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Added bounding box function
2001-11-12 02:41 henry
* [r275] include/FTGlyph.h:
Added FTBbox
2001-11-12 02:41 henry
* [r274] include/FTOutlineGlyph.h, include/FTPolyGlyph.h:
Changed type of glList
2001-11-12 02:40 henry
* [r273] src/FTOutlineGlyph.cpp:
Set the bounding box and re-order some operations
2001-11-12 02:39 henry
* [r272] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp:
Set the bounding box
2001-11-12 02:38 henry
* [r271] demo/FTGLDemo.c:
Changed blend func
2001-11-12 02:34 henry
* [r270] include/FTGL.h:
Minor comments
2001-11-12 02:34 henry
* [r269] src/FTFont.cpp:
Added bounding box functions
2001-11-12 02:33 henry
* [r268] include/FTFont.h:
Added bounding box function
un-virtualised some functions
fixed comments
2001-11-12 00:00 henry
* [r267] include/FTExtrdGlyph.h, include/FTGLExtrdFont.h,
src/FTExtrdGlyph.cpp, src/FTGLExtrdFont.cpp:
Extrusion code merged from 1.3beta2
2001-11-11 23:59 henry
* [r266] demo, demo/FTGLDemo.c, demo/tb.c, demo/tb.h,
demo/trackball.c, demo/trackball.h:
Initial import of demo
2001-11-11 23:58 henry
* [r265] docs/FTGL_1_3.gif, docs/images, docs/images/ftgldemo.jpg,
docs/images/metrics.png:
Initial import
2001-11-11 23:57 henry
* [r264] docs/FTGL.html, docs/FTGL.txt:
Changed to html from txt
2001-11-11 23:26 henry
* [r263] cleanup:
unix line endings....
2001-11-08 21:05 henry
* [r238] cleanup, docs/ftgl_dox:
Unix line endings
2001-11-08 20:50 henry
* [r237] HISTORY.txt, README.txt, TODO.txt:
Updated for 1.21
2001-11-08 20:36 henry
* [r236] src/FTBitmapGlyph.cpp, src/FTVectoriser.cpp:
Minor fixes for windows warnings
2001-11-05 22:32 henry
* [r222] include/FTPolyGlyph.h, include/FTVectoriser.h,
src/FTPolyGlyph.cpp, src/FTVectoriser.cpp:
Refactoring FTVectoriser & FTPolyGlyph to anable access to
tessellation data
2001-11-05 22:02 henry
* [r219] HISTORY.txt, README.txt, TODO.txt, docs/html.tar.gz:
Updated for 1.2
2001-11-05 21:01 henry
* [r218] README.txt:
Removed the stuff about restricted sets of glyphs. It happens for
free now:)
2001-11-05 21:00 henry
* [r217] src/FTGLTextureFont.cpp:
Fixed a bug that was overunning the glyph list
2001-11-05 20:59 henry
* [r216] include/FTGLTextureFont.h:
made MakeGlyphList virtual
2001-11-05 20:59 henry
* [r215] src/FTGlyphContainer.cpp:
Added a test for null pointers in the d_stor
2001-11-05 20:58 henry
* [r214] TODO.txt:
Added note about gluTessNormal
2001-11-05 20:58 henry
* [r213] docs/FTGL.txt:
More words of wisdom
2001-11-04 04:55 henry
* [r212] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTGLTextureFont.h,
include/FTGlyphContainer.h, src/FTFont.cpp,
src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGlyphContainer.cpp:
Unix line endings
2001-11-04 04:53 henry
* [r211] include/FTGL.h:
unix line endings
2001-11-04 04:33 henry
* [r210] include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTGLTextureFont.h,
include/FTGlyphContainer.h, src/FTFont.cpp,
src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlyphContainer.cpp:
Changes to allow glyphs to be loaded on the fly...
MakeGlyphList is no longer pure virtual.
New function MakeGlyph is pure virtual
Open now has a flag for pre-cache
GlyphContainer builds a list of null pointers
advance and render functions check if glyph has been loaded and
loads it if it has'nt
2001-11-02 01:18 henry
* [r209] TODO.txt:
Added note about padding
2001-11-02 01:17 henry
* [r208] HISTORY.txt:
Added 1.1 tag
2001-11-02 01:17 henry
* [r207] include/FTGL.h:
Got rid of non standard glext.h and replaced with defines
2001-11-01 20:07 henry
* [r206] src/FTSize.cpp:
Added brackets to clear Win32 warning
2001-11-01 20:05 henry
* [r205] src/FTGLTextureFont.cpp:
Added padding to size calculations
2001-10-31 02:00 henry
* [r203] docs/html.tar.gz:
Initial import. Archived to fix filename problem
2001-10-31 00:05 henry
* [r202] HISTORY.txt, README.txt, TODO.txt:
Updated for 1.1
2001-10-30 23:54 henry
* [r201] mac/ftlib.prj:
renamed the source files to .cpp
2001-10-30 23:23 henry
* [r200] include/FTVectoriser.h, src/FTOutlineGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTVectoriser.cpp:
Renamed functions in prep for extruded glyphs
Ingest->Process
Output->MakeOutline
2001-10-30 21:35 henry
* [r199] docs/FTGL.txt:
stuff
2001-10-30 21:30 henry
* [r198] mac/README.txt:
Fixed typos
2001-10-30 05:19 henry
* [r197] docs/README.txt:
Docs fixed so don't need this
2001-10-30 05:18 henry
* [r196] docs/FTGL.txt:
Initial import
2001-10-30 02:51 henry
* [r195] src/FTCharmap.cpp:
Fixed c_stor to ensure that a valid charmap is created
2001-10-29 20:09 henry
* [r194] include/FTFont.h, include/FTGLTextureFont.h,
include/FTGlyphContainer.h, include/FTTextureGlyph.h,
src/FTGLTextureFont.cpp, src/FTGlyphContainer.cpp,
src/FTTextureGlyph.cpp:
Minor changes to fix some implicit type conversions
2001-10-28 04:23 henry
* [r193] cleanup, docs/ftgl_dox:
Initial import
2001-10-28 04:06 henry
* [r192] src/FTGLTextureFont.cpp:
Got rid of the static in FTTextureGlyph and tidied the code up
2001-10-28 04:06 henry
* [r191] src/FTGLBitmapFont.cpp:
Removed a couple of comments
2001-10-28 04:05 henry
* [r190] include/FTTextureGlyph.h, src/FTTextureGlyph.cpp:
Got rid of the static and moved the glBegin/glEnd pairs
2001-10-28 04:04 henry
* [r189] include/FTGL.h:
Added test for GL_TEXTURE_2D_BINDING_EXT and include for glext.h
2001-10-28 04:04 henry
* [r188] mac/README.txt:
Added note about STL
2001-10-26 02:42 henry
* [r187] docs, docs/README.txt:
Initial import
2001-10-25 23:11 henry
* [r186] COPYING.txt, FTGL.jpg, license.txt, mac, mac/README.txt,
mac/ftlib.prj:
Initial import
2001-10-25 21:39 henry
* [r184] HISTORY.txt, README.txt, TODO.txt:
Updated for 1.01
2001-10-25 20:54 henry
* [r183] src/FTGLTextureFont.cpp:
Removed the glEnable( GL_TEXTURE_2D) call
2001-10-25 20:53 henry
* [r182] include/FTTextureGlyph.h:
Added a note about replacing activeTextureID
2001-10-25 04:33 henry
* [r181] src/FTPolyGlyph.cpp:
Removed the glu header
2001-10-25 04:32 henry
* [r180] include/FTGL.h:
Added the glu headers
2001-10-25 04:03 henry
* [r179] src/FTCharmap.cpp, src/FTFace.cpp,
src/FTGLTextureFont.cpp, src/FTSize.cpp, src/FTVectoriser.cpp:
Re-ordered initialisation lists to keep project builder happy
(MAC OSX)
2001-10-25 04:01 henry
* [r178] include/FTFont.h:
Made numGlyphs unsigned
2001-10-25 03:57 henry
* [r177] include/FTGlyphContainer.h:
Made the destructor virtual
2001-10-25 02:14 henry
* [r176] include/FTGL.h:
Changed include to allow for bloody Apple's new OpenGL on OSX
2001-10-25 02:01 henry
* [r175] include/FTGLBitmapFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp:
Removed redundant tempGlyph members
2001-10-24 21:21 henry
* [r174] include/FTGlyphContainer.h, include/FTVectoriser.h:
Fixing up the comments
2001-10-24 03:31 henry
* [r172] HISTORY.txt, TODO.txt:
Version 1.0 release
2001-10-24 03:31 henry
* [r171] README.txt:
Version 1.0 release
Added note about glyphs
2001-10-23 03:05 henry
* [r170] src/FTGLTextureFont.cpp:
Enable texturing
2001-10-14 21:53 henry
* [r169] include/FTVectoriser.h:
Updated comments and removed redundant member vars
2001-10-14 21:52 henry
* [r168] include/FTBitmapGlyph.h, include/FTCharmap.h,
include/FTFace.h, include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTGLTextureFont.h,
include/FTGlyph.h, include/FTGlyphContainer.h,
include/FTLibrary.h, include/FTOutlineGlyph.h,
include/FTPixmapGlyph.h, include/FTPolyGlyph.h,
include/FTTextureGlyph.h:
Updated comments
2001-10-10 22:03 henry
* [r167] src/FTBitmapGlyph.cpp, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLTextureFont.cpp, src/FTLibrary.cpp,
src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp:
Minor changes, mainly to includes, for the windows port
2001-10-10 22:01 henry
* [r166] include/FTGL.h:
Added the conditional compilation stuff for Windows DLL
2001-10-10 22:00 henry
* [r165] include/FTCharmap.h:
Added FTGL_EXPORT to class declaration for the windows port
2001-10-10 21:59 henry
* [r164] include/FTBitmapGlyph.h, include/FTFace.h,
include/FTFont.h, include/FTGLBitmapFont.h,
include/FTGLOutlineFont.h, include/FTGLPixmapFont.h,
include/FTGLPolygonFont.h, include/FTGLTextureFont.h,
include/FTGlyph.h, include/FTGlyphContainer.h,
include/FTLibrary.h, include/FTOutlineGlyph.h,
include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTSize.h,
include/FTTextureGlyph.h:
Added FTGL_EXPORT to class declarations for the windows port
2001-10-10 21:53 henry
* [r163] include/FTVectoriser.h:
Added FTGL_EXPORT for windows
2001-09-30 23:03 henry
* [r162] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
Changed these to FTOutlineGlyph. Removed these files
2001-09-30 23:01 henry
* [r160] include/FTOutlineGlyph.h, src/FTOutlineGlyph.cpp:
These used to be FTVectorGlyph. Changed the name.
2001-09-30 23:00 henry
* [r159] include/FTGL.h:
Removed the redundant enums
2001-09-30 23:00 henry
* [r158] src/FTFace.cpp:
Clean up the FTCharmap
2001-09-30 22:59 henry
* [r157] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp:
Changed FTVectorGlyph to FTOutlineGlyph
2001-09-30 22:57 henry
* [r156] src/FTGLTextureFont.cpp:
Changed std::memset to memset. Added using namespace std.
This is for windows
2001-09-30 22:56 henry
* [r155] src/FTPolyGlyph.cpp:
Added CALLBACK to the gluTess callback function definitions. This
for windows.
2001-09-30 22:53 henry
* [r154] HISTORY.txt, README.txt, TODO.txt:
Beta 7
Split ReadMe into README, HISTORY and TODO files
2001-09-27 01:41 henry
* [r153] src/FTPolyGlyph.cpp:
Added tessellation winding rules
2001-09-27 01:40 henry
* [r152] src/FTVectoriser.cpp:
Added a test for an empty point list when adding points to a
contour.
2001-09-20 00:26 henry
* [r150] README.txt:
Beta 6 release
2001-09-20 00:22 henry
* [r149] include/FTFont.h, src/FTFont.cpp:
Removed redundant code. Added comments for Advancs()
2001-09-19 05:00 henry
* [r148] README.txt:
Implemented advance width function for strings
2001-09-19 04:54 henry
* [r147] include/FTFont.h, include/FTGlyphContainer.h,
src/FTFont.cpp, src/FTGlyphContainer.cpp:
Added functions to calc the advance width of a string
2001-09-19 04:54 henry
* [r146] src/FTTextureGlyph.cpp:
Minor changes
2001-09-19 01:50 henry
* [r145] include/FTGlyph.h:
Added accessor function for advance width
2001-09-17 22:53 henry
* [r144] include/FTCharmap.h, src/FTCharmap.cpp:
Set the default encoding
2001-09-17 21:02 henry
* [r143] README.txt:
Implemented and profiled new FTCharmap class
2001-09-17 21:00 henry
* [r142] src/FTSize.cpp:
Minor change to CharSize func
2001-09-17 21:00 henry
* [r141] include/FTGlyph.h, src/FTGlyph.cpp:
Comment changes
2001-09-17 20:59 henry
* [r140] include/FTFace.h, src/FTFace.cpp:
Implemented FTCharmap class
2001-09-17 20:58 henry
* [r139] include/FTCharmap.h, src/FTCharmap.cpp:
Initial revision
2001-09-16 21:54 henry
* [r138] README.txt:
Updated for BETA 6
2001-09-16 21:52 henry
* [r137] include/FTGLBitmapFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp:
Updated for changes in *Glyph classes.
Added unicode render function.
Updated comments
2001-09-16 21:50 henry
* [r136] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Added error code (err) to initialisation list
2001-09-16 21:49 henry
* [r135] include/FTBitmapGlyph.h, include/FTPixmapGlyph.h,
include/FTPolyGlyph.h, include/FTTextureGlyph.h,
src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp,
src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
Removed glyph index parameter from c_stor (see FTGlyph) and
updated comments
2001-09-16 21:31 henry
* [r134] include/FTVectoriser.h, src/FTVectoriser.cpp:
Minor tidy ups
2001-09-16 21:30 henry
* [r133] include/FTSize.h, src/FTSize.cpp:
Updated comments.
Added err and ftface to initialosation list
2001-09-16 21:29 henry
* [r132] src/FTFace.cpp, src/FTLibrary.cpp:
Added error code (err) to initialisation list
2001-09-16 21:28 henry
* [r131] include/FTFont.h, src/FTFont.cpp:
Updated comments and added a unicode render function
2001-09-16 21:27 henry
* [r130] include/FTGlyph.h, src/FTGlyph.cpp:
removed the glyphIndex member
2001-09-14 01:13 henry
* [r129] README.txt:
Updated for changes made while in the UK
2001-09-14 01:11 henry
* [r128] src/FTGLTextureFont.cpp:
Added FIXME comment for max number of textures
2001-09-14 00:42 henry
* [r127] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp:
The freetype glyph is now disposed of correctly after
initialsation
2001-09-14 00:40 henry
* [r126] src/FTFace.cpp:
Changed the order in which things are cleaned up when this object
is destroyed.
2001-09-14 00:39 henry
* [r125] src/FTFont.cpp:
No longer call face.close(). FTFace is responsible for closing
the face.
2001-09-14 00:38 henry
* [r124] include/FTFont.h:
Added more comments
2001-09-14 00:37 henry
* [r123] src/FTGlyph.cpp:
Removed FT_Done_Glyph from the d_tor. Glyph disposal is done
immediately after the glyph is processed.
2001-08-29 04:33 henry
* [r121] README.txt:
Updated for beta 5
2001-08-29 01:07 henry
* [r120] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp:
Removed the redundant pos.x in Render()
2001-08-28 23:04 henry
* [r119] include/FTFace.h, src/FTFace.cpp:
Moved the list of valid encoding symbols from the .cc to .h so it
appears in the docs.
2001-08-28 22:53 henry
* [r118] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp,
src/FTVectoriser.cpp:
Fixed a bug in FTVectoriser::Ingest() that caused non printing
glyphs ( eg spaces) to be ignored
2001-08-28 05:09 henry
* [r117] README.txt:
Updated for beta 5
2001-08-28 05:09 henry
* [r116] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp,
src/FTTextureGlyph.cpp:
Fixed the test for an invalid glyph format
2001-08-28 05:09 henry
* [r115] src/FTPolyGlyph.cpp:
reversed the test for glyph format = outline
2001-08-28 05:07 henry
* [r114] src/FTVectorGlyph.cpp:
Reversed the test for glyph format == oultline
2001-08-28 01:47 henry
* [r113] src/FTVectoriser.cpp:
Removed redundant static_cast<float>()
2001-08-28 01:12 henry
* [r112] include/FTFont.h, include/FTSize.h:
Fixed comments
2001-08-27 23:01 henry
* [r111] include/FTFont.h:
Updated comments
2001-08-27 22:03 henry
* [r110] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp:
If we get a NULL FT_Glyph we now report an error.
2001-08-27 21:40 henry
* [r109] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp:
Added a check for a NULL glyph
2001-08-27 21:32 henry
* [r108] include/FTFace.h, src/FTFace.cpp, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp:
Changed the return type of FTFace::Glyph() from a reference to a
pointer so I can return NULL on failure.
2001-08-27 21:29 henry
* [r107] include/FTBitmapGlyph.h, include/FTGlyph.h,
include/FTPixmapGlyph.h, include/FTTextureGlyph.h:
Minor change. Changed arg name in Render()
2001-08-27 03:33 henry
* [r106] README.txt:
Updated for beta 5
2001-08-27 03:16 henry
* [r105] include/FTGlyphContainer.h:
Started to add comments
2001-08-27 03:15 henry
* [r104] src/FTGlyph.cpp:
Minor change to FIXME comment
2001-08-27 03:15 henry
* [r103] include/FTGlyph.h, include/FTLibrary.h:
Updated comments
2001-08-27 03:11 henry
* [r102] src/FTPixmapGlyph.cpp:
Static cast float to unsigned char in bitmap code
2001-08-27 03:10 henry
* [r101] src/FTPolyGlyph.cpp:
update to reflect change in contourFlag in FTVectoriser
2001-08-27 00:57 henry
* [r100] include/FTVectoriser.h, src/FTVectoriser.cpp:
Changed the args for FTContour::AddPoint() to float to get rid of
warning. Also make more sense.
2001-08-26 22:53 henry
* [r99] src/FTFace.cpp:
Fixed a bug in the kerning code. Dims are in 1/64 pixels.
2001-08-26 22:30 henry
* [r98] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp:
Removed the numGlyphs hack
2001-08-26 22:28 henry
* [r97] include/FTVectoriser.h:
Made contourFlag private and added accessor function
2001-08-24 02:18 henry
* [r96] include/FTFace.h, include/FTFont.h, include/FTGlyph.h,
include/FTLibrary.h, include/FTSize.h:
Added JavaDoc comments
2001-08-24 02:17 henry
* [r95] src/FTLibrary.cpp:
Minor format change
2001-08-24 02:17 henry
* [r94] src/FTFace.cpp:
Added error checking in charSize().
Inserted some code comments to remind me how to set the encoding
properly
2001-08-24 02:16 henry
* [r93] src/FTBitmapGlyph.cpp, src/FTGlyphContainer.cpp,
src/FTPixmapGlyph.cpp:
Minor changes to comments
2001-08-24 02:06 henry
* [r92] include/FTVectoriser.h, src/FTVectoriser.cpp:
Made some magic numbers into constants
2001-08-22 22:58 henry
* [r91] src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp,
src/FTVectorGlyph.cpp:
Fixed the positional stuff in render(). Added leftside bearing
offset.
2001-08-22 03:40 henry
* [r90] README.txt:
Added profiling notes, updated todos.
2001-08-22 03:40 henry
* [r89] include/FTSize.h, src/FTSize.cpp:
Changed the return types for the size function to int
2001-08-21 03:33 henry
* [r88] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp:
Glyphs are know retrieved from the FTFace object rather than with
direct freetype calls.
2001-08-21 03:20 henry
* [r87] src/FTFace.cpp:
return type for CharIndex() made unsigned int
2001-08-20 22:51 henry
* [r86] include/FTBitmapGlyph.h, include/FTFace.h,
include/FTFont.h, include/FTGLTextureFont.h, include/FTGlyph.h,
include/FTGlyphContainer.h, include/FTPixmapGlyph.h,
include/FTPolyGlyph.h, include/FTSize.h,
include/FTTextureGlyph.h, src/FTBitmapGlyph.cpp, src/FTFace.cpp,
src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp,
src/FTGLTextureFont.cpp, src/FTGlyph.cpp,
src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp,
src/FTPolyGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp,
src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
Started being more strict with types eg integer indices and sizes
are now unsigned.
2001-08-20 22:36 henry
* [r85] include/FTFace.h, src/FTFace.cpp:
Added Glyph function
2001-08-20 21:44 henry
* [r84] include/FTLibrary.h, src/FTGLTextureFont.cpp:
Gerards fixes to compile under Linux
2001-08-19 22:49 henry
* [r83] README.txt:
Updated for beta 4
2001-08-19 22:43 henry
* [r82] include/FTGLTextureFont.h, include/FTTextureGlyph.h,
src/FTGLTextureFont.cpp, src/FTTextureGlyph.cpp:
Major change to enable multiple textures. If all the glyphs for a
given face and size don't fit within the max texture size we now
create as many textures as required and switch automatically when
rendering.
2001-08-19 22:40 henry
* [r81] include/FTSize.h, src/FTSize.cpp:
Changed the size stuff to use floats rather than ints.
Global height and width is now calculated using the bbox
2001-08-19 22:34 henry
* [r80] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
This now uses FTFace function rather than calling freetype
directly...better encapsulation and may allow future caching.
2001-08-19 22:32 henry
* [r79] include/FTFont.h, src/FTFont.cpp:
Updated to reflect changes in FTFace & FTGlyphContainer
2001-08-19 22:31 henry
* [r78] include/FTFace.h, src/FTFace.cpp:
Implemented charmap, CharIndex and kernAdvance functions. These
are now wrappers for the freetype functions and the rest of FTGL
should not call freetype directly.
2001-08-19 22:20 henry
* [r77] include/FTVectoriser.h:
removed the unused loop struct.
2001-08-16 06:15 henry
* [r76] src/FTGLPolygonFont.cpp:
Changed the mode in FT_Load_Glyph()
2001-08-16 06:14 henry
* [r75] src/FTGLOutlineFont.cpp:
Changed the mode in FT_load_Glyph()
Changed the blend function in render()
2001-08-12 22:05 henry
* [r74] README.txt:
Added TODO about sizes
2001-08-09 02:49 henry
* [r73] src/FTPolyGlyph.cpp:
Found memory leak in glCombine
2001-08-09 02:30 henry
* [r72] README.txt:
Result of memory testing, found a leak in FTPolyGlyph
2001-08-08 01:33 henry
* [r70] README.txt:
Updated for BETA 3
2001-08-08 01:33 henry
* [r69] include/FTFont.h, src/FTFont.cpp, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGlyphContainer.cpp:
Changes to the way charmaps are handled
2001-08-08 01:32 henry
* [r68] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp:
render() does not draw'invalid' glyphs
2001-08-08 01:30 henry
* [r67] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp:
Changes to the charmap handling and fixed TextureSize()
2001-08-07 21:32 henry
* [r66] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp,
src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp:
Tidied up the error stuff
2001-08-07 21:30 henry
* [r65] src/FTGLTextureFont.cpp:
Tidied up the error stuff and got rid of some redundant code.
Added a note about glyph bounding boxes
2001-08-07 21:28 henry
* [r64] src/FTGlyphContainer.cpp:
Added a note about kerning modes
2001-08-07 21:28 henry
* [r63] include/FTFont.h, src/FTFont.cpp:
Minor tidy ups.
Tidied up the error stuff
2001-08-07 21:26 henry
* [r62] src/FTFace.cpp:
Tidied up the err stuff
2001-08-07 21:25 henry
* [r61] include/FTLibrary.h, src/FTLibrary.cpp:
Added Error() stuff
2001-08-07 21:24 henry
* [r60] src/FTPolyGlyph.cpp:
Added comment about winding rules
2001-08-07 21:21 henry
* [r59] include/FTSize.h, src/FTSize.cpp:
Added Error().
Minor Tidy ups
Added Underline()...doesn't work yet
2001-08-07 01:03 henry
* [r58] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp:
Added a render function to set LINE_SMOOTH for anti aliased lines
2001-08-07 01:02 henry
* [r57] include/FTGLPixmapFont.h, src/FTGLPixmapFont.cpp:
Added a render function to set the alpha blend mode
2001-08-07 01:02 henry
* [r56] src/FTPixmapGlyph.cpp:
Now gets the current color and create the glyph pixmap based on
that.
2001-08-07 01:00 henry
* [r55] include/FTGLBitmapFont.h, src/FTGLBitmapFont.cpp:
Added a render function to set the pixelStore stuff previously
set by the bitmap glyph
2001-08-07 00:59 henry
* [r54] src/FTBitmapGlyph.cpp:
Moved the pixelStore stuff to BitmapFont
2001-08-06 21:01 henry
* [r53] README.txt:
Fixed char > 127 bug.
Added TODO about Unicode.
Added link to interesting website
2001-08-06 20:57 henry
* [r52] src/FTFont.cpp:
Changed char* to unsigend char* to fix bug when displaying chars
>127
2001-08-06 05:46 henry
* [r51] include/FTGLTextureFont.h:
Changed types for IRIX
2001-08-06 05:43 henry
* [r50] src/FTBitmapGlyph.cpp, src/FTGLTextureFont.cpp,
src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp,
src/FTTextureGlyph.cpp, src/FTVectorGlyph.cpp:
Added GL to openGL include paths
2001-08-06 04:29 henry
* [r49] include/FTVectoriser.h:
Added using namespace std
2001-08-05 22:35 henry
* [r47] README.txt:
Updated for BETA 2
2001-08-05 22:29 henry
* [r46] README.txt:
Added Description. Added TODOs. Comments about charSize problem.
2001-08-05 22:28 henry
* [r45] include/FTVectoriser.h, src/FTVectoriser.cpp:
const rampage:) added next2 to curve code
2001-08-05 22:22 henry
* [r44] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
Made render() arg const. delete contourList
2001-08-05 22:21 henry
* [r43] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp:
Minor tidy ups
2001-08-05 22:16 henry
* [r42] include/FTPixmapGlyph.h, src/FTPixmapGlyph.cpp:
Initialisation list. Made render() arg const.
2001-08-05 22:15 henry
* [r41] include/FTPolyGlyph.h, src/FTPolyGlyph.cpp:
Made render() arg const. Minor tidy ups
2001-08-05 21:46 henry
* [r40] src/FTGLPolygonFont.cpp:
Minor tidy ups
2001-08-05 21:44 henry
* [r39] include/FTTextureGlyph.h, src/FTTextureGlyph.cpp:
Made render() arg const. Initialisation list.
2001-08-05 21:43 henry
* [r38] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp:
Made return type of render() void.
Initialisation list.
TextureSize() complete
2001-08-05 21:41 henry
* [r37] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp:
Added FT_Error member. Minor tidy ups and fixed automatic
variable warning in render()
2001-08-05 21:39 henry
* [r36] include/FTGlyph.h, src/FTGlyph.cpp:
Minor tidy ups and made render() arg const
2001-08-05 21:39 henry
* [r35] include/FTFont.h, src/FTFont.cpp:
Minor tidy ups and fixed a couple of compiler warnings
2001-08-05 21:37 henry
* [r34] include/FTFace.h, src/FTFace.cpp:
Added FT_Error member and accessor function. Minor tidy ups
2001-08-05 21:35 henry
* [r33] include/FTBitmapGlyph.h, src/FTBitmapGlyph.cpp:
Made render() arg const
2001-08-05 21:34 henry
* [r32] include/FTGLBitmapFont.h, include/FTGLPixmapFont.h,
include/FTLibrary.h, src/FTGLBitmapFont.cpp,
src/FTGLPixmapFont.cpp, src/FTLibrary.cpp:
Minor tidy ups
2001-08-02 23:41 henry
* [r31] README.txt:
Added some TODO stuff
2001-08-02 23:00 henry
* [r29] README.txt:
Polygon fonts now work.
BETA release 1.0b1
2001-08-02 22:59 henry
* [r28] include/FTGLPolygonFont.h, include/FTPolyGlyph.h,
src/FTGLPolygonFont.cpp, src/FTPolyGlyph.cpp:
Polygon fonts now work.
2001-08-02 21:52 henry
* [r27] include/FTVectoriser.h, src/FTVectoriser.cpp:
Made the ftPoint struct an external class and added some helper
functions eg operator !=
Got rid of ftLoop, it's not needed now that I've tidied up the
curve parsing code (which fixed the Vivaldi Q bug)
Minor code tidy ups.
2001-08-02 21:49 henry
* [r26] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
Changed the cord data from floats to doubles...trying to debug
the glutess stuff in FTPolyGlyph!!
2001-08-02 21:47 henry
* [r25] README.txt:
Added a future section. Fixed the Vivaldi Q bug
2001-08-01 23:00 henry
* [r24] README.txt:
Updated for changes to FTVectorGlyph.
2001-08-01 22:58 henry
* [r23] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
Removed the <vector> include and some debug code. Changed the
render code to use glDisplayList. There was NO performance
improvement but it will make it the same as FTPolyGlyph.
Now uses glTranslate for the pen pos, again to make it the same
as FTPolyGlyph.
Changes because of the changes tp FTPOINT in FTVectoriser.
2001-08-01 22:56 henry
* [r22] include/FTVectoriser.h, src/FTVectoriser.cpp:
Made the FTPOINT type a struct of 3 floats rather than a
PAIR<int, int> to make it compatible with gluTess.
Made bValues[][] a private member rather than local to
evaluateCurve()
2001-08-01 05:27 henry
* [r21] include/FTVectoriser.h, src/FTVectorGlyph.cpp,
src/FTVectorGlyph.h, src/FTVectoriser.cpp:
Spilt the FTVectoriser & FTContour stuff out of FTVectorGlyph.
Made some minor changes to the curve code.
2001-08-01 04:28 henry
* [r20] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
Removed stdio include and used arg in deCasteljau function
declaration
2001-08-01 04:22 henry
* [r19] README.txt:
Updated now that vectorglyphs now work.
2001-08-01 04:21 henry
* [r18] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
First commit of working code
2001-08-01 04:20 henry
* [r17] src/FTTextureGlyph.cpp:
removed a comment
2001-08-01 04:19 henry
* [r16] src/FTGLTextureFont.cpp:
Added code to calculate the min texture size
2001-08-01 04:17 henry
* [r15] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp:
Updated for FTVectorGlyph
2001-07-30 04:49 henry
* [r14] README.txt:
Added raster position comment to todo
2001-07-30 04:48 henry
* [r13] src/FTPixmapGlyph.cpp:
Fixing the position stuff
2001-07-30 04:47 henry
* [r12] src/FTBitmapGlyph.cpp:
Fixing the psosition stuff
2001-07-30 02:29 henry
* [r11] README.txt:
Raster position changes. TextureGlyph working but not finished
2001-07-30 02:24 henry
* [r10] include/FTBitmapGlyph.h, include/FTFont.h,
include/FTGLTextureFont.h, include/FTGlyphContainer.h,
include/FTPixmapGlyph.h, include/FTTextureGlyph.h,
src/FTBitmapGlyph.cpp, src/FTFont.cpp, src/FTGLTextureFont.cpp,
src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp,
src/FTTextureGlyph.cpp:
Rewrote the way the raster positon is set. The position is now
kept in an FT_Vector called pen and pas into the glyphs, rather
than the glyph calculating it's on raster position.
2001-07-30 01:08 henry
* [r9] include/FTGlyph.h:
render() now takes a reference
2001-07-30 01:07 henry
* [r8] src/FTSize.cpp:
Return values now scaled correctly
2001-07-27 04:28 henry
* [r7] include/FTFont.h:
Made all methods virtual
2001-07-26 05:19 henry
* [r6] README.txt:
Update for changes to FTSize
2001-07-26 05:18 henry
* [r5] include/FTSize.h, src/FTSize.cpp:
Added assignment of FT_Size attribute and added Height and Width
methods
2001-07-26 05:11 henry
* [r3] README.txt, include, include/FTBitmapGlyph.h,
include/FTFace.h, include/FTFont.h, include/FTGL.h,
include/FTGLBitmapFont.h, include/FTGLOutlineFont.h,
include/FTGLPixmapFont.h, include/FTGLPolygonFont.h,
include/FTGLTextureFont.h, include/FTGlyph.h,
include/FTGlyphContainer.h, include/FTLibrary.h,
include/FTPixmapGlyph.h, include/FTSize.h,
include/FTTextureGlyph.h, src, src/FTBitmapGlyph.cpp,
src/FTFace.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp,
src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp,
src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp,
src/FTGlyph.cpp, src/FTGlyphContainer.cpp, src/FTLibrary.cpp,
src/FTPixmapGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp,
src/FTVectorGlyph.cpp, src/FTVectorGlyph.h:
This commit was generated by cvs2svn to compensate for changes in
r2,
which included commits to RCS files with non-trunk default
branches.
2001-07-26 05:11
* [r1] .:
New repository initialized by cvs2svn.