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
|
Changes by: raster 99/08/01 15:14:14
Log message:
adding imlib2 code in.. NOT a lib yet... :) but playable code and loader
system
Status:
Vendor Tag: imlib2
Release Tags: A
N imlib2/loader_png.c
N imlib2/Makefile
N imlib2/README
N imlib2/blend.c
N imlib2/blend.h
N imlib2/color.c
N imlib2/color.h
N imlib2/common.h
N imlib2/file.c
N imlib2/file.h
N imlib2/grab.c
N imlib2/grab.h
N imlib2/image.c
N imlib2/image.h
N imlib2/main.c
N imlib2/rend.c
N imlib2/rend.h
N imlib2/rgba.c
N imlib2/rgba.h
N imlib2/scale.c
N imlib2/scale.h
N imlib2/ximage.c
N imlib2/ximage.h
N imlib2/test_images/im_rgb.png
N imlib2/test_images/im.png
No conflicts created by this import
_______________________________________________
Changes by: raster 99/08/02 15:50:36
Modified files:
. : loader_png.c
Added files:
. : COPYING
Log message:
fixed minor bug in png loader.... added copying file :)
_______________________________________________
Changes by: raster 99/08/02 22:15:35
Modified files:
. : image.c image.h loader_png.c main.c
Log message:
updated loader api to include progress callback stuff.... :)
_______________________________________________
Changes by: raster 99/09/01 10:36:17
Modified files:
. : api.c api.h context.c image.c image.h main.c
Log message:
remember to not free images made form external data if it wasnt copied.. and
free colors from color cubes once the context is invalid.. :)
_______________________________________________
Changes by: raster 99/09/08 10:27:41
Modified files:
. : api.c api.h blend.c blend.h draw.c grab.c
grab.h loader_png.c main.c rend.c rend.h rgba.c
Log message:
lots more work on mr imlib2 :)
_______________________________________________
Changes by: raster 99/09/08 11:15:04
Modified files:
. : api.c main.c
Log message:
and more updates :) wheeeeeeeee
_______________________________________________
Changes by: raster 99/09/08 19:39:19
Modified files:
. : Makefile api.c
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure configure.in ltdl.c
ltdl.h
Log message:
more work on imlib2.. :)
_______________________________________________
Changes by: raster 99/09/09 19:33:12
Modified files:
. : api.c blend.c blend.h loader_png.c main.c
rend.c
Log message:
ooh is imlib2 ever workign fast now baybeee.. blending one image onto
another .. with clipping, scaling, anti-aliasing and more.. need to add
a bit to the api, and move the stuff nowin api.c off into imlib backend
sinc ethat stuff doesnt belong in api.c
_______________________________________________
Changes by: raster 99/09/10 11:11:47
Modified files:
. : Makefile Makefile.am api.c api.h main.c
Added files:
. : loader_jpeg.c
Log message:
jpeg loader added that does everything RIGHT - needto mapk the png loader
do the same. :)
_______________________________________________
Changes by: raster 99/09/10 19:04:10
Modified files:
. : api.c loader_png.c main.c
Log message:
and now the png loader does full progress callbacks and multi-phase loading
correctly... WHEEEEEEEEEEe :)
_______________________________________________
Changes by: raster 99/09/12 18:56:57
Modified files:
. : Makefile README api.c api.h blend.c blend.h
image.c loader_png.c main.c
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure configure.in ltdl.c
ltdl.h
Added files:
test_images : audio.png bg.png folder.png mush.png paper.png
sh1.png sh2.png sh3.png
Log message:
ooh now imlib2 has a sexy demo for you people :) mmmmm watch the alpha
blending... mmmmmmmmm
_______________________________________________
Changes by: raster 99/09/12 21:06:58
Modified files:
. : color.c context.c main.c rgba.c
Log message:
more playing with imlib2... :)
_______________________________________________
Changes by: raster 99/09/12 22:32:36
Modified files:
. : main.c
Added files:
test_images : bulb.png cal.png calc.png globe.png lock.png
mail.png menu.png stop.png tnt.png
Log message:
add some more images just to show off :)
_______________________________________________
Changes by: raster 99/09/12 22:34:51
Modified files:
. : context.c
Log message:
get rid of printfs i dont need no more :)
_______________________________________________
Changes by: raster 99/09/13 21:21:29
Modified files:
. : Makefile api.c api.h blend.c blend.h draw.c
main.c rend.c rend.h
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure configure.in ltdl.c
ltdl.h
Log message:
add operation type to blend ops.. :)
_______________________________________________
Changes by: mej 99/09/14 17:16:44
Modified files:
. : autogen.sh
Log message:
*sigh*
This should fix those weird autogen.sh problems. Apparently
automake --copy thinks it fails even though it really doesn't.
_______________________________________________
Changes by: raster 99/09/14 18:15:55
Modified files:
. : blend.c main.c
Log message:
oooh more blending and operation code :)
_______________________________________________
Changes by: raster 99/09/14 18:23:00
Modified files:
. : autogen.sh
Log message:
better autogen.sh comments to help you build imlib2
_______________________________________________
Changes by: raster 99/09/14 18:24:28
Modified files:
. : autogen.sh
Log message:
some mroe echos...
_______________________________________________
Changes by: raster 99/09/16 18:31:57
Modified files:
. : Makefile Makefile.am api.c api.h blend.c rend.c
Added files:
. : updates.c updates.h
Log message:
added updates work.. well starting on it.. :)
_______________________________________________
Changes by: raster 99/09/16 18:47:49
Modified files:
. : updates.c
Log message:
more wokr on updates
_______________________________________________
Changes by: raster 99/09/18 00:50:37
Modified files:
. : Makefile Makefile.am api.c api.h image.c main.c
rgbadraw.c rgbadraw.h updates.c
Log message:
lots of new image manipulation functions and minor fix in loader module code.
_______________________________________________
Changes by: raster 99/09/18 09:40:24
Added files:
. : colormod.c colormod.h config.h loaderpath.h
Log message:
add some files
_______________________________________________
Changes by: raster 99/09/18 09:41:59
Removed files:
. : config.h loaderpath.h
Log message:
rewmove files i didnt mean tot add
_______________________________________________
Changes by: raster 99/09/18 23:28:54
Modified files:
. : Makefile api.c api.h blend.c blend.h file.c
image.c image.h loader_jpeg.c loader_png.c
main.c rend.c rgbadraw.c scale.c
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure configure.in ltdl.c
ltdl.h
Log message:
cleaned up code a bit... :) minor speedup for sparse (lost of transparent
bits in images) for alpha blending :)
_______________________________________________
Changes by: raster 99/09/19 11:33:15
Modified files:
. : rgba.c
Log message:
get rid of extra space
_______________________________________________
Changes by: raster 99/09/19 13:05:23
Modified files:
. : api.c api.h color.c color.h main.c
Log message:
ok- fix depth retireval code :)
_______________________________________________
Changes by: raster 99/09/19 14:00:17
Modified files:
. : loader_png.c
Log message:
try make png laoder work on big endian... :)
_______________________________________________
Changes by: raster 99/09/19 14:18:15
Modified files:
. : loader_png.c
Log message:
and one mroe fix for big endian boxes for imlib png loader
_______________________________________________
Changes by: raster 99/09/19 14:22:21
Modified files:
. : loader_png.c
Log message:
and add soem comments
_______________________________________________
Changes by: raster 99/09/19 14:43:59
Modified files:
. : rend.c
Log message:
fix 15/16bpp depth problems
_______________________________________________
Changes by: raster 99/09/19 14:53:59
Modified files:
. : configure.in loader_png.c rgba.c
Log message:
let autoconf figure out our endianess
_______________________________________________
Changes by: raster 99/09/19 14:56:55
Modified files:
. : Makefile Makefile.am
Log message:
make install isnot system loader dirs
_______________________________________________
Changes by: raster 99/09/19 14:57:37
Modified files:
. : autogen.sh
Log message:
update autogen.sh
_______________________________________________
Changes by: raster 99/09/19 15:05:59
Modified files:
. : main.c
Log message:
fix main.c
_______________________________________________
Changes by: raster 99/09/26 14:36:51
Modified files:
. : api.c api.h color.c color.h common.h main.c
rend.c rgbadraw.c updates.c
Log message:
make imlib2 demo event based - test rect combining code in handling exposures
and stuff - works it seesm - need to expand api though... expose handlign works
fine as does rect mergeing and stuff.. must more efficient updating method now
for demo.. template for stuff to be used by apps later :)
_______________________________________________
Changes by: raster 99/09/26 21:33:58
Modified files:
. : Makefile.am api.c api.h
Added files:
. : font.c font.h format.c format.h
Log message:
add some files...
_______________________________________________
Changes by: raster 99/09/26 22:24:42
Modified files:
. : Makefile font.c font.h
Log message:
more font stuff
_______________________________________________
Changes by: raster 99/09/27 08:16:52
Modified files:
. : Makefile Makefile.am font.c font.h
Log message:
more code for font stugff being added.. more to come...
_______________________________________________
Changes by: raster 99/09/27 08:19:11
Removed files:
. : Makefile
Log message:
why did i have a Makefile in cvs ?
_______________________________________________
Changes by: raster 99/09/27 15:47:45
imlib2/ttfonts
Update of /cvs/enlightenment/imlib2/ttfonts
In directory ford:/tmp/cvs-serv11657/ttfonts
Log Message:
Directory /cvs/enlightenment/imlib2/ttfonts added to the repository
_______________________________________________
Changes by: raster 99/09/27 15:52:03
Modified files:
. : api.h font.c main.c ximage.c
Added files:
ttfonts : Gadzoox.ttf Glypic.ttf Lemonfnt.ttf
Tejartchi.ttf Terminator.ttf Virginlo.ttf
adlib.ttf andes.ttf angular.ttf anklepants.ttf
arabian.ttf arnprior.ttf asimov.ttf
aurabesh.ttf autobot.ttf axaxax.ttf axaxaxl.ttf
badfilms.ttf balconyangels.ttf baltar.ttf
baltar01.ttf bastarda.ttf battlest.ttf
battlestar.ttf beebop.ttf beebopp.ttf
bellbottomlaser.ttf berliner.ttf bevel.ttf
bigfish.ttf bitchin.ttf blackadderii.ttf
blackforest.ttf bloodofdracula.ttf bloody.ttf
blueregular.ttf bookworm.ttf branson.ttf
burnout.ttf busorama.ttf
butterflychromosome.ttf calligrapher.ttf
cardas1.ttf carrdin2.ttf carrding.ttf
carrelec.ttf carrkeys.ttf casloninitials.ttf
celticmd.ttf checkbk.ttf chemicalgus.ttf
choc.ttf chromosomelight.ttf cinema.ttf
cld_____.ttf comics.ttf competitor.ttf
computerfont.ttf crackbabies.ttf crackman.ttf
crapola.ttf crysta.ttf crystalradiokit.ttf
ctype.ttf cupertino.ttf dazzleships.ttf
decaying.ttf deceptgr.ttf demonnight.ttf
diamondgothic.ttf dienasty.ttf
dirtybakersdozen.ttf dogsonmars.ttf dolphin.ttf
down.ttf dragonwick.ttf duedate.ttf
dustmites.ttf dutchtreat.ttf eccentrical.ttf
elbjorgscript.ttf electrichermes.ttf enya.ttf
erasure.ttf fleur_tt.ttf flouridebeings.ttf
flytningar.ttf frowf___.ttf gaeil1.ttf
galab___.ttf galactic.ttf gardenparty.ttf
gathora.ttf glazkrak.ttf glypic.ttf goethe.ttf
goldengirdle.ttf goofball.ttf grease.ttf
grunge.ttf hackers.ttf handwriting.ttf
headhunter.ttf heavyheap.ttf hirosh.ttf
hman.ttf hman2.ttf holstein.ttf huskystash.ttf
hydrogenwhiskey.ttf id4.ttf igloo.ttf
inavelkusin.ttf inavelmutant.ttf
incantation.ttf induction2.ttf instanttunes.ttf
invisiblekiller.ttf joycircuit.ttf joystix.ttf
karloff.ttf kewken.ttf khaf____.ttf
khan____.ttf khb_____.ttf khf_____.ttf
khl_____.ttf kho_____.ttf kiloton.ttf
kingarthur.ttf kissmekissmekissme.ttf
klingonblade.ttf klingonscript.ttf kontrast.ttf
kurtrussell.ttf lansbury.ttf lavalava.ttf
lemonfnt.ttf lochen.ttf lockergn.ttf
lockergnome.ttf logger.ttf lombardic.ttf
lombnarr.ttf lowereastside.ttf
lowerwestside.ttf lunauror.ttf lunaurora.ttf
lynx.ttf machuman.ttf magdelena.ttf
marqueem.ttf massiveretaliation.ttf mechoba.ttf
metallord.ttf mickey.ttf minya.ttf monst___.ttf
monstro.ttf morpheus.ttf nasalization.ttf
neon2.ttf newworldvibes.ttf nightcourt.ttf
nine____.ttf nosferatu.ttf notepad.ttf
notepad_.ttf oldgermen.ttf oliver.ttf
oliviabrush.ttf ollon.ttf omnibus.ttf
parkavenue.ttf pastorofmuppets.ttf
planetbenson.ttf plasticbag.ttf
pleasantlyplump.ttf plump.ttf popticsone.ttf
popticsoneextras.ttf popticsthree.ttf
popticsthreeextras.ttf popticstwo.ttf
popticstwoextras.ttf pormask2039.ttf prick.ttf
prima.ttf puppf___.ttf purptete.ttf
quadrangle.ttf quake.ttf radiostars.ttf
ransom.ttf rattpick.ttf rebucked.ttf
refluxed.ttf reticulan.ttf reverb.ttf roar.ttf
robokoz.ttf romeo.ttf rotondosilver.ttf
rylodian.ttf saf.ttf sand____.ttf schizm.ttf
scritz.ttf seawfa__.ttf sham.ttf shlop.ttf
singothic.ttf slumberp.ttf snidely.ttf
solsticeofsuffering.ttf spillm~1.ttf
spirits.ttf spongy.ttf spund.ttf squealer.ttf
squire.ttf stonehenge.ttf stop.ttf
superglue.ttf superheterodyne.ttf
taxidermist.ttf thalia.ttf thickhead.ttf
tofu8.ttf tomhand.ttf toontime.ttf topbond.ttf
tosscasu.ttf touchofnature.ttf transylvania.ttf
trash.ttf tron.ttf turkeys.ttf ventilate.ttf
village.ttf virginlo.ttf wacko.ttf warlock.ttf
whitebld.ttf xenowort.ttf xoltoa.ttf yadou.ttf
yoinks.ttf zerohour.ttf
zodillinstrisstirust.ttf
Log message:
add some test truetype fonts - just for testing... and truetype font
rendering code... :)
_______________________________________________
Changes by: raster 99/09/27 15:52:56
Removed files:
ttfonts : zodillinstrisstirust.ttf
Log message:
bad bad font.......
_______________________________________________
Changes by: raster 99/09/27 15:55:56
Modified files:
. : main.c
Removed files:
ttfonts : instanttunes.ttf
Log message:
actualyl chekc if the font laod works and remove another bad font
_______________________________________________
Changes by: raster 99/09/27 16:09:07
Removed files:
ttfonts : Tejartchi.ttf beebop.ttf beebopp.ttf bevel.ttf
blackadderii.ttf carrelec.ttf computerfont.ttf
crysta.ttf galab___.ttf handwriting.ttf
lynx.ttf omnibus.ttf popticsthree.ttf
popticsthreeextras.ttf transylvania.ttf
Log message:
get rid of soem useless fonts...
_______________________________________________
Changes by: raster 99/09/27 16:09:55
Removed files:
ttfonts : cld_____.ttf fleur_tt.ttf frowf___.ttf
khaf____.ttf khan____.ttf khb_____.ttf
khf_____.ttf khl_____.ttf kho_____.ttf
monst___.ttf nine____.ttf notepad_.ttf
puppf___.ttf sand____.ttf seawfa__.ttf
Log message:
get rid of silyl fonts with silyl names... i hate those names... :)
_______________________________________________
Changes by: raster 99/09/27 16:12:12
Removed files:
ttfonts : hman2.ttf
Log message:
this font segfaults freetype.. ooh nice freetype :)
_______________________________________________
Changes by: raster 99/09/27 16:17:22
Removed files:
ttfonts : calligrapher.ttf inavelmutant.ttf
nasalization.ttf
Log message:
nuke some more unusable fonts :)
_______________________________________________
Changes by: raster 99/09/27 17:03:20
Removed files:
ttfonts : bastarda.ttf
Log message:
another useless font
_______________________________________________
Changes by: raster 99/09/27 17:33:23
Removed files:
ttfonts : Terminator.ttf carrdin2.ttf carrding.ttf
carrkeys.ttf gaeil1.ttf goldengirdle.ttf
klingonblade.ttf kontrast.ttf lockergn.ttf
planetbenson.ttf popticstwo.ttf pormask2039.ttf
quake.ttf refluxed.ttf reverb.ttf roar.ttf
saf.ttf stop.ttf
Log message:
remove some more useless fonts
_______________________________________________
Changes by: raster 99/09/27 17:36:41
Modified files:
. : font.c main.c
Log message:
some fixes to font code... :)
_______________________________________________
Changes by: raster 99/09/27 19:13:50
Modified files:
. : font.c font.h main.c
Log message:
fix raster map over-allocation problem for fonts.. :)
_______________________________________________
Changes by: raster 99/09/27 19:22:57
Modified files:
. : font.c font.h
Log message:
add prototypes and cleanup unused vars
_______________________________________________
Changes by: raster 99/09/27 23:59:55
Modified files:
. : font.c
Log message:
you mightnt guess it - but rotated text all works now.. :)
_______________________________________________
Changes by: raster 99/09/28 11:51:08
Modified files:
. : api.c api.h font.c updates.c updates.h
Log message:
fix ups some toehr stuff...
_______________________________________________
Changes by: raster 99/09/28 16:08:40
Modified files:
. : font.c main.c
Log message:
some fixes to get the output nextx and nexty right... :)
_______________________________________________
Changes by: raster 99/09/28 16:48:39
Modified files:
. : api.c api.h font.c font.h main.c
Log message:
add some of the font api to the api :)
_______________________________________________
Changes by: raster 99/09/29 10:25:52
Modified files:
. : api.c api.h font.c font.h main.c
Log message:
add speculative fotn cache ability - just like we have for images and pixmaps
and ximages.
_______________________________________________
Changes by: raster 99/09/29 11:10:14
Modified files:
. : api.c api.h font.c font.h
Log message:
add actual api.h calls to the font caching stuff...
_______________________________________________
Changes by: raster 99/09/30 09:46:04
Modified files:
. : main.c rgbadraw.c
Log message:
we have... anti-aliased line drawing code now... :) (and funnily enough -
UNLIKE gimp it actually CAN draw a straight line for shit with anti-aliasing)
_______________________________________________
Changes by: raster 99/10/21 10:07:21
Modified files:
. : api.c api.h blend.c blend.h colormod.c
colormod.h common.h draw.c font.c font.h grab.c
image.c image.h rend.c rgbadraw.c ximage.c
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure configure.in ltdl.c
ltdl.h
Log message:
color modifiers in imlib2 now done.. cleaned up soem code...
_______________________________________________
Changes by: mandrake 99/10/22 04:19:11
Modified files:
. : api.h file.h font.c grab.c loader_jpeg.c
loader_png.c main.c rgbadraw.c rgbadraw.h
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure configure.in ltdl.c
ltdl.h
Added files:
. : ChangeLog
Log message:
Fri Oct 22 10:53:26 PDT 1999
(Mandrake)
removed almost all the warnings.
except for:
main.c:287: warning: implicit declaration of function `__imlib_draw_line'
which I believe is because it's not using the appropriate API call yet.
_______________________________________________
Changes by: raster 99/10/22 04:40:45
Modified files:
. : api.h
Log message:
again........ :)
_______________________________________________
Changes by: raster 99/10/25 09:36:24
Modified files:
. : Makefile.am api.c api.h image.h main.c
rgbadraw.c rgbadraw.h
libltdl : ltdl.c
Log message:
work work work...
_______________________________________________
Changes by: raster 99/10/25 16:30:01
Modified files:
. : draw.c image.c
Log message:
more flim
_______________________________________________
Changes by: raster 99/10/25 16:30:46
Modified files:
. : api.c api.h image.h
Log message:
more flim code..... >8)
_______________________________________________
Changes by: raster 99/10/27 06:48:39
Modified files:
. : rgba.c
Log message:
memcpy :)
_______________________________________________
Changes by: raster 99/10/27 07:08:32
Modified files:
. : api.c api.h main.c
Added files:
. : grad.c grad.h
Log message:
nice FAST gradient drawing code.... :) eat my dast... MUHAHAHAHAHHA! :)
_______________________________________________
Changes by: raster 99/10/27 07:20:27
Modified files:
. : api.c api.h
Log message:
pixel query call.... need this one
_______________________________________________
Changes by: raster 99/10/27 10:44:15
Modified files:
. : api.c main.c
Log message:
and the flim goes on..........
_______________________________________________
Changes by: raster 99/10/28 03:40:02
Modified files:
. : color.c
Log message:
dont chose visuals > 24bit :)
_______________________________________________
Changes by: mandrake 99/10/28 06:09:03
Added files:
libltdl : .cvsignore
Removed files:
libltdl : configure
Log message:
trying to "fix" imlib2's cvs tree
_______________________________________________
Changes by: mandrake 99/10/28 06:11:27
Added files:
. : .cvsignore
Log message:
more "hush yo mouf cvs" changes
_______________________________________________
Changes by: raster 99/10/28 08:26:19
Modified files:
. : api.c api.h blend.c grab.c
Log message:
LOTS of checkign in the api now to make sure the calling program can't stuff
things up too badly...
_______________________________________________
Changes by: raster 99/10/28 10:43:42
Removed files:
test_images : im.png im_rgb.png
Log message:
get rid of images i'm nto using...
_______________________________________________
Changes by: raster 99/10/28 16:04:27
Modified files:
. : api.h main.c
test_images : bg.png
Log message:
better api.h
_______________________________________________
Changes by: raster 99/10/29 02:11:58
Modified files:
. : rgbadraw.c
Log message:
oooooooooops - thanks hans! :)
_______________________________________________
Changes by: raster 99/10/29 03:39:09
Modified files:
. : color.h
Log message:
dont need that fixme..
_______________________________________________
Changes by: raster 99/10/30 04:22:48
Modified files:
. : main.c rgba.c
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure.in ltdl.c ltdl.h
Log message:
speed testing code back.. just testing...
_______________________________________________
Changes by: raster 99/10/30 04:54:01
Modified files:
. : loader_png.c
Log message:
try this..
_______________________________________________
Changes by: raster 99/10/30 10:41:08
Modified files:
. : blend.c
Log message:
optmiseeeeeeeeeeeeeeeeeee. :)
_______________________________________________
Changes by: mandrake 99/10/31 11:45:23
Modified files:
. : ChangeLog
libltdl : .cvsignore
Removed files:
libltdl : Makefile.am Makefile.in acinclude.m4 aclocal.m4
config.h.in configure.in ltdl.c ltdl.h
Log message:
Sun Oct 31 20:21:13 PST 1999
(Mandrake)
libltdl (large chunks of it) is automatically generated by autogen.sh.
no need for those files to be in CVS.
_______________________________________________
Changes by: mandrake 99/10/31 11:50:50
Modified files:
. : rgba.c
Log message:
removed a warning
_______________________________________________
Changes by: raster 99/10/31 14:50:06
Modified files:
. : blend.c
Log message:
eeek math error at 255 (becomes 254) not surprising i didnt notice.. i
looked at the results rsather than numerically evaluating...
_______________________________________________
Changes by: raster 99/10/31 15:08:18
Modified files:
. : grab.c rend.c rgba.c rgba.h
Log message:
and handle ABGR ordering in 24/32bpp
_______________________________________________
Changes by: raster 99/11/01 02:00:06
Modified files:
. : api.c api.h blend.c image.c image.h
Log message:
added ability to attach integert vlue and data poitner tags to images by
string keys (with destructors optional) - wil be used for saving of images
(savers will look for these keys to gleen parameters for saaving)
_______________________________________________
Changes by: raster 99/11/01 02:07:14
Modified files:
. : grad.c main.c rgbadraw.c
Log message:
fix some minro roundoff problems as before...
_______________________________________________
Changes by: raster 99/11/01 03:05:17
Modified files:
. : blend.c grad.c rgbadraw.c
Log message:
udless &'s
_______________________________________________
Changes by: raster 99/11/01 04:11:30
Modified files:
. : ChangeLog image.c image.h
Added files:
. : TODO
Log message:
add TODO...
_______________________________________________
Changes by: raster 99/11/01 06:35:25
Modified files:
. : api.c api.h image.c image.h
Log message:
structure for savign all done - now just need to fill in the save() functions
in the loaders (yes laoder are also savers - loader and saver are
interchangeable).
_______________________________________________
Changes by: raster 99/11/01 07:27:34
Modified files:
. : api.c image.c loader_jpeg.c main.c
Log message:
we have a jpeg saver and the saver code works
_______________________________________________
Changes by: raster 99/11/01 07:30:56
Modified files:
. : image.c
Log message:
whee more robus tagging...
_______________________________________________
Changes by: raster 99/11/01 08:14:00
Modified files:
. : image.c loader_png.c main.c
Log message:
and now it all works...
_______________________________________________
Changes by: raster 99/11/01 08:15:37
Modified files:
. : main.c
Log message:
flim
_______________________________________________
Changes by: raster 99/11/01 08:34:01
Modified files:
. : blend.c
Log message:
and now thats all better.
_______________________________________________
Changes by: raster 99/11/01 08:52:52
Modified files:
. : blend.c
Log message:
fix that........
_______________________________________________
Changes by: raster 99/11/01 08:54:49
Modified files:
. : blend.c
Log message:
fix that bitchift..
_______________________________________________
Changes by: raster 99/11/01 09:12:39
imlib2/loaders
Update of /cvs/enlightenment/imlib2/loaders
In directory ford:/tmp/cvs-serv13720/loaders
Log Message:
Directory /cvs/enlightenment/imlib2/loaders added to the repository
_______________________________________________
Changes by: raster 99/11/01 09:12:40
imlib2/src
Update of /cvs/enlightenment/imlib2/src
In directory ford:/tmp/cvs-serv13720/src
Log Message:
Directory /cvs/enlightenment/imlib2/src added to the repository
_______________________________________________
Changes by: raster 99/11/01 09:40:51
Modified files:
. : Makefile.am configure.in
Added files:
loaders : Makefile.am loader_jpeg.c loader_png.c
src : Imlib2.h Makefile.am api.c blend.c blend.h
color.c color.h colormod.c colormod.h common.h
context.c context.h draw.c draw.h file.c file.h
font.c font.h format.c format.h grab.c grab.h
grad.c grad.h image.c image.h main.c rend.c
rend.h rgba.c rgba.h rgbadraw.c rgbadraw.h
scale.c scale.h updates.c updates.h ximage.c
ximage.h
Removed files:
. : api.c api.h blend.c blend.h color.c color.h
colormod.c colormod.h common.h context.c
context.h draw.c draw.h file.c file.h font.c
font.h format.c format.h grab.c grab.h grad.c
grad.h image.c image.h loader_jpeg.c
loader_png.c main.c rend.c rend.h rgba.c rgba.h
rgbadraw.c rgbadraw.h scale.c scale.h updates.c
updates.h ximage.c ximage.h
Log message:
re-structure......
_______________________________________________
Changes by: raster 99/11/01 09:41:03
imlib2/test
Update of /cvs/enlightenment/imlib2/test
In directory ford:/tmp/cvs-serv14123/test
Log Message:
Directory /cvs/enlightenment/imlib2/test added to the repository
_______________________________________________
Changes by: raster 99/11/01 09:47:48
imlib2/test/test_images
Update of /cvs/enlightenment/imlib2/test/test_images
In directory ford:/tmp/cvs-serv14183/test_images
Log Message:
Directory /cvs/enlightenment/imlib2/test/test_images added to the repository
_______________________________________________
Changes by: raster 99/11/01 09:48:23
imlib2/test/ttfonts
Update of /cvs/enlightenment/imlib2/test/ttfonts
In directory ford:/tmp/cvs-serv14198/ttfonts
Log Message:
Directory /cvs/enlightenment/imlib2/test/ttfonts added to the repository
_______________________________________________
Changes by: raster 99/11/01 09:49:59
Modified files:
. : configure.in
Added files:
test : Makefile.am main.c
test/test_images: audio.png bg.png bulb.png cal.png calc.png
folder.png globe.png lock.png mail.png
menu.png mush.png paper.png sh1.png sh2.png
sh3.png stop.png tnt.png
test/ttfonts : cinema.ttf grunge.ttf morpheus.ttf notepad.ttf
Removed files:
src : main.c
test_images : audio.png bg.png bulb.png cal.png calc.png
folder.png globe.png lock.png mail.png menu.png
mush.png paper.png sh1.png sh2.png sh3.png
stop.png tnt.png
ttfonts : Gadzoox.ttf Glypic.ttf Lemonfnt.ttf
Virginlo.ttf adlib.ttf andes.ttf angular.ttf
anklepants.ttf arabian.ttf arnprior.ttf
asimov.ttf aurabesh.ttf autobot.ttf axaxax.ttf
axaxaxl.ttf badfilms.ttf balconyangels.ttf
baltar.ttf baltar01.ttf battlest.ttf
battlestar.ttf bellbottomlaser.ttf berliner.ttf
bigfish.ttf bitchin.ttf blackforest.ttf
bloodofdracula.ttf bloody.ttf blueregular.ttf
bookworm.ttf branson.ttf burnout.ttf
busorama.ttf butterflychromosome.ttf
cardas1.ttf casloninitials.ttf celticmd.ttf
checkbk.ttf chemicalgus.ttf choc.ttf
chromosomelight.ttf cinema.ttf comics.ttf
competitor.ttf crackbabies.ttf crackman.ttf
crapola.ttf crystalradiokit.ttf ctype.ttf
cupertino.ttf dazzleships.ttf decaying.ttf
deceptgr.ttf demonnight.ttf diamondgothic.ttf
dienasty.ttf dirtybakersdozen.ttf
dogsonmars.ttf dolphin.ttf down.ttf
dragonwick.ttf duedate.ttf dustmites.ttf
dutchtreat.ttf eccentrical.ttf
elbjorgscript.ttf electrichermes.ttf enya.ttf
erasure.ttf flouridebeings.ttf flytningar.ttf
galactic.ttf gardenparty.ttf gathora.ttf
glazkrak.ttf glypic.ttf goethe.ttf goofball.ttf
grease.ttf grunge.ttf hackers.ttf
headhunter.ttf heavyheap.ttf hirosh.ttf
hman.ttf holstein.ttf huskystash.ttf
hydrogenwhiskey.ttf id4.ttf igloo.ttf
inavelkusin.ttf incantation.ttf induction2.ttf
invisiblekiller.ttf joycircuit.ttf joystix.ttf
karloff.ttf kewken.ttf kiloton.ttf
kingarthur.ttf kissmekissmekissme.ttf
klingonscript.ttf kurtrussell.ttf lansbury.ttf
lavalava.ttf lemonfnt.ttf lochen.ttf
lockergnome.ttf logger.ttf lombardic.ttf
lombnarr.ttf lowereastside.ttf
lowerwestside.ttf lunauror.ttf lunaurora.ttf
machuman.ttf magdelena.ttf marqueem.ttf
massiveretaliation.ttf mechoba.ttf
metallord.ttf mickey.ttf minya.ttf monstro.ttf
morpheus.ttf neon2.ttf newworldvibes.ttf
nightcourt.ttf nosferatu.ttf notepad.ttf
oldgermen.ttf oliver.ttf oliviabrush.ttf
ollon.ttf parkavenue.ttf pastorofmuppets.ttf
plasticbag.ttf pleasantlyplump.ttf plump.ttf
popticsone.ttf popticsoneextras.ttf
popticstwoextras.ttf prick.ttf prima.ttf
purptete.ttf quadrangle.ttf radiostars.ttf
ransom.ttf rattpick.ttf rebucked.ttf
reticulan.ttf robokoz.ttf romeo.ttf
rotondosilver.ttf rylodian.ttf schizm.ttf
scritz.ttf sham.ttf shlop.ttf singothic.ttf
slumberp.ttf snidely.ttf
solsticeofsuffering.ttf spillm~1.ttf
spirits.ttf spongy.ttf spund.ttf squealer.ttf
squire.ttf stonehenge.ttf superglue.ttf
superheterodyne.ttf taxidermist.ttf thalia.ttf
thickhead.ttf tofu8.ttf tomhand.ttf
toontime.ttf topbond.ttf tosscasu.ttf
touchofnature.ttf trash.ttf tron.ttf
turkeys.ttf ventilate.ttf village.ttf
virginlo.ttf wacko.ttf warlock.ttf whitebld.ttf
xenowort.ttf xoltoa.ttf yadou.ttf yoinks.ttf
zerohour.ttf
Log message:
restructure the direcotry a bit.......
_______________________________________________
Changes by: raster 99/11/01 10:00:02
Modified files:
. : configure.in
Log message:
fix the version
_______________________________________________
Changes by: raster 99/11/01 10:05:48
Modified files:
. : README
Log message:
update README
_______________________________________________
Changes by: raster 99/11/01 10:06:33
Added files:
loaders : .cvsignore
src : .cvsignore
test : .cvsignore
Log message:
add ignores......
_______________________________________________
Changes by: raster 99/11/01 10:07:34
Modified files:
. : .cvsignore
Log message:
more in ignore
_______________________________________________
Changes by: raster 99/11/01 10:10:30
Modified files:
loaders : loader_png.c
Log message:
handle progress callback for saving in png loader..
_______________________________________________
Changes by: raster 99/11/01 10:12:42
Modified files:
test : main.c
Log message:
stop testing saving.. it works..
_______________________________________________
Changes by: raster 99/11/01 10:13:02
Modified files:
src : blend.c
Log message:
no printf
_______________________________________________
Changes by: raster 99/11/01 10:45:29
Modified files:
loaders : Makefile.am loader_jpeg.c loader_png.c
src : image.c
Added files:
loaders : loader_pnm.c
Log message:
starting on pnm loader (ppm, pgm pbm, pam) - will finish later...
_______________________________________________
Changes by: raster 99/11/01 10:46:23
Modified files:
loaders : Makefile.am
Log message:
oops makefile......
_______________________________________________
Changes by: raster 99/11/01 12:50:16
Modified files:
loaders : loader_pnm.c
Log message:
hmm that didnt compile.. ooh fun :)
_______________________________________________
Changes by: raster 99/11/01 16:24:17
Modified files:
loaders : loader_pnm.c
Log message:
pnm loader handles binary formats allright... :)
_______________________________________________
Changes by: raster 99/11/01 16:53:45
Modified files:
loaders : loader_pnm.c
Log message:
binary png loaders done..plus speculating on the P8 format... dont like it
much... i think ineed a FAST trivial to load ARGB format.
_______________________________________________
Changes by: raster 99/11/02 00:25:18
Modified files:
loaders : loader_pnm.c
Log message:
pnm loader can save now...
_______________________________________________
Changes by: raster 99/11/02 02:16:50
Modified files:
loaders : Makefile.am loader_pnm.c
src : api.c
test : main.c
Added files:
loaders : loader_argb.c
Log message:
argb format loader & saver. my own format just so i can load and save raw ARGB
data blindingly fast for imlib2 :)
_______________________________________________
Changes by: raster 99/11/02 02:17:07
Modified files:
test : main.c
Log message:
get rid of saver func
_______________________________________________
Changes by: raster 99/11/02 02:46:34
imlib2/demo
Update of /cvs/enlightenment/imlib2/demo
In directory ford:/tmp/cvs-serv28365/demo
Log Message:
Directory /cvs/enlightenment/imlib2/demo added to the repository
_______________________________________________
Changes by: raster 99/11/02 03:12:59
Modified files:
. : configure.in
src : rgbadraw.c
Added files:
demo : Makefile.am view.c
Log message:
oops - fix that filled rect drawing code
_______________________________________________
Changes by: raster 99/11/02 03:13:59
Added files:
demo : .cvsignore
Log message:
add ignores.......
_______________________________________________
Changes by: raster 99/11/02 05:32:40
Modified files:
demo : view.c
loaders : loader_argb.c loader_jpeg.c loader_pnm.c
src : rend.c
Log message:
fix a little of the rend code - never testyed that bit...
andf the imlib2_view works nicely iwth zooming too :)
_______________________________________________
Changes by: raster 99/11/02 06:34:48
Modified files:
demo : view.c
Log message:
primitive timeout.. its not even that good.. :)
_______________________________________________
Changes by: raster 99/11/02 06:42:05
Modified files:
demo : view.c
Log message:
now that works better
_______________________________________________
Changes by: raster 99/11/02 07:29:52
Modified files:
. : configure.in
Log message:
Makefile NOT Makefil ! :)
_______________________________________________
Changes by: raster 99/11/02 07:56:23
Modified files:
. : Makefile.am
Added files:
. : imlib2.spec
Log message:
more correct makefile.am in base........
_______________________________________________
Changes by: raster 99/11/03 08:21:02
Modified files:
demo : Makefile.am
src : blend.c
Added files:
demo : blend.c
Log message:
add soem stuff and new blend.c from ryan :)
_______________________________________________
Changes by: raster 99/11/03 08:22:21
Modified files:
src : blend.c
Log message:
again..........
_______________________________________________
Changes by: raster 99/11/04 01:02:58
Modified files:
src : Imlib2.h api.c
Log message:
mising 2 important calls inthe font code... :)
_______________________________________________
Changes by: raster 99/11/04 08:20:08
Modified files:
src : font.c
Log message:
ooooooooops :)
_______________________________________________
Changes by: raster 99/11/07 00:51:47
Modified files:
. : COPYING
demo : blend.c
src : blend.c blend.h font.c rend.c
Added files:
. : AUTHORS
Log message:
added AUTHORS file.. fixed copyting....
_______________________________________________
Changes by: raster 99/11/13 10:55:40
Modified files:
src : blend.c
Log message:
oopsie in blend.c
_______________________________________________
Changes by: raster 99/11/15 16:06:54
Modified files:
src : rgbadraw.c
Log message:
oop s- clipping problme wiht lines.. fixed :)
_______________________________________________
Changes by: raster 99/11/16 16:01:58
Modified files:
src : api.c
Log message:
oh oops - image blending whilst scaling want quite right in the api.. :)
_______________________________________________
Changes by: raster 99/11/18 23:42:21
Modified files:
src : grad.c
Log message:
ok - gradients now dont overflow the precision buffer as badly.. :)
_______________________________________________
Changes by: raster 99/12/02 13:02:01
Modified files:
src : image.c
Log message:
oops saver does rescan loader - so unless you laoded an image no laoders
will be around... and it wont get rescanned on save.. :)
_______________________________________________
Changes by: raster 99/12/07 09:28:53
Modified files:
src : Imlib2.h api.c
test : main.c
Log message:
lets break the Imlib2 api and chnage it... now its context based.. :)
_______________________________________________
Changes by: raster 99/12/07 09:30:01
Modified files:
. : configure.in
src : Makefile.am
Log message:
just up the versions to show i did something... :)
_______________________________________________
Changes by: raster 99/12/07 09:30:56
Modified files:
. : imlib2.spec
Log message:
spec file too...
_______________________________________________
Changes by: raster 99/12/07 10:02:48
Modified files:
test : main.c
Log message:
test program back to normal.. nwo works with api changes...
_______________________________________________
Changes by: raster 99/12/07 10:20:57
Modified files:
demo : Makefile.am view.c
Removed files:
demo : blend.c
Log message:
fixe view to compile & work
_______________________________________________
Changes by: raster 99/12/07 10:28:51
Modified files:
demo : Makefile.am view.c
Log message:
imlib2_view works again...
_______________________________________________
Changes by: raster 99/12/10 04:34:12
Modified files:
src : api.c
Log message:
oops :) fixed :)
_______________________________________________
Changes by: raster 99/12/10 06:26:13
Modified files:
. : configure.in
Log message:
blum
_______________________________________________
Changes by: raster 99/12/10 06:27:54
Modified files:
src : api.c font.c
Log message:
more blum - bloody freetype - why does debian have to go move the headre to a
different location to where it always was?
_______________________________________________
Changes by: raster 99/12/10 06:30:10
Modified files:
src : api.c font.c
Log message:
compile damnit...
_______________________________________________
Changes by: raster 99/12/10 06:31:32
Modified files:
src : font.c
Log message:
include config.h
_______________________________________________
Changes by: raster 99/12/14 01:18:24
Modified files:
src : blend.c colormod.h
Log message:
fix fix fix fix......................... :)
_______________________________________________
Changes by: raster 99/12/17 07:37:20
Modified files:
. : configure.in
loaders : Makefile.am
Log message:
create .a's :)
_______________________________________________
Changes by: llane 99/12/19 13:05:33
imlib2/debian
Update of /cvs/enlightenment/imlib2/debian
In directory ford:/tmp/cvs-serv24002/debian
Log Message:
Directory /cvs/enlightenment/imlib2/debian added to the repository
_______________________________________________
Changes by: llane 99/12/19 13:08:33
Modified files:
debian : changelog
Added files:
debian : changelog control libeconfig0.postinst rules
shlibs.local
debian : changelog control libimlib2.postinst rules
shlibs.local
Log message:
more preliminary assimilation
_______________________________________________
Changes by: raster 99/12/19 15:03:06
Modified files:
loaders : loader_jpeg.c
test : main.c
Log message:
fix loaders......
_______________________________________________
Changes by: mej 99/12/21 12:46:42
Modified files:
loaders : Makefile.am
Added files:
loaders : loader_gif.c
Log message:
A GIF loader. There is no save function yet, and you'll need libgif to
use it.
_______________________________________________
Changes by: raster 99/12/22 00:04:00
Modified files:
src : Imlib2.h api.c
Log message:
for acceleration to work i nee to add a parameter to put_back_data
_______________________________________________
Changes by: mej 99/12/22 02:48:31
Modified files:
loaders : loader_gif.c
Log message:
Whoops. Forgot to call the progress callback one last time.
_______________________________________________
Changes by: raster 99/12/23 08:43:26
Modified files:
src : api.c
Log message:
oops typo :)
_______________________________________________
Changes by: raster 99/12/23 15:30:18
Modified files:
src : blend.c
Log message:
fix missing case in scaling for blending objects...
_______________________________________________
Changes by: raster 99/12/26 10:27:05
Modified files:
src : blend.c rend.c updates.c
Log message:
get clipping right...
_______________________________________________
Changes by: raster 00/01/05 02:26:40
Modified files:
loaders : loader_gif.c
src : Imlib2.h api.c image.c
Log message:
add loader flush call and fix gif loader to be able to load when theres no
progress set :)
_______________________________________________
Changes by: raster 00/01/05 04:23:25
Modified files:
loaders : loader_png.c
Log message:
oops - expand indexed images...
_______________________________________________
Changes by: mej 00/01/05 06:28:50
Modified files:
loaders : loader_gif.c
Log message:
Don't ask me how this got out of sync....
_______________________________________________
Changes by: mej 00/01/05 06:29:58
Modified files:
loaders : loader_gif.c
Log message:
*grumble*
_______________________________________________
Changes by: raster 00/01/05 21:58:21
Modified files:
src : font.c
Log message:
allow full paths for font names too..
_______________________________________________
Changes by: raster 00/01/05 22:32:45
Modified files:
src : font.c
Log message:
search path for font mroe sanely
_______________________________________________
Changes by: raster 00/01/07 10:40:51
Modified files:
src : font.c
Log message:
dont be so anal abotu ewncodings... if no apple or windows encoding is there
just use encoding charmap 0 :)
_______________________________________________
Changes by: raster 00/01/09 21:41:18
Modified files:
src : Imlib2.h api.c image.c
Log message:
i cant beleieve i missed wrappign the pixmap free function....
_______________________________________________
Changes by: raster 00/01/09 21:42:41
Modified files:
src : api.c
Log message:
add to header.....
_______________________________________________
Changes by: raster 00/01/09 22:49:20
Modified files:
src : Imlib2.h api.c
Log message:
add dither mask pixmap rendering contexts...
_______________________________________________
Changes by: raster 00/01/10 04:25:14
Modified files:
src : Imlib2.h Makefile.am
Log message:
up version... add c++ usability..
_______________________________________________
Changes by: raster 00/01/10 19:15:59
Modified files:
. : configure.in
Log message:
updates and fixes.. versioning etc...
_______________________________________________
Changes by: mej 00/01/11 14:42:07
Modified files:
loaders : loader_gif.c
Log message:
Ummm...
_______________________________________________
Changes by: raster 00/01/17 10:20:29
Modified files:
src : Imlib2.h api.c
Log message:
oops - forgort to remove param from imlib_free_color_rangex
_______________________________________________
Changes by: raster 00/01/17 14:21:02
Modified files:
loaders : loader_gif.c
Log message:
put that back...
_______________________________________________
Changes by: mej 00/01/17 14:50:08
Modified files:
loaders : loader_gif.c
Log message:
Put those back. I hate warnings.
_______________________________________________
Changes by: raster 00/01/21 12:36:28
Modified files:
src : api.c
Log message:
2 more checks in save calls for image data...
_______________________________________________
Changes by: raster 00/01/24 09:07:05
Modified files:
src : font.c
Log message:
that was silly! fix fix fix - thanks alan :)
_______________________________________________
Changes by: raster 00/01/24 11:18:17
Modified files:
src : font.c
Log message:
ooops - fix :)
_______________________________________________
Changes by: raster 00/01/25 21:14:38
Modified files:
src : rgba.c
Log message:
endinaness for masks broken onf sparc.. fix...
_______________________________________________
Changes by: raster 00/01/25 21:18:32
Modified files:
src : rgba.c
Log message:
oops typo
_______________________________________________
Changes by: raster 00/01/25 21:25:19
Modified files:
src : rgba.c
Log message:
get enmdianess roight for sparc (and ppc) for masks...
_______________________________________________
Changes by: llane 00/02/02 16:10:14
Modified files:
debian : rules
Log message:
clean target
_______________________________________________
Changes by: raster 00/02/07 09:53:25
Modified files:
src : image.c
Log message:
oopsie - problem with non extension format images :)
_______________________________________________
Changes by: raster 00/02/07 14:04:05
Modified files:
src : image.c
Log message:
oooops - image and pixmap cache baddies.. :(
_______________________________________________
Changes by: raster 00/02/07 14:38:01
Modified files:
src : Imlib2.h api.c
Log message:
const char *
_______________________________________________
Changes by: raster 00/02/19 12:10:37
Modified files:
loaders : loader_argb.c
Log message:
ooops - big eng9ian bug! :)
_______________________________________________
Changes by: mandrake 00/02/22 14:29:17
Modified files:
. : configure.in
Log message:
fixing freetype detection stuff, maybe?
_______________________________________________
Changes by: raster 00/02/27 10:36:26
Modified files:
src : Imlib2.h Makefile.am api.c
test : main.c
Log message:
rotattion code added... :)
_______________________________________________
Changes by: raster 00/02/27 10:37:28
Modified files:
. : AUTHORS
Log message:
authors.. BTW - anyone watching commtis list please check AUTHORS...
if your'e nto listed plese tell me to add you... I never do well maintaining
it.
_______________________________________________
Changes by: raster 00/02/27 11:23:21
Added files:
src : loaderpath.h rotate.c rotate.h
Log message:
add files...
_______________________________________________
Changes by: raster 00/02/27 11:23:36
Removed files:
src : loaderpath.h
Log message:
dont add that1
_______________________________________________
Changes by: raster 00/03/01 09:04:23
Modified files:
src : Imlib2.h api.c rotate.c rotate.h
test : main.c
Log message:
flum..........
_______________________________________________
Changes by: raster 00/03/03 08:42:18
Modified files:
src : Imlib2.h api.c font.c rgbadraw.c rgbadraw.h
rotate.c
test : main.c
Log message:
flum
_______________________________________________
Changes by: raster 00/03/03 09:15:51
Modified files:
src : Imlib2.h api.c rotate.c rotate.h
Log message:
better
_______________________________________________
Changes by: raster 00/03/03 09:24:46
Modified files:
test : main.c
Log message:
poatch main.c - but rottest doesnt work.. must fix later
_______________________________________________
Changes by: raster 00/03/03 18:45:09
Modified files:
src : api.c
Log message:
get context patch from tom......
_______________________________________________
Changes by: llane 00/03/07 09:15:24
Modified files:
debian : changelog
Log message:
stuff
_______________________________________________
Changes by: llane 00/03/07 14:39:28
Modified files:
debian : rules
debian : rules
debian : rules
debian : rules
debian : rules
debian : rules
debian : rules
debian : rules
Log message:
removed dh_testversion
_______________________________________________
Changes by: llane 00/03/07 17:58:06
Modified files:
debian : changelog
debian : changelog
debian : changelog rules
debian : changelog
debian : changelog
debian : changelog
debian : changelog
Log message:
stuff
_______________________________________________
Changes by: mej 00/03/07 20:05:01
Modified files:
loaders : Makefile.am
Added files:
loaders : loader_tiff.c
Log message:
TIFF loader from Eric Dorland <dorland@lords.com>.
_______________________________________________
Changes by: mej 00/03/07 22:08:29
Modified files:
loaders : Makefile.am
Added files:
loaders : loader_bmp.c
Log message:
BMP loader from Isaac Richards <ijr@po.cwru.edu>. It currently has issues
with progressive loading, so don't use it with feh. :-)
_______________________________________________
Changes by: mej 00/03/07 22:11:04
Modified files:
. : AUTHORS
Log message:
Keep raster happy.
_______________________________________________
Changes by: mej 00/03/08 08:20:06
Modified files:
loaders : loader_bmp.c
Log message:
BMP loader fix for progressive loading from Chutt.
_______________________________________________
Changes by: mej 00/03/08 12:01:31
Modified files:
loaders : loader_bmp.c
Log message:
Murple.
_______________________________________________
Changes by: gilbertt 00/03/17 12:54:19
Modified files:
loaders : loader_tiff.c
Log message:
Shaddup ;)
_______________________________________________
Changes by: gilbertt 00/03/17 17:20:55
Modified files:
loaders : loader_gif.c
Log message:
shaddup ;)
_______________________________________________
Changes by: gilbertt 00/03/17 19:37:54
Modified files:
loaders : loader_gif.c
Log message:
AARGH. Godamn file decriptor leak which has been driving me CRAZY for a
WEEK! Got the BASTARD. DIE!
(what complicated matters was that it only leaked on when it *couldn't* load
the image).
Please note. there is also a filedes leak in the tiff loader, also when it
fails to load. I haven't been able to fix this yet, because libtiff sucks
ass and has totally encapsulated the file descriptor. Lemme work on it
tomorrow...
_______________________________________________
Changes by: gilbertt 00/03/17 20:12:23
Modified files:
src : image.c
Log message:
Removed a crufty bit.
_______________________________________________
Changes by: gilbertt 00/03/17 20:43:47
Modified files:
src : image.c
Log message:
nothing major
_______________________________________________
e-develop mailing list - e-develop@lists.on.openprojects.net
Changes by: gilbertt 00/03/18 05:07:53
Modified files:
loaders : loader_tiff.c
Log message:
Leak plugged. Thanks Eric :)
_______________________________________________
Changes by: gilbertt 00/03/18 05:56:29
Modified files:
src : image.c image.h
Log message:
Okay. The loader list is now trimmed. Where it would previously contain:
argb.a bmp.a gif.a jpeg.a png.a pnm.a tiff.a
argb.la bmp.la gif.la jpeg.la png.la pnm.la tiff.la
argb.so bmp.so gif.so jpeg.so png.so pnm.so tiff.so
It now contains:
argb
bmp
gif
jpeg
png
pnm
tiff
lt_dlopen knows how to do the Right Thing with these, trying first the .la,
then the .so. Now the loaders are each tried once per image (if none of them
manage to load it).
Added the following functions to achieve this:
char **__imlib_TrimLoaderList(char **list, int *num);
int __imlib_LoaderInList(char **list, int size, char *item);
_______________________________________________
Changes by: gilbertt 00/03/18 06:26:13
Modified files:
. : AUTHORS
Log message:
Bite me =P
_______________________________________________
Changes by: gilbertt 00/03/18 15:45:47
Modified files:
loaders : loader_tiff.c
Log message:
Partial loader_tiff rewrite from Eric Dorland. Much nicer :)
_______________________________________________
Changes by: raster 00/03/19 14:53:42
Modified files:
src : blend.c blend.h colormod.c grad.c rgbadraw.c
Log message:
I'm back....... :)
_______________________________________________
Changes by: raster 00/03/21 01:38:40
Modified files:
src : blend.c blend.h
Log message:
fix cmod.......
_______________________________________________
Changes by: raster 00/03/22 14:26:58
Modified files:
src : blend.c blend.h colormod.c colormod.h rotate.h
Log message:
optmize.. fix endianess stuff... :)
_______________________________________________
Changes by: raster 00/03/24 11:03:24
Modified files:
src : blend.c
Log message:
oops - missed modfifying colros there.. :)
_______________________________________________
Changes by: raster 00/03/24 11:06:01
Modified files:
src : api.c rend.c rotate.c rotate.h
Log message:
rotate speedups - rend bugfix... wheeeeeee
_______________________________________________
Changes by: raster 00/03/25 16:10:46
Modified files:
src : blend.h
Log message:
fix endianes problems..... works now on sparc solaris nicely.. :)
_______________________________________________
Changes by: raster 00/03/25 16:35:44
Modified files:
src : blend.h
Log message:
ummmm fix dat.....
_______________________________________________
Changes by: raster 00/03/27 11:17:37
Modified files:
src : color.c rend.c rgba.c rgba.h
test : main.c
Log message:
BGR56r & BGR555 support.......... please test if u have a display like this :)
_______________________________________________
Changes by: raster 00/03/27 11:20:29
Modified files:
src : blend.h
Log message:
nicer including of config.h
_______________________________________________
Changes by: raster 00/03/27 11:39:36
Modified files:
src : rgba.c
Log message:
oopsa typo
_______________________________________________
Changes by: raster 00/03/28 10:09:46
Modified files:
loaders : loader_png.c
src : Imlib2.h api.c file.c file.h font.c font.h
image.c image.h rotate.c
Log message:
damn willem! you love playing with imlib2 don;t you? :-) good show :)
_______________________________________________
Changes by: raster 00/03/28 14:25:45
Modified files:
src : scale.c
test : main.c
Log message:
speedup scaling down....... but i cant seem to get any speedup for up scaling
_______________________________________________
Changes by: raster 00/03/28 15:20:38
Modified files:
src : scale.c
Log message:
optimize scalign down routine for RGBA as well as RGB...
_______________________________________________
Changes by: raster 00/03/28 18:57:28
Modified files:
libltdl : COPYING.LIB README
src : scale.c
Log message:
um ooops - how did that happen?
_______________________________________________
Changes by: raster 00/03/29 19:28:56
Modified files:
src : scale.c
Log message:
no more of that thanks
_______________________________________________
Changes by: raster 00/04/02 13:31:40
Modified files:
src : Imlib2.h api.c
Log message:
need new updates call.....
_______________________________________________
Changes by: raster 00/04/02 13:42:42
Modified files:
src : updates.c
Log message:
updates..... actually clip if only 1!
_______________________________________________
Changes by: raster 00/04/03 15:38:01
Modified files:
src : scale.c
Log message:
faster scaling up.......... :)
_______________________________________________
Changes by: raster 00/04/04 18:34:06
Modified files:
src : rgba.c
Log message:
fix dither mask generation.. works again now.. use for icons to dnd
_______________________________________________
Changes by: raster 00/04/04 20:56:27
Modified files:
src : rgba.c
Log message:
dont need that code no more
_______________________________________________
Changes by: raster 00/04/07 21:13:52
Modified files:
src : Makefile.am api.c blend.c updates.c
Log message:
now that was bad! fix update appending :)
_______________________________________________
Changes by: raster 00/04/08 11:45:18
Added files:
src : asm_blend.S
Log message:
add asm for blending.... this will break imlib2 right now for all platforms that
arent xz86 intel 9unless you rmove the asm form the makefile and blend.c
_______________________________________________
Changes by: raster 00/04/08 12:15:48
Modified files:
. : configure.in
src : asm_blend.S blend.c blend.h common.h
Log message:
check for i686 artch and only then compile the mmx asm (i586 isnt guaranteed
to have mmx - NB libs built for mmx will NOt work on non mmx boxes right now
need to do a runtime chekc for that)
_______________________________________________
Changes by: raster 00/04/08 12:20:13
Modified files:
src : blend.c
Log message:
dont compile mmx data struct in if no mmx asm is used
_______________________________________________
Changes by: raster 00/04/08 14:06:17
Modified files:
. : imlib2.spec
Log message:
fix spec file - dont buidl demos package
_______________________________________________
Changes by: raster 00/04/13 09:48:48
..........
summary:
added mmx rotuines for blending - optimized them further
thanks to some poitners form willem. added willems filter code. willem did
mmx asm for the other blend rotuines too - added - needs fixing because
math in C routines chnaged tobe fixed (there was a bug in RGBa destination
alpha routines). fixed minor scaling calculation bug for clipping when
blending. thansk everyone - please make sure your names are in the AUTHORS
file at some point... :)
_______________________________________________
Thu Apr 27 02:59:57 GMT 2000
(gilbertt)
Well, I'm gonna use the damn ChangeLog anyhow ;-)
Changed all the loaders to use ImlibProgressFunction instead of defining it
themselves. This is so I can change them all at once tomorrow.
_______________________________________________
Thu Apr 27 03:16:59 GMT 2000
(gilbertt)
Okay, an ImlibProgressFunction now return int, not void. The idea of this is
so that a progressive load may be aborted midway, simply by returning 0 from
the progress callback. There are a number of reasons for wanting this.
This is a slight breakage to people currently using progressive loading -
you'll have to change your definition to int, and return 1 to get normal
behaviour again. As far as I know, only feh and imlib2_view uses progressive
loading, and I'll sort those two out. To anyone else, sorry, but it's not
released yet, what did you expect? ;-)
Notice. I haven't changed the loaders yet, so returning 0 won't do squat
until tomorrow, when I change them all. What they will do is clean up and
return what they've got so far. If anyone who wrote a loader wants to do
their own, cool, it'll save me learning the api of every damn image lib ;-)
It's just a case of swapping
progress(params, ...);
with
if(!progress(params, ...)
cleanup_some_stuff_and_return_what_there_is();
Otherwise, I'll do it myself tomorrow.
_______________________________________________
Wed Apr 26 19:58:05 PDT 2000
(KainX)
If progress() returns 0, clip the last row and
return 2.
_______________________________________________
Thu Apr 27 04:00:28 GMT 2000
(gilbertt)
All done except the tiff loader. This one is gonna be hard. Libtiff is quite
broken in many ways ;-)
_______________________________________________
Thu Apr 27 04:22:06 GMT 2000
(gilbertt)
Return 2 from interrupted loaders.
_______________________________________________
Thu Apr 27 13:41:11 GMT 2000
(gilbertt)
Free up some RAM and close the filehandle when interrupted.
_______________________________________________
Thu Apr 27 13:43:49 GMT 2000
(gilbertt)
Actually, made the gif loader give back what it's got without changing im->h
to reflect, or reallocing the image data. The reason for this is that it
already told apps what the image size was in the first progressive loader
callback, and changing it afterwards can cause confusion. Also, an app can
still handle/display a half-loaded image, as the rest is just filled black,
and the programmer knows how much of the image he got, 'cos he interrupted
it from the callback. If the programmer wants to trim the image, he knows
where to trim it, but if he/she wants to display a part-loaded image,
that'll work sanely.
I think this is more sane behaviour, having tested it in feh and
imlib2_view, but feel free to disagree ;-)
_______________________________________________
Wed Jul 12 22:20:53 PDT 2000
(KainX)
It's generally a good idea to increment the reference count when you
implement reference counting. This should fix the mysterious problems
people have been having with Imlib2 stealing pixmaps out from under
Eterm.
_______________________________________________
Fri Aug 10 13:33:13 PDT 2001
(KainX)
None of the libraries are now absolute requirements. Everything that
requires external support which Imlib2 itself doesn't specifically
need can now be optionally built.
_______________________________________________
Tue Jan 15 15:22:06 EST 2002
(KainX)
Fixed a whole slew of potential buffer overflows, hopefully including
the one recently posted to BUGTRAQ.
_______________________________________________
Mon Mar 31 15:20:43 EST 2003
(KainX)
Finally got around to fixing the build. Having Imlib2 already installed
should no longer be necessary to build it.
_______________________________________________
Thu Apr 3 14:06:53 EST 2003
(KainX)
Rearranged include directory order to make sure
local headers are found before system ones.
_______________________________________________
Thu Apr 3 20:48:27 EST 2003
(KainX)
Minor Makefile.am tweak which apparently helps portability.
_______________________________________________
Sat Jul 12 21:06:14 EDT 2003
(KainX)
Patch from Yuri Hudobin <glassy_ape@users.sourceforge.net>
for Freetype2 support.
_______________________________________________
Sat Jul 12 21:33:20 EDT 2003
(KainX)
Up version numbers.
_______________________________________________
Fri Jul 2 14:39:46 EDT 2004
(KainX)
Fixed build (again).
_______________________________________________
Tue Aug 31 11:46:49 JST 2004
(Raster)
Fixed bmp security issue.
New IFF ILBM loader
Up to 1.1.2
_______________________________________________
|