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
|
glAccum https://www.opengl.org/sdk/docs/man2/xhtml/glAccum.xml
glAccumxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glActiveProgramEXT https://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt
glActiveShaderProgram https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glActiveShaderProgram https://www.opengl.org/sdk/docs/man/html/glActiveShaderProgram.xhtml
glActiveStencilFaceEXT https://www.opengl.org/registry/specs/EXT/stencil_two_side.txt
glActiveTexture https://www.opengl.org/sdk/docs/man/html/glActiveTexture.xhtml
glActiveTexture https://www.opengl.org/sdk/docs/man2/xhtml/glActiveTexture.xml
glActiveVaryingNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glAlphaFunc https://www.opengl.org/sdk/docs/man2/xhtml/glAlphaFunc.xml
glAlphaFuncxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glApplyTextureEXT https://www.opengl.org/registry/specs/EXT/light_texture.txt
glAreProgramsResidentNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glAreTexturesResident https://www.opengl.org/sdk/docs/man2/xhtml/glAreTexturesResident.xml
glAreTexturesResidentEXT https://www.opengl.org/registry/specs/EXT/texture_object.txt
glArrayElement https://www.opengl.org/sdk/docs/man2/xhtml/glArrayElement.xml
glArrayElementEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glArrayObjectATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glAsyncMarkerSGIX https://www.opengl.org/registry/specs/SGIX/async.txt
glAttachObjectARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glAttachShader https://www.opengl.org/sdk/docs/man/html/glAttachShader.xhtml
glAttachShader https://www.opengl.org/sdk/docs/man2/xhtml/glAttachShader.xml
glBegin https://www.opengl.org/sdk/docs/man2/xhtml/glBegin.xml
glBeginConditionalRender https://www.opengl.org/sdk/docs/man/html/glBeginConditionalRender.xhtml
glBeginConditionalRenderNV https://www.opengl.org/registry/specs/NV/conditional_render.txt
glBeginOcclusionQueryNV https://www.opengl.org/registry/specs/NV/occlusion_query.txt
glBeginPerfMonitorAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glBeginQuery https://www.opengl.org/sdk/docs/man/html/glBeginQuery.xhtml
glBeginQuery https://www.opengl.org/sdk/docs/man2/xhtml/glBeginQuery.xml
glBeginQueryARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glBeginQueryIndexed https://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glBeginQueryIndexed https://www.opengl.org/sdk/docs/man/html/glBeginQueryIndexed.xhtml
glBeginSceneEXT https://www.opengl.org/registry/specs/EXT/scene_marker.txt
glBeginTransformFeedback https://www.opengl.org/sdk/docs/man/html/glBeginTransformFeedback.xhtml
glBeginTransformFeedbackEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glBeginTransformFeedbackNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glBeginVideoCaptureNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glBindArraySetEXT https://www.opengl.org/registry/specs/EXT/vertex_array_set.alt.txt
glBindArraySetEXT https://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
glBindAttribLocation https://www.opengl.org/sdk/docs/man/html/glBindAttribLocation.xhtml
glBindAttribLocation https://www.opengl.org/sdk/docs/man2/xhtml/glBindAttribLocation.xml
glBindAttribLocationARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glBindBuffer https://www.opengl.org/sdk/docs/man/html/glBindBuffer.xhtml
glBindBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glBindBuffer.xml
glBindBufferARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glBindBufferBase https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glBindBufferBase https://www.opengl.org/sdk/docs/man/html/glBindBufferBase.xhtml
glBindBufferBaseEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glBindBufferBaseNV https://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glBindBufferBaseNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glBindBufferOffsetEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glBindBufferOffsetNV https://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glBindBufferOffsetNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glBindBufferRange https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glBindBufferRange https://www.opengl.org/sdk/docs/man/html/glBindBufferRange.xhtml
glBindBufferRangeEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glBindBufferRangeNV https://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glBindBufferRangeNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glBindFragDataLocation https://www.opengl.org/sdk/docs/man/html/glBindFragDataLocation.xhtml
glBindFragDataLocationEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glBindFragDataLocationIndexed https://www.opengl.org/registry/specs/ARB/blend_func_extended.txt
glBindFragDataLocationIndexed https://www.opengl.org/sdk/docs/man/html/glBindFragDataLocationIndexed.xhtml
glBindFramebuffer https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glBindFramebuffer https://www.opengl.org/sdk/docs/man/html/glBindFramebuffer.xhtml
glBindFramebufferEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glBindImageTexture https://www.opengl.org/registry/specs/ARB/shader_image_load_store.txt
glBindImageTextureEXT https://www.opengl.org/registry/specs/EXT/shader_image_load_store.txt
glBindMultiTextureEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glBindProgramARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glBindProgramARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glBindProgramNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glBindProgramPipeline https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glBindProgramPipeline https://www.opengl.org/sdk/docs/man/html/glBindProgramPipeline.xhtml
glBindRenderbuffer https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glBindRenderbuffer https://www.opengl.org/sdk/docs/man/html/glBindRenderbuffer.xhtml
glBindRenderbufferEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glBindSampler https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glBindSampler https://www.opengl.org/sdk/docs/man/html/glBindSampler.xhtml
glBindSwapBarrierSGIX https://www.opengl.org/registry/specs/SGIX/swap_barrier.txt
glBindTexture https://www.opengl.org/sdk/docs/man/html/glBindTexture.xhtml
glBindTexture https://www.opengl.org/sdk/docs/man2/xhtml/glBindTexture.xml
glBindTextureEXT https://www.opengl.org/registry/specs/EXT/texture_object.txt
glBindTransformFeedback https://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glBindTransformFeedback https://www.opengl.org/sdk/docs/man/html/glBindTransformFeedback.xhtml
glBindTransformFeedbackNV https://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glBindVertexArray https://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glBindVertexArray https://www.opengl.org/sdk/docs/man/html/glBindVertexArray.xhtml
glBindVertexArrayAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
glBindVideoCaptureStreamBufferNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glBindVideoCaptureStreamTextureNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glBinormalPointerEXT https://www.opengl.org/registry/specs/EXT/coordinate_frame.txt
glBitmap https://www.opengl.org/sdk/docs/man2/xhtml/glBitmap.xml
glBitmapxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glBlendColor https://www.opengl.org/sdk/docs/man/html/glBlendColor.xhtml
glBlendColor https://www.opengl.org/sdk/docs/man2/xhtml/glBlendColor.xml
glBlendColorEXT https://www.opengl.org/registry/specs/EXT/blend_color.txt
glBlendColorxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glBlendEquation https://www.opengl.org/sdk/docs/man/html/glBlendEquation.xhtml
glBlendEquation https://www.opengl.org/sdk/docs/man2/xhtml/glBlendEquation.xml
glBlendEquationEXT https://www.opengl.org/registry/specs/EXT/blend_minmax.txt
glBlendEquationIndexedAMD https://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendEquationSeparate https://www.opengl.org/sdk/docs/man/html/glBlendEquationSeparate.xhtml
glBlendEquationSeparate https://www.opengl.org/sdk/docs/man2/xhtml/glBlendEquationSeparate.xml
glBlendEquationSeparateEXT https://www.opengl.org/registry/specs/EXT/blend_equation_separate.txt
glBlendEquationSeparateIndexedAMD https://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendEquationSeparatei https://www.opengl.org/sdk/docs/man/html/glBlendEquationSeparate.xhtml
glBlendEquationSeparateiARB https://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt
glBlendEquationi https://www.opengl.org/sdk/docs/man/html/glBlendEquation.xhtml
glBlendEquationiARB https://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt
glBlendFunc https://www.opengl.org/sdk/docs/man/html/glBlendFunc.xhtml
glBlendFunc https://www.opengl.org/sdk/docs/man2/xhtml/glBlendFunc.xml
glBlendFuncIndexedAMD https://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendFuncSeparate https://www.opengl.org/sdk/docs/man/html/glBlendFuncSeparate.xhtml
glBlendFuncSeparate https://www.opengl.org/sdk/docs/man2/xhtml/glBlendFuncSeparate.xml
glBlendFuncSeparateEXT https://www.opengl.org/registry/specs/EXT/blend_func_separate.txt
glBlendFuncSeparateIndexedAMD https://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendFuncSeparatei https://www.opengl.org/sdk/docs/man/html/glBlendFuncSeparate.xhtml
glBlendFuncSeparateiARB https://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt
glBlendFunci https://www.opengl.org/sdk/docs/man/html/glBlendFunc.xhtml
glBlendFunciARB https://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt
glBlitFramebuffer https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glBlitFramebuffer https://www.opengl.org/sdk/docs/man/html/glBlitFramebuffer.xhtml
glBlitFramebufferEXT https://www.opengl.org/registry/specs/EXT/framebuffer_blit.txt
glBufferAddressRangeNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glBufferData https://www.opengl.org/sdk/docs/man/html/glBufferData.xhtml
glBufferData https://www.opengl.org/sdk/docs/man2/xhtml/glBufferData.xml
glBufferDataARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glBufferParameteriAPPLE https://www.opengl.org/registry/specs/APPLE/flush_buffer_range.txt
glBufferSubData https://www.opengl.org/sdk/docs/man/html/glBufferSubData.xhtml
glBufferSubData https://www.opengl.org/sdk/docs/man2/xhtml/glBufferSubData.xml
glBufferSubDataARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glCallList https://www.opengl.org/sdk/docs/man2/xhtml/glCallList.xml
glCallLists https://www.opengl.org/sdk/docs/man2/xhtml/glCallLists.xml
glCheckFramebufferStatus https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glCheckFramebufferStatus https://www.opengl.org/sdk/docs/man/html/glCheckFramebufferStatus.xhtml
glCheckFramebufferStatusEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glCheckNamedFramebufferStatusEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glClampColor https://www.opengl.org/sdk/docs/man/html/glClampColor.xhtml
glClampColorARB https://www.opengl.org/registry/specs/ARB/color_buffer_float.txt
glClear https://www.opengl.org/sdk/docs/man/html/glClear.xhtml
glClear https://www.opengl.org/sdk/docs/man2/xhtml/glClear.xml
glClearAccum https://www.opengl.org/sdk/docs/man2/xhtml/glClearAccum.xml
glClearAccumxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glClearBufferfi https://www.opengl.org/sdk/docs/man/html/glClearBuffer.xhtml
glClearBufferfv https://www.opengl.org/sdk/docs/man/html/glClearBuffer.xhtml
glClearBufferiv https://www.opengl.org/sdk/docs/man/html/glClearBuffer.xhtml
glClearBufferuiv https://www.opengl.org/sdk/docs/man/html/glClearBuffer.xhtml
glClearColor https://www.opengl.org/sdk/docs/man/html/glClearColor.xhtml
glClearColor https://www.opengl.org/sdk/docs/man2/xhtml/glClearColor.xml
glClearColorxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glClearDepth https://www.opengl.org/sdk/docs/man/html/glClearDepth.xhtml
glClearDepth https://www.opengl.org/sdk/docs/man2/xhtml/glClearDepth.xml
glClearDepthdNV https://www.opengl.org/registry/specs/NV/depth_buffer_float.txt
glClearDepthf https://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glClearDepthf https://www.opengl.org/sdk/docs/man/html/glClearDepth.xhtml
glClearDepthfOES https://www.opengl.org/registry/specs/OES/OES_single_precision.txt
glClearDepthxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glClearIndex https://www.opengl.org/sdk/docs/man2/xhtml/glClearIndex.xml
glClearStencil https://www.opengl.org/sdk/docs/man/html/glClearStencil.xhtml
glClearStencil https://www.opengl.org/sdk/docs/man2/xhtml/glClearStencil.xml
glClientActiveTexture https://www.opengl.org/sdk/docs/man2/xhtml/glClientActiveTexture.xml
glClientActiveVertexStream https://www.opengl.org/registry/specs/ATI/vertex_streams.txt
glClientAttribDefaultEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glClientWaitSync https://www.opengl.org/registry/specs/ARB/sync.txt
glClientWaitSync https://www.opengl.org/sdk/docs/man/html/glClientWaitSync.xhtml
glClipPlane https://www.opengl.org/sdk/docs/man2/xhtml/glClipPlane.xml
glClipPlanefOES https://www.opengl.org/registry/specs/OES/OES_single_precision.txt
glClipPlanexOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glColor3b https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3bv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3d https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3dv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3f https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3fVertex3fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor3fVertex3fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor3fv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glColor3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glColor3i https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3iv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3s https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3sv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3ub https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3ubv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3ui https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3uiv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3us https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor3usv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4b https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4bv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4d https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4dv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4f https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4fNormal3fVertex3fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4fNormal3fVertex3fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4fv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glColor4hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glColor4i https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4iv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4s https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4sv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4ub https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4ubVertex2fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4ubVertex2fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4ubVertex3fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4ubVertex3fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4ubv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4ui https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4uiv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4us https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColor4usv https://www.opengl.org/sdk/docs/man2/xhtml/glColor.xml
glColorFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glColorMask https://www.opengl.org/sdk/docs/man/html/glColorMask.xhtml
glColorMask https://www.opengl.org/sdk/docs/man2/xhtml/glColorMask.xml
glColorMaskIndexedEXT https://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
glColorMaski https://www.opengl.org/sdk/docs/man/html/glColorMask.xhtml
glColorMaterial https://www.opengl.org/sdk/docs/man2/xhtml/glColorMaterial.xml
glColorP3ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glColorP3uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glColorP4ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glColorP4uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glColorPointer https://www.opengl.org/sdk/docs/man2/xhtml/glColorPointer.xml
glColorPointerEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glColorPointervINTEL https://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
glColorSubTable https://www.opengl.org/sdk/docs/man2/xhtml/glColorSubTable.xml
glColorSubTableEXT https://www.opengl.org/registry/specs/EXT/color_subtable.txt
glColorSubTableEXT https://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glColorTable https://www.opengl.org/sdk/docs/man2/xhtml/glColorTable.xml
glColorTableEXT https://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glColorTableParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glColorTableParameter.xml
glColorTableParameterfvSGI https://www.opengl.org/registry/specs/SGI/color_table.txt
glColorTableParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glColorTableParameter.xml
glColorTableParameterivSGI https://www.opengl.org/registry/specs/SGI/color_table.txt
glColorTableSGI https://www.opengl.org/registry/specs/SGI/color_table.txt
glCombinerInputNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glCombinerOutputNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glCombinerParameterfNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glCombinerParameterfvNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glCombinerParameteriNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glCombinerParameterivNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glCombinerStageParameterfvNV https://www.opengl.org/registry/specs/NV/register_combiners2.txt
glCompileShader https://www.opengl.org/sdk/docs/man/html/glCompileShader.xhtml
glCompileShader https://www.opengl.org/sdk/docs/man2/xhtml/glCompileShader.xml
glCompileShaderARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glCompileShaderIncludeARB https://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glCompressedMultiTexImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedMultiTexImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedMultiTexImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedMultiTexSubImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedMultiTexSubImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedMultiTexSubImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedTexImage1D https://www.opengl.org/sdk/docs/man/html/glCompressedTexImage1D.xhtml
glCompressedTexImage1D https://www.opengl.org/sdk/docs/man2/xhtml/glCompressedTexImage1D.xml
glCompressedTexImage1DARB https://www.opengl.org/registry/specs/ARB/texture_compression.txt
glCompressedTexImage2D https://www.opengl.org/sdk/docs/man/html/glCompressedTexImage2D.xhtml
glCompressedTexImage2D https://www.opengl.org/sdk/docs/man2/xhtml/glCompressedTexImage2D.xml
glCompressedTexImage2DARB https://www.opengl.org/registry/specs/ARB/texture_compression.txt
glCompressedTexImage3D https://www.opengl.org/sdk/docs/man/html/glCompressedTexImage3D.xhtml
glCompressedTexImage3D https://www.opengl.org/sdk/docs/man2/xhtml/glCompressedTexImage3D.xml
glCompressedTexImage3DARB https://www.opengl.org/registry/specs/ARB/texture_compression.txt
glCompressedTexSubImage1D https://www.opengl.org/sdk/docs/man/html/glCompressedTexSubImage1D.xhtml
glCompressedTexSubImage1D https://www.opengl.org/sdk/docs/man2/xhtml/glCompressedTexSubImage1D.xml
glCompressedTexSubImage1DARB https://www.opengl.org/registry/specs/ARB/texture_compression.txt
glCompressedTexSubImage2D https://www.opengl.org/sdk/docs/man/html/glCompressedTexSubImage2D.xhtml
glCompressedTexSubImage2D https://www.opengl.org/sdk/docs/man2/xhtml/glCompressedTexSubImage2D.xml
glCompressedTexSubImage2DARB https://www.opengl.org/registry/specs/ARB/texture_compression.txt
glCompressedTexSubImage3D https://www.opengl.org/sdk/docs/man/html/glCompressedTexSubImage3D.xhtml
glCompressedTexSubImage3D https://www.opengl.org/sdk/docs/man2/xhtml/glCompressedTexSubImage3D.xml
glCompressedTexSubImage3DARB https://www.opengl.org/registry/specs/ARB/texture_compression.txt
glCompressedTextureImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedTextureImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedTextureImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedTextureSubImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedTextureSubImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedTextureSubImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glConvolutionFilter1D https://www.opengl.org/sdk/docs/man2/xhtml/glConvolutionFilter1D.xml
glConvolutionFilter1DEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionFilter2D https://www.opengl.org/sdk/docs/man2/xhtml/glConvolutionFilter2D.xml
glConvolutionFilter2DEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameterf https://www.opengl.org/sdk/docs/man2/xhtml/glConvolutionParameter.xml
glConvolutionParameterfEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glConvolutionParameter.xml
glConvolutionParameterfvEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameteri https://www.opengl.org/sdk/docs/man2/xhtml/glConvolutionParameter.xml
glConvolutionParameteriEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glConvolutionParameter.xml
glConvolutionParameterivEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glCopyBufferSubData https://www.opengl.org/registry/specs/ARB/copy_buffer.txt
glCopyBufferSubData https://www.opengl.org/sdk/docs/man/html/glCopyBufferSubData.xhtml
glCopyColorSubTable https://www.opengl.org/sdk/docs/man2/xhtml/glCopyColorSubTable.xml
glCopyColorSubTableEXT https://www.opengl.org/registry/specs/EXT/color_subtable.txt
glCopyColorTable https://www.opengl.org/sdk/docs/man2/xhtml/glCopyColorTable.xml
glCopyColorTableSGI https://www.opengl.org/registry/specs/SGI/color_table.txt
glCopyConvolutionFilter1D https://www.opengl.org/sdk/docs/man2/xhtml/glCopyConvolutionFilter1D.xml
glCopyConvolutionFilter1DEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glCopyConvolutionFilter2D https://www.opengl.org/sdk/docs/man2/xhtml/glCopyConvolutionFilter2D.xml
glCopyConvolutionFilter2DEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glCopyImageSubDataNV https://www.opengl.org/registry/specs/NV/copy_image.txt
glCopyMultiTexImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyMultiTexImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyMultiTexSubImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyMultiTexSubImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyMultiTexSubImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyPathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glCopyPixels https://www.opengl.org/sdk/docs/man2/xhtml/glCopyPixels.xml
glCopyTexImage1D https://www.opengl.org/sdk/docs/man/html/glCopyTexImage1D.xhtml
glCopyTexImage1D https://www.opengl.org/sdk/docs/man2/xhtml/glCopyTexImage1D.xml
glCopyTexImage1DEXT https://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexImage2D https://www.opengl.org/sdk/docs/man/html/glCopyTexImage2D.xhtml
glCopyTexImage2D https://www.opengl.org/sdk/docs/man2/xhtml/glCopyTexImage2D.xml
glCopyTexImage2DEXT https://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexSubImage1D https://www.opengl.org/sdk/docs/man/html/glCopyTexSubImage1D.xhtml
glCopyTexSubImage1D https://www.opengl.org/sdk/docs/man2/xhtml/glCopyTexSubImage1D.xml
glCopyTexSubImage1DEXT https://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexSubImage2D https://www.opengl.org/sdk/docs/man/html/glCopyTexSubImage2D.xhtml
glCopyTexSubImage2D https://www.opengl.org/sdk/docs/man2/xhtml/glCopyTexSubImage2D.xml
glCopyTexSubImage2DEXT https://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexSubImage3D https://www.opengl.org/sdk/docs/man/html/glCopyTexSubImage3D.xhtml
glCopyTexSubImage3D https://www.opengl.org/sdk/docs/man2/xhtml/glCopyTexSubImage3D.xml
glCopyTexSubImage3DEXT https://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTextureImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyTextureImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyTextureSubImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyTextureSubImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCopyTextureSubImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCoverFillPathInstancedNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glCoverFillPathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glCoverStrokePathInstancedNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glCoverStrokePathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glCreateProgram https://www.opengl.org/sdk/docs/man/html/glCreateProgram.xhtml
glCreateProgram https://www.opengl.org/sdk/docs/man2/xhtml/glCreateProgram.xml
glCreateProgramObjectARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glCreateShader https://www.opengl.org/sdk/docs/man/html/glCreateShader.xhtml
glCreateShader https://www.opengl.org/sdk/docs/man2/xhtml/glCreateShader.xml
glCreateShaderObjectARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glCreateShaderProgramEXT https://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt
glCreateShaderProgramv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glCreateShaderProgramv https://www.opengl.org/sdk/docs/man/html/glCreateShaderProgram.xhtml
glCreateSyncFromCLeventARB https://www.opengl.org/registry/specs/ARB/cl_event.txt
glCullFace https://www.opengl.org/sdk/docs/man/html/glCullFace.xhtml
glCullFace https://www.opengl.org/sdk/docs/man2/xhtml/glCullFace.xml
glCurrentPaletteMatrixARB https://www.opengl.org/registry/specs/ARB/matrix_palette.txt
glDECLARE_HANDLE https://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
glDECLARE_HANDLE https://www.opengl.org/registry/specs/NV/present_video.txt
glDebugMessageCallbackAMD https://www.opengl.org/registry/specs/AMD/debug_output.txt
glDebugMessageCallbackARB https://www.opengl.org/registry/specs/ARB/debug_output.txt
glDebugMessageControlARB https://www.opengl.org/registry/specs/ARB/debug_output.txt
glDebugMessageEnableAMD https://www.opengl.org/registry/specs/AMD/debug_output.txt
glDebugMessageInsertAMD https://www.opengl.org/registry/specs/AMD/debug_output.txt
glDebugMessageInsertARB https://www.opengl.org/registry/specs/ARB/debug_output.txt
glDeleteArraySetsEXT https://www.opengl.org/registry/specs/EXT/vertex_array_set.alt.txt
glDeleteArraySetsEXT https://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
glDeleteAsyncMarkersSGIX https://www.opengl.org/registry/specs/SGIX/async.txt
glDeleteBuffers https://www.opengl.org/sdk/docs/man/html/glDeleteBuffers.xhtml
glDeleteBuffers https://www.opengl.org/sdk/docs/man2/xhtml/glDeleteBuffers.xml
glDeleteBuffersARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glDeleteFencesAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glDeleteFencesNV https://www.opengl.org/registry/specs/NV/fence.txt
glDeleteFramebuffers https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glDeleteFramebuffers https://www.opengl.org/sdk/docs/man/html/glDeleteFramebuffers.xhtml
glDeleteFramebuffersEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glDeleteLists https://www.opengl.org/sdk/docs/man2/xhtml/glDeleteLists.xml
glDeleteNamedStringARB https://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glDeleteNamesAMD https://www.opengl.org/registry/specs/AMD/name_gen_delete.txt
glDeleteObjectARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glDeleteOcclusionQueriesNV https://www.opengl.org/registry/specs/NV/occlusion_query.txt
glDeletePathsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glDeletePerfMonitorsAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glDeleteProgram https://www.opengl.org/sdk/docs/man/html/glDeleteProgram.xhtml
glDeleteProgram https://www.opengl.org/sdk/docs/man2/xhtml/glDeleteProgram.xml
glDeleteProgramPipelines https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glDeleteProgramPipelines https://www.opengl.org/sdk/docs/man/html/glDeleteProgramPipelines.xhtml
glDeleteProgramsARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glDeleteProgramsARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glDeleteProgramsNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glDeleteQueries https://www.opengl.org/sdk/docs/man/html/glDeleteQueries.xhtml
glDeleteQueries https://www.opengl.org/sdk/docs/man2/xhtml/glDeleteQueries.xml
glDeleteQueriesARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glDeleteRenderbuffers https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glDeleteRenderbuffers https://www.opengl.org/sdk/docs/man/html/glDeleteRenderbuffers.xhtml
glDeleteRenderbuffersEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glDeleteSamplers https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glDeleteSamplers https://www.opengl.org/sdk/docs/man/html/glDeleteSamplers.xhtml
glDeleteShader https://www.opengl.org/sdk/docs/man/html/glDeleteShader.xhtml
glDeleteShader https://www.opengl.org/sdk/docs/man2/xhtml/glDeleteShader.xml
glDeleteSync https://www.opengl.org/registry/specs/ARB/sync.txt
glDeleteSync https://www.opengl.org/sdk/docs/man/html/glDeleteSync.xhtml
glDeleteTextures https://www.opengl.org/sdk/docs/man/html/glDeleteTextures.xhtml
glDeleteTextures https://www.opengl.org/sdk/docs/man2/xhtml/glDeleteTextures.xml
glDeleteTexturesEXT https://www.opengl.org/registry/specs/EXT/texture_object.txt
glDeleteTransformFeedbacks https://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glDeleteTransformFeedbacks https://www.opengl.org/sdk/docs/man/html/glDeleteTransformFeedbacks.xhtml
glDeleteTransformFeedbacksNV https://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glDeleteVertexArrays https://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glDeleteVertexArrays https://www.opengl.org/sdk/docs/man/html/glDeleteVertexArrays.xhtml
glDeleteVertexArraysAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
glDepthBoundsEXT https://www.opengl.org/registry/specs/EXT/depth_bounds_test.txt
glDepthBoundsdNV https://www.opengl.org/registry/specs/NV/depth_buffer_float.txt
glDepthFunc https://www.opengl.org/sdk/docs/man/html/glDepthFunc.xhtml
glDepthFunc https://www.opengl.org/sdk/docs/man2/xhtml/glDepthFunc.xml
glDepthMask https://www.opengl.org/sdk/docs/man/html/glDepthMask.xhtml
glDepthMask https://www.opengl.org/sdk/docs/man2/xhtml/glDepthMask.xml
glDepthRange https://www.opengl.org/sdk/docs/man/html/glDepthRange.xhtml
glDepthRange https://www.opengl.org/sdk/docs/man2/xhtml/glDepthRange.xml
glDepthRangeArrayv https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glDepthRangeArrayv https://www.opengl.org/sdk/docs/man/html/glDepthRangeArray.xhtml
glDepthRangeIndexed https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glDepthRangeIndexed https://www.opengl.org/sdk/docs/man/html/glDepthRangeIndexed.xhtml
glDepthRangedNV https://www.opengl.org/registry/specs/NV/depth_buffer_float.txt
glDepthRangef https://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glDepthRangef https://www.opengl.org/sdk/docs/man/html/glDepthRange.xhtml
glDepthRangefOES https://www.opengl.org/registry/specs/OES/OES_single_precision.txt
glDepthRangexOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glDetachObjectARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glDetachShader https://www.opengl.org/sdk/docs/man/html/glDetachShader.xhtml
glDetachShader https://www.opengl.org/sdk/docs/man2/xhtml/glDetachShader.xml
glDetailTexFuncSGIS https://www.opengl.org/registry/specs/SGIS/detail_texture.txt
glDisable https://www.opengl.org/sdk/docs/man/html/glEnable.xhtml
glDisable https://www.opengl.org/sdk/docs/man2/xhtml/glEnable.xml
glDisableClientState https://www.opengl.org/sdk/docs/man2/xhtml/glEnableClientState.xml
glDisableClientStateIndexedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glDisableClientStateiEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glDisableIndexedEXT https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glDisableIndexedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glDisableIndexedEXT https://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
glDisableVertexArrayAttribEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glDisableVertexArrayEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glDisableVertexAttribAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glDisableVertexAttribArray https://www.opengl.org/sdk/docs/man/html/glEnableVertexAttribArray.xhtml
glDisableVertexAttribArray https://www.opengl.org/sdk/docs/man2/xhtml/glEnableVertexAttribArray.xml
glDisableVertexAttribArrayARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glDisableVertexAttribArrayARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glDisablei https://www.opengl.org/sdk/docs/man/html/glEnable.xhtml
glDrawArrays https://www.opengl.org/sdk/docs/man/html/glDrawArrays.xhtml
glDrawArrays https://www.opengl.org/sdk/docs/man2/xhtml/glDrawArrays.xml
glDrawArraysEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glDrawArraysIndirect https://www.opengl.org/registry/specs/ARB/draw_indirect.txt
glDrawArraysIndirect https://www.opengl.org/sdk/docs/man/html/glDrawArraysIndirect.xhtml
glDrawArraysInstanced https://www.opengl.org/sdk/docs/man/html/glDrawArraysInstanced.xhtml
glDrawArraysInstancedARB https://www.opengl.org/registry/specs/ARB/draw_instanced.txt
glDrawArraysInstancedBaseInstance https://www.opengl.org/registry/specs/ARB/base_instance.txt
glDrawArraysInstancedEXT https://www.opengl.org/registry/specs/EXT/draw_instanced.txt
glDrawBuffer https://www.opengl.org/sdk/docs/man/html/glDrawBuffer.xhtml
glDrawBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glDrawBuffer.xml
glDrawBuffers https://www.opengl.org/sdk/docs/man/html/glDrawBuffers.xhtml
glDrawBuffers https://www.opengl.org/sdk/docs/man2/xhtml/glDrawBuffers.xml
glDrawBuffersARB https://www.opengl.org/registry/specs/ARB/draw_buffers.txt
glDrawBuffersATI https://www.opengl.org/registry/specs/ATI/draw_buffers.txt
glDrawElementArrayAPPLE https://www.opengl.org/registry/specs/APPLE/element_array.txt
glDrawElementArrayATI https://www.opengl.org/registry/specs/ATI/element_array.txt
glDrawElements https://www.opengl.org/sdk/docs/man/html/glDrawElements.xhtml
glDrawElements https://www.opengl.org/sdk/docs/man2/xhtml/glDrawElements.xml
glDrawElementsBaseVertex https://www.opengl.org/registry/specs/ARB/draw_elements_base_vertex.txt
glDrawElementsBaseVertex https://www.opengl.org/sdk/docs/man/html/glDrawElementsBaseVertex.xhtml
glDrawElementsIndirect https://www.opengl.org/registry/specs/ARB/draw_indirect.txt
glDrawElementsIndirect https://www.opengl.org/sdk/docs/man/html/glDrawElementsIndirect.xhtml
glDrawElementsInstanced https://www.opengl.org/sdk/docs/man/html/glDrawElementsInstanced.xhtml
glDrawElementsInstancedARB https://www.opengl.org/registry/specs/ARB/draw_instanced.txt
glDrawElementsInstancedBaseInstance https://www.opengl.org/registry/specs/ARB/base_instance.txt
glDrawElementsInstancedBaseVertex https://www.opengl.org/registry/specs/ARB/draw_elements_base_vertex.txt
glDrawElementsInstancedBaseVertex https://www.opengl.org/sdk/docs/man/html/glDrawElementsInstancedBaseVertex.xhtml
glDrawElementsInstancedBaseVertexBaseInstance https://www.opengl.org/registry/specs/ARB/base_instance.txt
glDrawElementsInstancedEXT https://www.opengl.org/registry/specs/EXT/draw_instanced.txt
glDrawMeshArraysSUN https://www.opengl.org/registry/specs/SUN/mesh_array.txt
glDrawPixels https://www.opengl.org/sdk/docs/man2/xhtml/glDrawPixels.xml
glDrawRangeElementArrayAPPLE https://www.opengl.org/registry/specs/APPLE/element_array.txt
glDrawRangeElementArrayATI https://www.opengl.org/registry/specs/ATI/element_array.txt
glDrawRangeElements https://www.opengl.org/sdk/docs/man/html/glDrawRangeElements.xhtml
glDrawRangeElements https://www.opengl.org/sdk/docs/man2/xhtml/glDrawRangeElements.xml
glDrawRangeElementsBaseVertex https://www.opengl.org/registry/specs/ARB/draw_elements_base_vertex.txt
glDrawRangeElementsBaseVertex https://www.opengl.org/sdk/docs/man/html/glDrawRangeElementsBaseVertex.xhtml
glDrawTransformFeedback https://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glDrawTransformFeedback https://www.opengl.org/sdk/docs/man/html/glDrawTransformFeedback.xhtml
glDrawTransformFeedbackInstanced https://www.opengl.org/registry/specs/ARB/transform_feedback_instanced.txt
glDrawTransformFeedbackNV https://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glDrawTransformFeedbackStream https://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glDrawTransformFeedbackStream https://www.opengl.org/sdk/docs/man/html/glDrawTransformFeedbackStream.xhtml
glDrawTransformFeedbackStreamInstanced https://www.opengl.org/registry/specs/ARB/transform_feedback_instanced.txt
glEdgeFlag https://www.opengl.org/sdk/docs/man2/xhtml/glEdgeFlag.xml
glEdgeFlagFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glEdgeFlagPointer https://www.opengl.org/sdk/docs/man2/xhtml/glEdgeFlagPointer.xml
glEdgeFlagPointerEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glEdgeFlagv https://www.opengl.org/sdk/docs/man2/xhtml/glEdgeFlag.xml
glElementPointerAPPLE https://www.opengl.org/registry/specs/APPLE/element_array.txt
glElementPointerATI https://www.opengl.org/registry/specs/ATI/element_array.txt
glEnable https://www.opengl.org/registry/specs/SGIX/instruments.txt
glEnable https://www.opengl.org/sdk/docs/man/html/glEnable.xhtml
glEnable https://www.opengl.org/sdk/docs/man2/xhtml/glEnable.xml
glEnableClientState https://www.opengl.org/sdk/docs/man2/xhtml/glEnableClientState.xml
glEnableClientStateIndexedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glEnableClientStateiEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glEnableIndexedEXT https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glEnableIndexedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glEnableIndexedEXT https://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
glEnableVertexArrayAttribEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glEnableVertexArrayEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glEnableVertexAttribAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glEnableVertexAttribArray https://www.opengl.org/sdk/docs/man/html/glEnableVertexAttribArray.xhtml
glEnableVertexAttribArray https://www.opengl.org/sdk/docs/man2/xhtml/glEnableVertexAttribArray.xml
glEnableVertexAttribArrayARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glEnableVertexAttribArrayARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glEnablei https://www.opengl.org/sdk/docs/man/html/glEnable.xhtml
glEnd https://www.opengl.org/sdk/docs/man2/xhtml/glBegin.xml
glEndConditionalRender https://www.opengl.org/sdk/docs/man/html/glBeginConditionalRender.xhtml
glEndConditionalRenderNV https://www.opengl.org/registry/specs/NV/conditional_render.txt
glEndList https://www.opengl.org/sdk/docs/man2/xhtml/glNewList.xml
glEndOcclusionQueryNV https://www.opengl.org/registry/specs/NV/occlusion_query.txt
glEndPerfMonitorAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glEndQuery https://www.opengl.org/sdk/docs/man/html/glBeginQuery.xhtml
glEndQuery https://www.opengl.org/sdk/docs/man2/xhtml/glBeginQuery.xml
glEndQueryARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glEndQueryIndexed https://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glEndQueryIndexed https://www.opengl.org/sdk/docs/man/html/glBeginQueryIndexed.xhtml
glEndSceneEXT https://www.opengl.org/registry/specs/EXT/scene_marker.txt
glEndTransformFeedback https://www.opengl.org/sdk/docs/man/html/glBeginTransformFeedback.xhtml
glEndTransformFeedbackEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glEndTransformFeedbackNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glEndVideoCaptureNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glEvalCoord1d https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalCoord1dv https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalCoord1f https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalCoord1fv https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalCoord2d https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalCoord2dv https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalCoord2f https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalCoord2fv https://www.opengl.org/sdk/docs/man2/xhtml/glEvalCoord.xml
glEvalMapsNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glEvalMesh1 https://www.opengl.org/sdk/docs/man2/xhtml/glEvalMesh.xml
glEvalMesh2 https://www.opengl.org/sdk/docs/man2/xhtml/glEvalMesh.xml
glEvalPoint1 https://www.opengl.org/sdk/docs/man2/xhtml/glEvalPoint.xml
glEvalPoint2 https://www.opengl.org/sdk/docs/man2/xhtml/glEvalPoint.xml
glExecuteProgramNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glFeedbackBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glFeedbackBuffer.xml
glFeedbackBufferxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glFenceSync https://www.opengl.org/registry/specs/ARB/sync.txt
glFenceSync https://www.opengl.org/sdk/docs/man/html/glFenceSync.xhtml
glFinalCombinerInputNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glFinish https://www.opengl.org/sdk/docs/man/html/glFinish.xhtml
glFinish https://www.opengl.org/sdk/docs/man2/xhtml/glFinish.xml
glFinishAsyncSGIX https://www.opengl.org/registry/specs/SGIX/async.txt
glFinishFenceAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glFinishFenceNV https://www.opengl.org/registry/specs/NV/fence.txt
glFinishObjectAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glFinishTextureSUNX https://www.opengl.org/registry/specs/SUNX/constant_data.txt
glFlush https://www.opengl.org/sdk/docs/man/html/glFlush.xhtml
glFlush https://www.opengl.org/sdk/docs/man2/xhtml/glFlush.xml
glFlushMappedBufferRange https://www.opengl.org/registry/specs/ARB/map_buffer_range.txt
glFlushMappedBufferRange https://www.opengl.org/sdk/docs/man/html/glFlushMappedBufferRange.xhtml
glFlushMappedBufferRangeAPPLE https://www.opengl.org/registry/specs/APPLE/flush_buffer_range.txt
glFlushMappedNamedBufferRangeEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glFlushPixelDataRangeNV https://www.opengl.org/registry/specs/NV/pixel_data_range.txt
glFlushRasterSGIX https://www.opengl.org/registry/specs/SGIX/flush_raster.txt
glFlushStaticDataIBM https://www.opengl.org/registry/specs/IBM/static_data.txt
glFlushVertexArrayRangeAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_array_range.txt
glFlushVertexArrayRangeNV https://www.opengl.org/registry/specs/NV/vertex_array_range.txt
glFogCoordFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glFogCoordPointer https://www.opengl.org/sdk/docs/man2/xhtml/glFogCoordPointer.xml
glFogCoordPointerEXT https://www.opengl.org/registry/specs/EXT/fog_coord.txt
glFogCoordd https://www.opengl.org/sdk/docs/man2/xhtml/glFogCoord.xml
glFogCoorddv https://www.opengl.org/sdk/docs/man2/xhtml/glFogCoord.xml
glFogCoordf https://www.opengl.org/sdk/docs/man2/xhtml/glFogCoord.xml
glFogCoordfv https://www.opengl.org/sdk/docs/man2/xhtml/glFogCoord.xml
glFogCoordhNV https://www.opengl.org/registry/specs/NV/half_float.txt
glFogCoordhvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glFogFuncSGIS https://www.opengl.org/registry/specs/SGIS/fog_func.txt
glFogf https://www.opengl.org/sdk/docs/man2/xhtml/glFog.xml
glFogfv https://www.opengl.org/sdk/docs/man2/xhtml/glFog.xml
glFogi https://www.opengl.org/sdk/docs/man2/xhtml/glFog.xml
glFogiv https://www.opengl.org/sdk/docs/man2/xhtml/glFog.xml
glFragmentColorMaterialEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentColorMaterialSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightModelfEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightModelfSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightModelfvEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightModelfvSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightModeliEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightModeliSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightModelivEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightModelivSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightfEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightfSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightfvEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightfvSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightiEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightiSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentLightivEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentLightivSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentMaterialfEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentMaterialfSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentMaterialfvEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentMaterialfvSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentMaterialiEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentMaterialiSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFragmentMaterialivEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glFragmentMaterialivSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glFrameTerminatorGREMEDY https://www.opengl.org/registry/specs/GREMEDY/frame_terminator.txt
glFrameZoomSGIX https://www.opengl.org/registry/specs/SGIX/framezoom.txt
glFramebufferDrawBufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glFramebufferDrawBuffersEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glFramebufferReadBufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glFramebufferRenderbuffer https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glFramebufferRenderbuffer https://www.opengl.org/sdk/docs/man/html/glFramebufferRenderbuffer.xhtml
glFramebufferRenderbufferEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glFramebufferTexture https://www.opengl.org/sdk/docs/man/html/glFramebufferTexture.xhtml
glFramebufferTexture1D https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glFramebufferTexture1D https://www.opengl.org/sdk/docs/man/html/glFramebufferTexture.xhtml
glFramebufferTexture1DEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glFramebufferTexture2D https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glFramebufferTexture2D https://www.opengl.org/sdk/docs/man/html/glFramebufferTexture.xhtml
glFramebufferTexture2DEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glFramebufferTexture3D https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glFramebufferTexture3D https://www.opengl.org/sdk/docs/man/html/glFramebufferTexture.xhtml
glFramebufferTexture3DEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glFramebufferTextureARB https://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
glFramebufferTextureEXT https://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
glFramebufferTextureEXT https://www.opengl.org/registry/specs/NV/geometry_program4.txt
glFramebufferTextureFaceARB https://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
glFramebufferTextureFaceEXT https://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
glFramebufferTextureFaceEXT https://www.opengl.org/registry/specs/NV/geometry_program4.txt
glFramebufferTextureLayer https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glFramebufferTextureLayer https://www.opengl.org/sdk/docs/man/html/glFramebufferTextureLayer.xhtml
glFramebufferTextureLayerARB https://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
glFramebufferTextureLayerEXT https://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
glFramebufferTextureLayerEXT https://www.opengl.org/registry/specs/EXT/texture_array.txt
glFramebufferTextureLayerEXT https://www.opengl.org/registry/specs/NV/geometry_program4.txt
glFreeObjectBufferATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glFrontFace https://www.opengl.org/sdk/docs/man/html/glFrontFace.xhtml
glFrontFace https://www.opengl.org/sdk/docs/man2/xhtml/glFrontFace.xml
glFrustum https://www.opengl.org/sdk/docs/man2/xhtml/glFrustum.xml
glFrustumfOES https://www.opengl.org/registry/specs/OES/OES_single_precision.txt
glFrustumxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGenArraySetsEXT https://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
glGenAsyncMarkersSGIX https://www.opengl.org/registry/specs/SGIX/async.txt
glGenBuffers https://www.opengl.org/sdk/docs/man/html/glGenBuffers.xhtml
glGenBuffers https://www.opengl.org/sdk/docs/man2/xhtml/glGenBuffers.xml
glGenBuffersARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glGenFencesAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glGenFencesNV https://www.opengl.org/registry/specs/NV/fence.txt
glGenFramebuffers https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGenFramebuffers https://www.opengl.org/sdk/docs/man/html/glGenFramebuffers.xhtml
glGenFramebuffersEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glGenLists https://www.opengl.org/sdk/docs/man2/xhtml/glGenLists.xml
glGenNamesAMD https://www.opengl.org/registry/specs/AMD/name_gen_delete.txt
glGenOcclusionQueriesNV https://www.opengl.org/registry/specs/NV/occlusion_query.txt
glGenPathsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGenPerfMonitorsAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGenProgramPipelines https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glGenProgramPipelines https://www.opengl.org/sdk/docs/man/html/glGenProgramPipelines.xhtml
glGenProgramsARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGenProgramsARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGenProgramsNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGenQueries https://www.opengl.org/sdk/docs/man/html/glGenQueries.xhtml
glGenQueries https://www.opengl.org/sdk/docs/man2/xhtml/glGenQueries.xml
glGenQueriesARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glGenRenderbuffers https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGenRenderbuffers https://www.opengl.org/sdk/docs/man/html/glGenRenderbuffers.xhtml
glGenRenderbuffersEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glGenSamplers https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glGenSamplers https://www.opengl.org/sdk/docs/man/html/glGenSamplers.xhtml
glGenTextures https://www.opengl.org/sdk/docs/man/html/glGenTextures.xhtml
glGenTextures https://www.opengl.org/sdk/docs/man2/xhtml/glGenTextures.xml
glGenTexturesEXT https://www.opengl.org/registry/specs/EXT/texture_object.txt
glGenTransformFeedbacks https://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glGenTransformFeedbacks https://www.opengl.org/sdk/docs/man/html/glGenTransformFeedbacks.xhtml
glGenTransformFeedbacksNV https://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glGenVertexArrays https://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glGenVertexArrays https://www.opengl.org/sdk/docs/man/html/glGenVertexArrays.xhtml
glGenVertexArraysAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
glGenerateMipmap https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGenerateMipmap https://www.opengl.org/sdk/docs/man/html/glGenerateMipmap.xhtml
glGenerateMipmapEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glGenerateMultiTexMipmapEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGenerateTextureMipmapEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetActiveAttrib https://www.opengl.org/sdk/docs/man/html/glGetActiveAttrib.xhtml
glGetActiveAttrib https://www.opengl.org/sdk/docs/man2/xhtml/glGetActiveAttrib.xml
glGetActiveAttribARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glGetActiveSubroutineName https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetActiveSubroutineName https://www.opengl.org/sdk/docs/man/html/glGetActiveSubroutineName.xhtml
glGetActiveSubroutineUniformName https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetActiveSubroutineUniformName https://www.opengl.org/sdk/docs/man/html/glGetActiveSubroutineUniformName.xhtml
glGetActiveSubroutineUniformiv https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetActiveSubroutineUniformiv https://www.opengl.org/sdk/docs/man/html/glGetActiveSubroutineUniform.xhtml
glGetActiveUniform https://www.opengl.org/sdk/docs/man/html/glGetActiveUniform.xhtml
glGetActiveUniform https://www.opengl.org/sdk/docs/man2/xhtml/glGetActiveUniform.xml
glGetActiveUniformARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetActiveUniformBlockName https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetActiveUniformBlockName https://www.opengl.org/sdk/docs/man/html/glGetActiveUniformBlockName.xhtml
glGetActiveUniformBlockiv https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetActiveUniformBlockiv https://www.opengl.org/sdk/docs/man/html/glGetActiveUniformBlock.xhtml
glGetActiveUniformName https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetActiveUniformName https://www.opengl.org/sdk/docs/man/html/glGetActiveUniformName.xhtml
glGetActiveUniformsiv https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetActiveUniformsiv https://www.opengl.org/sdk/docs/man/html/glGetActiveUniformsiv.xhtml
glGetActiveVaryingNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetArrayObjectfvATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetArrayObjectivATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetAttachedObjectsARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetAttachedShaders https://www.opengl.org/sdk/docs/man/html/glGetAttachedShaders.xhtml
glGetAttachedShaders https://www.opengl.org/sdk/docs/man2/xhtml/glGetAttachedShaders.xml
glGetAttribLocation https://www.opengl.org/sdk/docs/man/html/glGetAttribLocation.xhtml
glGetAttribLocation https://www.opengl.org/sdk/docs/man2/xhtml/glGetAttribLocation.xml
glGetAttribLocationARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glGetBooleanIndexedvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetBooleanIndexedvEXT https://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
glGetBooleanIndexedvEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glGetBooleanIndexedvEXT https://www.opengl.org/registry/specs/NV/explicit_multisample.txt
glGetBooleanIndexedvEXT https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetBooleani_v https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetBooleanv https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetBooleanv https://www.opengl.org/sdk/docs/man2/xhtml/glGet.xml
glGetBufferParameteriv https://www.opengl.org/sdk/docs/man/html/glGetBufferParameter.xhtml
glGetBufferParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glGetBufferParameteriv.xml
glGetBufferParameterivARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glGetBufferParameterui64vNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glGetBufferPointerv https://www.opengl.org/sdk/docs/man/html/glGetBufferPointerv.xhtml
glGetBufferPointerv https://www.opengl.org/sdk/docs/man2/xhtml/glGetBufferPointerv.xml
glGetBufferPointervARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glGetBufferSubData https://www.opengl.org/sdk/docs/man/html/glGetBufferSubData.xhtml
glGetBufferSubData https://www.opengl.org/sdk/docs/man2/xhtml/glGetBufferSubData.xml
glGetBufferSubDataARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glGetClipPlane https://www.opengl.org/sdk/docs/man2/xhtml/glGetClipPlane.xml
glGetClipPlanefOES https://www.opengl.org/registry/specs/OES/OES_single_precision.txt
glGetClipPlanexOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetColorTable https://www.opengl.org/sdk/docs/man2/xhtml/glGetColorTable.xml
glGetColorTableEXT https://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glGetColorTableParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetColorTableParameter.xml
glGetColorTableParameterfvEXT https://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glGetColorTableParameterfvSGI https://www.opengl.org/registry/specs/SGI/color_table.txt
glGetColorTableParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glGetColorTableParameter.xml
glGetColorTableParameterivEXT https://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glGetColorTableParameterivSGI https://www.opengl.org/registry/specs/SGI/color_table.txt
glGetColorTableSGI https://www.opengl.org/registry/specs/SGI/color_table.txt
glGetCombinerInputParameterfvNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glGetCombinerInputParameterivNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glGetCombinerOutputParameterfvNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glGetCombinerOutputParameterivNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glGetCombinerStageParameterfvNV https://www.opengl.org/registry/specs/NV/register_combiners2.txt
glGetCompressedMultiTexImageEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetCompressedTexImage https://www.opengl.org/sdk/docs/man/html/glGetCompressedTexImage.xhtml
glGetCompressedTexImage https://www.opengl.org/sdk/docs/man2/xhtml/glGetCompressedTexImage.xml
glGetCompressedTexImageARB https://www.opengl.org/registry/specs/ARB/texture_compression.txt
glGetCompressedTextureImageEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetConvolutionFilter https://www.opengl.org/sdk/docs/man2/xhtml/glGetConvolutionFilter.xml
glGetConvolutionFilterEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glGetConvolutionParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetConvolutionParameter.xml
glGetConvolutionParameterfvEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glGetConvolutionParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glGetConvolutionParameter.xml
glGetConvolutionParameterivEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glGetConvolutionParameterxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetDebugMessageLogAMD https://www.opengl.org/registry/specs/AMD/debug_output.txt
glGetDebugMessageLogARB https://www.opengl.org/registry/specs/ARB/debug_output.txt
glGetDetailTexFuncSGIS https://www.opengl.org/registry/specs/SGIS/detail_texture.txt
glGetDoubleIndexedvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetDoublei_v https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glGetDoublei_vEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetDoublev https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetDoublev https://www.opengl.org/sdk/docs/man2/xhtml/glGet.xml
glGetError https://www.opengl.org/sdk/docs/man/html/glGetError.xhtml
glGetError https://www.opengl.org/sdk/docs/man2/xhtml/glGetError.xml
glGetFenceivNV https://www.opengl.org/registry/specs/NV/fence.txt
glGetFinalCombinerInputParameterfvNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glGetFinalCombinerInputParameterivNV https://www.opengl.org/registry/specs/NV/register_combiners.txt
glGetFixedvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetFloatIndexedvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetFloati_v https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glGetFloati_vEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetFloatv https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetFloatv https://www.opengl.org/sdk/docs/man2/xhtml/glGet.xml
glGetFogFuncSGIS https://www.opengl.org/registry/specs/SGIS/fog_func.txt
glGetFragDataIndex https://www.opengl.org/registry/specs/ARB/blend_func_extended.txt
glGetFragDataIndex https://www.opengl.org/sdk/docs/man/html/glGetFragDataIndex.xhtml
glGetFragDataLocation https://www.opengl.org/sdk/docs/man/html/glGetFragDataLocation.xhtml
glGetFragDataLocationEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glGetFragmentLightfvEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glGetFragmentLightfvSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glGetFragmentLightivEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glGetFragmentLightivSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glGetFragmentMaterialfvEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glGetFragmentMaterialfvSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glGetFragmentMaterialivEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glGetFragmentMaterialivSGIX https://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glGetFramebufferAttachmentParameter https://www.opengl.org/sdk/docs/man/html/glGetFramebufferAttachmentParameter.xhtml
glGetFramebufferAttachmentParameteriv https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGetFramebufferAttachmentParameterivEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glGetFramebufferParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetGraphicsResetStatusARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetHandleARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetHistogram https://www.opengl.org/sdk/docs/man2/xhtml/glGetHistogram.xml
glGetHistogramEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glGetHistogramParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetHistogramParameter.xml
glGetHistogramParameterfvEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glGetHistogramParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glGetHistogramParameter.xml
glGetHistogramParameterivEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glGetHistogramParameterxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetImageTransformParameterfvHP https://www.opengl.org/registry/specs/HP/image_transform.txt
glGetImageTransformParameterivHP https://www.opengl.org/registry/specs/HP/image_transform.txt
glGetInfoLogARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetInstrumentsSGIX https://www.opengl.org/registry/specs/SGIX/instruments.txt
glGetInteger64i_v https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetInteger64v https://www.opengl.org/registry/specs/ARB/sync.txt
glGetInteger64v https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetIntegerIndexedivEXT https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glGetIntegerIndexedvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetIntegerIndexedvEXT https://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
glGetIntegerIndexedvEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glGetIntegerIndexedvEXT https://www.opengl.org/registry/specs/NV/explicit_multisample.txt
glGetIntegerIndexedvEXT https://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glGetIntegerIndexedvEXT https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetIntegeri_v https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetIntegeri_v https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetIntegerui64i_vNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glGetIntegerui64vNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glGetIntegerv https://www.opengl.org/registry/specs/SGIX/instruments.txt
glGetIntegerv https://www.opengl.org/sdk/docs/man/html/glGet.xhtml
glGetIntegerv https://www.opengl.org/sdk/docs/man2/xhtml/glGet.xml
glGetInternalformativ https://www.opengl.org/registry/specs/ARB/internalformat_query.txt
glGetLightfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetLight.xml
glGetLightiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetLight.xml
glGetLightxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetListParameterfvSGIX https://www.opengl.org/registry/specs/SGIX/list_priority.txt
glGetListParameterivSGIX https://www.opengl.org/registry/specs/SGIX/list_priority.txt
glGetMapAttribParameterfvNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glGetMapAttribParameterivNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glGetMapControlPointsNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glGetMapParameterfvNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glGetMapParameterivNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glGetMapdv https://www.opengl.org/sdk/docs/man2/xhtml/glGetMap.xml
glGetMapfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetMap.xml
glGetMapiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetMap.xml
glGetMapxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetMaterialfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetMaterial.xml
glGetMaterialiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetMaterial.xml
glGetMaterialxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetMinmax https://www.opengl.org/sdk/docs/man2/xhtml/glGetMinmax.xml
glGetMinmaxEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glGetMinmaxParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetMinmaxParameter.xml
glGetMinmaxParameterfvEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glGetMinmaxParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glGetMinmaxParameter.xml
glGetMinmaxParameterivEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glGetMultiTexEnvfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexEnvivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexGendvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexGenfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexGenivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexImageEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexLevelParameterfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexLevelParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexParameterIivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexParameterIuivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexParameterfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultiTexParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultisamplefv https://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glGetMultisamplefv https://www.opengl.org/sdk/docs/man/html/glGetMultisample.xhtml
glGetMultisamplefvNV https://www.opengl.org/registry/specs/NV/explicit_multisample.txt
glGetNamedBufferParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedBufferParameterui64vNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glGetNamedBufferPointervEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedBufferSubDataEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedFramebufferAttachmentParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedProgramLocalParameterIivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedProgramLocalParameterIuivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedProgramLocalParameterdvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedProgramLocalParameterfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedProgramStringEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedProgramivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedRenderbufferParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedStringARB https://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glGetNamedStringivARB https://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glGetObjectBufferfvATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetObjectBufferivATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetObjectParameterfvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetObjectParameterivAPPLE https://www.opengl.org/registry/specs/APPLE/object_purgeable.txt
glGetObjectParameterivARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetOcclusionQueryivNV https://www.opengl.org/registry/specs/NV/occlusion_query.txt
glGetOcclusionQueryuivNV https://www.opengl.org/registry/specs/NV/occlusion_query.txt
glGetPathColorGenfvNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathColorGenivNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathCommandsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathCoordsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathDashArrayNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathLengthNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathMetricRangeNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathMetricsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathParameterfvNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathParameterivNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathSpacingNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathTexGenfvNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPathTexGenivNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glGetPerfMonitorCounterDataAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGetPerfMonitorCounterInfoAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGetPerfMonitorCounterStringAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGetPerfMonitorCountersAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGetPerfMonitorGroupStringAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGetPerfMonitorGroupsAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGetPixelMapfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetPixelMap.xml
glGetPixelMapuiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetPixelMap.xml
glGetPixelMapusv https://www.opengl.org/sdk/docs/man2/xhtml/glGetPixelMap.xml
glGetPixelTransformParameterfvEXT https://www.opengl.org/registry/specs/EXT/pixel_transform.txt
glGetPixelTransformParameterivEXT https://www.opengl.org/registry/specs/EXT/pixel_transform.txt
glGetPointerIndexedvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetPointeri_vEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetPointerv https://www.opengl.org/registry/specs/ARB/debug_output.txt
glGetPointerv https://www.opengl.org/sdk/docs/man2/xhtml/glGetPointerv.xml
glGetPointervEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glGetPointervEXT https://www.opengl.org/registry/specs/SGIX/instruments.txt
glGetPolygonStipple https://www.opengl.org/sdk/docs/man2/xhtml/glGetPolygonStipple.xml
glGetProgramBinary https://www.opengl.org/registry/specs/ARB/get_program_binary.txt
glGetProgramBinary https://www.opengl.org/sdk/docs/man/html/glGetProgramBinary.xhtml
glGetProgramEnvParameterIivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glGetProgramEnvParameterIuivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glGetProgramEnvParameterdvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramEnvParameterdvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetProgramEnvParameterfvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramEnvParameterfvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetProgramInfoLog https://www.opengl.org/sdk/docs/man/html/glGetProgramInfoLog.xhtml
glGetProgramInfoLog https://www.opengl.org/sdk/docs/man2/xhtml/glGetProgramInfoLog.xml
glGetProgramLocalParameterIivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glGetProgramLocalParameterIuivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glGetProgramLocalParameterdvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramLocalParameterdvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetProgramLocalParameterdvARB https://www.opengl.org/registry/specs/NV/fragment_program.txt
glGetProgramLocalParameterfvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramLocalParameterfvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetProgramLocalParameterfvARB https://www.opengl.org/registry/specs/NV/fragment_program.txt
glGetProgramNamedParameterdvNV https://www.opengl.org/registry/specs/NV/fragment_program.txt
glGetProgramNamedParameterfvNV https://www.opengl.org/registry/specs/NV/fragment_program.txt
glGetProgramParameterdvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetProgramParameterfvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetProgramPipelineInfoLog https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glGetProgramPipelineInfoLog https://www.opengl.org/sdk/docs/man/html/glGetProgramPipelineInfoLog.xhtml
glGetProgramPipelineiv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glGetProgramPipelineiv https://www.opengl.org/sdk/docs/man/html/glGetProgramPipeline.xhtml
glGetProgramStageiv https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetProgramStageiv https://www.opengl.org/sdk/docs/man/html/glGetProgramStage.xhtml
glGetProgramStringARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramStringARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetProgramStringNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetProgramiv https://www.opengl.org/sdk/docs/man/html/glGetProgram.xhtml
glGetProgramiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetProgram.xml
glGetProgramivARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramivARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetProgramivNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetQueryIndexediv https://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glGetQueryIndexediv https://www.opengl.org/sdk/docs/man/html/glGetQueryIndexed.xhtml
glGetQueryObjecti64v https://www.opengl.org/registry/specs/ARB/timer_query.txt
glGetQueryObjecti64v https://www.opengl.org/sdk/docs/man/html/glGetQueryObject.xhtml
glGetQueryObjecti64vEXT https://www.opengl.org/registry/specs/EXT/timer_query.txt
glGetQueryObjectiv https://www.opengl.org/sdk/docs/man/html/glGetQueryObject.xhtml
glGetQueryObjectiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetQueryObject.xml
glGetQueryObjectivARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glGetQueryObjectui64v https://www.opengl.org/registry/specs/ARB/timer_query.txt
glGetQueryObjectui64v https://www.opengl.org/sdk/docs/man/html/glGetQueryObject.xhtml
glGetQueryObjectui64vEXT https://www.opengl.org/registry/specs/EXT/timer_query.txt
glGetQueryObjectuiv https://www.opengl.org/sdk/docs/man/html/glGetQueryObject.xhtml
glGetQueryObjectuiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetQueryObject.xml
glGetQueryObjectuivARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glGetQueryiv https://www.opengl.org/sdk/docs/man/html/glGetQueryiv.xhtml
glGetQueryiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetQueryiv.xml
glGetQueryivARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glGetRenderbufferParameteriv https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGetRenderbufferParameteriv https://www.opengl.org/sdk/docs/man/html/glGetRenderbufferParameter.xhtml
glGetRenderbufferParameterivEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glGetSamplerParameterIiv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glGetSamplerParameterIuiv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glGetSamplerParameterfv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glGetSamplerParameterfv https://www.opengl.org/sdk/docs/man/html/glGetSamplerParameter.xhtml
glGetSamplerParameteriv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glGetSamplerParameteriv https://www.opengl.org/sdk/docs/man/html/glGetSamplerParameter.xhtml
glGetSeparableFilter https://www.opengl.org/sdk/docs/man2/xhtml/glGetSeparableFilter.xml
glGetSeparableFilterEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glGetShaderInfoLog https://www.opengl.org/sdk/docs/man/html/glGetShaderInfoLog.xhtml
glGetShaderInfoLog https://www.opengl.org/sdk/docs/man2/xhtml/glGetShaderInfoLog.xml
glGetShaderPrecisionFormat https://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glGetShaderPrecisionFormat https://www.opengl.org/sdk/docs/man/html/glGetShaderPrecisionFormat.xhtml
glGetShaderSource https://www.opengl.org/sdk/docs/man/html/glGetShaderSource.xhtml
glGetShaderSource https://www.opengl.org/sdk/docs/man2/xhtml/glGetShaderSource.xml
glGetShaderSourceARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetShaderiv https://www.opengl.org/sdk/docs/man/html/glGetShader.xhtml
glGetShaderiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetShader.xml
glGetSharpenTexFuncSGIS https://www.opengl.org/registry/specs/SGIS/sharpen_texture.txt
glGetString https://www.opengl.org/sdk/docs/man/html/glGetString.xhtml
glGetString https://www.opengl.org/sdk/docs/man2/xhtml/glGetString.xml
glGetStringi https://www.opengl.org/sdk/docs/man/html/glGetString.xhtml
glGetSubroutineIndex https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetSubroutineIndex https://www.opengl.org/sdk/docs/man/html/glGetSubroutineIndex.xhtml
glGetSubroutineUniformLocation https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetSubroutineUniformLocation https://www.opengl.org/sdk/docs/man/html/glGetSubroutineUniformLocation.xhtml
glGetSynciv https://www.opengl.org/registry/specs/ARB/sync.txt
glGetSynciv https://www.opengl.org/sdk/docs/man/html/glGetSync.xhtml
glGetTexEnvfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexEnv.xml
glGetTexEnviv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexEnv.xml
glGetTexEnvxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetTexFilterFuncSGIS https://www.opengl.org/registry/specs/SGIS/texture_filter4.txt
glGetTexGendv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexGen.xml
glGetTexGenfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexGen.xml
glGetTexGeniv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexGen.xml
glGetTexGenxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetTexImage https://www.opengl.org/sdk/docs/man/html/glGetTexImage.xhtml
glGetTexImage https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexImage.xml
glGetTexLevelParameterfv https://www.opengl.org/sdk/docs/man/html/glGetTexLevelParameter.xhtml
glGetTexLevelParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexLevelParameter.xml
glGetTexLevelParameteriv https://www.opengl.org/sdk/docs/man/html/glGetTexLevelParameter.xhtml
glGetTexLevelParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexLevelParameter.xml
glGetTexLevelParameterxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetTexParameterPointervAPPLE https://www.opengl.org/registry/specs/APPLE/texture_range.txt
glGetTexParameterfv https://www.opengl.org/sdk/docs/man/html/glGetTexParameter.xhtml
glGetTexParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexParameter.xml
glGetTexParameteriv https://www.opengl.org/sdk/docs/man/html/glGetTexParameter.xhtml
glGetTexParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glGetTexParameter.xml
glGetTexParameterxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetTextureImageEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetTextureLevelParameterfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetTextureLevelParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetTextureParameterIivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetTextureParameterIuivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetTextureParameterfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetTextureParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetTrackMatrixivNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetTransformFeedbackVarying https://www.opengl.org/sdk/docs/man/html/glGetTransformFeedbackVarying.xhtml
glGetTransformFeedbackVaryingEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glGetTransformFeedbackVaryingNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetUniformBlockIndex https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetUniformBlockIndex https://www.opengl.org/sdk/docs/man/html/glGetUniformBlockIndex.xhtml
glGetUniformBufferSizeEXT https://www.opengl.org/registry/specs/EXT/bindable_uniform.txt
glGetUniformIndices https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetUniformIndices https://www.opengl.org/sdk/docs/man/html/glGetUniformIndices.xhtml
glGetUniformLocation https://www.opengl.org/sdk/docs/man/html/glGetUniformLocation.xhtml
glGetUniformLocation https://www.opengl.org/sdk/docs/man2/xhtml/glGetUniformLocation.xml
glGetUniformLocationARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetUniformOffsetEXT https://www.opengl.org/registry/specs/EXT/bindable_uniform.txt
glGetUniformSubroutineuiv https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetUniformSubroutineuiv https://www.opengl.org/sdk/docs/man/html/glGetUniformSubroutine.xhtml
glGetUniformdv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glGetUniformfv https://www.opengl.org/sdk/docs/man/html/glGetUniform.xhtml
glGetUniformfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetUniform.xml
glGetUniformfvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetUniformi64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glGetUniformiv https://www.opengl.org/sdk/docs/man/html/glGetUniform.xhtml
glGetUniformiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetUniform.xml
glGetUniformivARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetUniformui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glGetUniformui64vNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glGetUniformuivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glGetVariantArrayObjectfvATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetVariantArrayObjectivATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetVaryingLocationNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetVertexArrayIntegeri_vEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetVertexArrayIntegervEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetVertexArrayPointeri_vEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetVertexArrayPointervEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetVertexAttribArrayObjectfvATI https://www.opengl.org/registry/specs/ATI/vertex_attrib_array_object.txt
glGetVertexAttribArrayObjectivATI https://www.opengl.org/registry/specs/ATI/vertex_attrib_array_object.txt
glGetVertexAttribIiv https://www.opengl.org/sdk/docs/man/html/glGetVertexAttrib.xhtml
glGetVertexAttribIivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glGetVertexAttribIivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glGetVertexAttribIuiv https://www.opengl.org/sdk/docs/man/html/glGetVertexAttrib.xhtml
glGetVertexAttribIuivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glGetVertexAttribIuivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glGetVertexAttribLdv https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glGetVertexAttribLdv https://www.opengl.org/sdk/docs/man/html/glGetVertexAttrib.xhtml
glGetVertexAttribLdvEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glGetVertexAttribLi64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glGetVertexAttribLui64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glGetVertexAttribPointerv https://www.opengl.org/sdk/docs/man/html/glGetVertexAttribPointerv.xhtml
glGetVertexAttribPointerv https://www.opengl.org/sdk/docs/man2/xhtml/glGetVertexAttribPointerv.xml
glGetVertexAttribPointervARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribPointervARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glGetVertexAttribPointervNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetVertexAttribdv https://www.opengl.org/sdk/docs/man/html/glGetVertexAttrib.xhtml
glGetVertexAttribdv https://www.opengl.org/sdk/docs/man2/xhtml/glGetVertexAttrib.xml
glGetVertexAttribdvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribdvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glGetVertexAttribdvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetVertexAttribfv https://www.opengl.org/sdk/docs/man/html/glGetVertexAttrib.xhtml
glGetVertexAttribfv https://www.opengl.org/sdk/docs/man2/xhtml/glGetVertexAttrib.xml
glGetVertexAttribfvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribfvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glGetVertexAttribfvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetVertexAttribiv https://www.opengl.org/sdk/docs/man/html/glGetVertexAttrib.xhtml
glGetVertexAttribiv https://www.opengl.org/sdk/docs/man2/xhtml/glGetVertexAttrib.xml
glGetVertexAttribivARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribivARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glGetVertexAttribivNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetVideoCaptureivNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glGetVideoi64vNV https://www.opengl.org/registry/specs/NV/present_video.txt
glGetVideoivNV https://www.opengl.org/registry/specs/NV/present_video.txt
glGetVideoui64vNV https://www.opengl.org/registry/specs/NV/present_video.txt
glGetVideouivNV https://www.opengl.org/registry/specs/NV/present_video.txt
glGetnColorTableARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnCompressedTexImageARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnConvolutionFilterARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnHistogramARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnMapdvARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnMapfvARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnMapivARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnMinmaxARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnPixelMapfvARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnPixelMapuivARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnPixelMapusvARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnPolygonStippleARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnSeparableFilterARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnTexImageARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnUniformdvARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnUniformfvARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnUniformivARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnUniformuivARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glGlobalAlphaFactorbSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glGlobalAlphaFactordSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glGlobalAlphaFactorfSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glGlobalAlphaFactoriSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glGlobalAlphaFactorsSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glGlobalAlphaFactorubSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glGlobalAlphaFactoruiSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glGlobalAlphaFactorusSUN https://www.opengl.org/registry/specs/SUN/global_alpha.txt
glHint https://www.opengl.org/sdk/docs/man/html/glHint.xhtml
glHint https://www.opengl.org/sdk/docs/man2/xhtml/glHint.xml
glHistogram https://www.opengl.org/sdk/docs/man2/xhtml/glHistogram.xml
glHistogramEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glImageTransformParameterfHP https://www.opengl.org/registry/specs/HP/image_transform.txt
glImageTransformParameterfvHP https://www.opengl.org/registry/specs/HP/image_transform.txt
glImageTransformParameteriHP https://www.opengl.org/registry/specs/HP/image_transform.txt
glImageTransformParameterivHP https://www.opengl.org/registry/specs/HP/image_transform.txt
glImportSyncEXT https://www.opengl.org/registry/specs/EXT/x11_sync_object.txt
glIndexFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glIndexMask https://www.opengl.org/sdk/docs/man2/xhtml/glIndexMask.xml
glIndexPointer https://www.opengl.org/sdk/docs/man2/xhtml/glIndexPointer.xml
glIndexPointerEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glIndexd https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexdv https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexf https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexfv https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexi https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexiv https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexs https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexsv https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexub https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glIndexubv https://www.opengl.org/sdk/docs/man2/xhtml/glIndex.xml
glInitNames https://www.opengl.org/sdk/docs/man2/xhtml/glInitNames.xml
glInstrumentsBufferSGIX https://www.opengl.org/registry/specs/SGIX/instruments.txt
glInterleavedArrays https://www.opengl.org/sdk/docs/man2/xhtml/glInterleavedArrays.xml
glInterpolatePathsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glIsArraySetEXT https://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
glIsAsyncMarkerSGIX https://www.opengl.org/registry/specs/SGIX/async.txt
glIsBuffer https://www.opengl.org/sdk/docs/man/html/glIsBuffer.xhtml
glIsBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glIsBuffer.xml
glIsBufferARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glIsBufferResidentNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glIsEnabled https://www.opengl.org/sdk/docs/man/html/glIsEnabled.xhtml
glIsEnabled https://www.opengl.org/sdk/docs/man2/xhtml/glIsEnabled.xml
glIsEnabledIndexedEXT https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glIsEnabledIndexedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glIsEnabledIndexedEXT https://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
glIsFenceAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glIsFenceNV https://www.opengl.org/registry/specs/NV/fence.txt
glIsFramebuffer https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glIsFramebuffer https://www.opengl.org/sdk/docs/man/html/glIsFramebuffer.xhtml
glIsFramebufferEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glIsList https://www.opengl.org/sdk/docs/man2/xhtml/glIsList.xml
glIsNameAMD https://www.opengl.org/registry/specs/AMD/name_gen_delete.txt
glIsNamedBufferResidentNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glIsNamedStringARB https://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glIsObjectBufferATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glIsOcclusionQueryNV https://www.opengl.org/registry/specs/NV/occlusion_query.txt
glIsPathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glIsPointInFillPathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glIsPointInStrokePathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glIsProgram https://www.opengl.org/sdk/docs/man/html/glIsProgram.xhtml
glIsProgram https://www.opengl.org/sdk/docs/man2/xhtml/glIsProgram.xml
glIsProgramARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glIsProgramARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glIsProgramNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glIsProgramPipeline https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glIsProgramPipeline https://www.opengl.org/sdk/docs/man/html/glIsProgramPipeline.xhtml
glIsQuery https://www.opengl.org/sdk/docs/man/html/glIsQuery.xhtml
glIsQuery https://www.opengl.org/sdk/docs/man2/xhtml/glIsQuery.xml
glIsQueryARB https://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glIsRenderbuffer https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glIsRenderbuffer https://www.opengl.org/sdk/docs/man/html/glIsRenderbuffer.xhtml
glIsRenderbufferEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glIsSampler https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glIsSampler https://www.opengl.org/sdk/docs/man/html/glIsSampler.xhtml
glIsShader https://www.opengl.org/sdk/docs/man/html/glIsShader.xhtml
glIsShader https://www.opengl.org/sdk/docs/man2/xhtml/glIsShader.xml
glIsSync https://www.opengl.org/registry/specs/ARB/sync.txt
glIsSync https://www.opengl.org/sdk/docs/man/html/glIsSync.xhtml
glIsTexture https://www.opengl.org/sdk/docs/man/html/glIsTexture.xhtml
glIsTexture https://www.opengl.org/sdk/docs/man2/xhtml/glIsTexture.xml
glIsTextureEXT https://www.opengl.org/registry/specs/EXT/texture_object.txt
glIsTransformFeedback https://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glIsTransformFeedback https://www.opengl.org/sdk/docs/man/html/glIsTransformFeedback.xhtml
glIsTransformFeedbackNV https://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glIsVertexArray https://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glIsVertexArray https://www.opengl.org/sdk/docs/man/html/glIsVertexArray.xhtml
glIsVertexArrayAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
glIsVertexAttribEnabledAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glJoinSwapGroupSGIX https://www.opengl.org/registry/specs/SGIX/swap_group.txt
glLightEnviEXT https://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glLightModelf https://www.opengl.org/sdk/docs/man2/xhtml/glLightModel.xml
glLightModelfv https://www.opengl.org/sdk/docs/man2/xhtml/glLightModel.xml
glLightModeli https://www.opengl.org/sdk/docs/man2/xhtml/glLightModel.xml
glLightModeliv https://www.opengl.org/sdk/docs/man2/xhtml/glLightModel.xml
glLightf https://www.opengl.org/sdk/docs/man2/xhtml/glLight.xml
glLightfv https://www.opengl.org/sdk/docs/man2/xhtml/glLight.xml
glLighti https://www.opengl.org/sdk/docs/man2/xhtml/glLight.xml
glLightiv https://www.opengl.org/sdk/docs/man2/xhtml/glLight.xml
glLineStipple https://www.opengl.org/sdk/docs/man2/xhtml/glLineStipple.xml
glLineWidth https://www.opengl.org/sdk/docs/man/html/glLineWidth.xhtml
glLineWidth https://www.opengl.org/sdk/docs/man2/xhtml/glLineWidth.xml
glLineWidthxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glLinkProgram https://www.opengl.org/sdk/docs/man/html/glLinkProgram.xhtml
glLinkProgram https://www.opengl.org/sdk/docs/man2/xhtml/glLinkProgram.xml
glLinkProgramARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glListBase https://www.opengl.org/sdk/docs/man2/xhtml/glListBase.xml
glListParameterfSGIX https://www.opengl.org/registry/specs/SGIX/list_priority.txt
glListParameterfvSGIX https://www.opengl.org/registry/specs/SGIX/list_priority.txt
glListParameteriSGIX https://www.opengl.org/registry/specs/SGIX/list_priority.txt
glListParameterivSGIX https://www.opengl.org/registry/specs/SGIX/list_priority.txt
glLoadIdentity https://www.opengl.org/sdk/docs/man2/xhtml/glLoadIdentity.xml
glLoadMatrixd https://www.opengl.org/sdk/docs/man2/xhtml/glLoadMatrix.xml
glLoadMatrixf https://www.opengl.org/sdk/docs/man2/xhtml/glLoadMatrix.xml
glLoadMatrixxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glLoadName https://www.opengl.org/sdk/docs/man2/xhtml/glLoadName.xml
glLoadProgramNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glLoadTransposeMatrixd https://www.opengl.org/sdk/docs/man2/xhtml/glLoadTransposeMatrix.xml
glLoadTransposeMatrixf https://www.opengl.org/sdk/docs/man2/xhtml/glLoadTransposeMatrix.xml
glLoadTransposeMatrixxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glLogicOp https://www.opengl.org/sdk/docs/man/html/glLogicOp.xhtml
glLogicOp https://www.opengl.org/sdk/docs/man2/xhtml/glLogicOp.xml
glMakeBufferNonResidentNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glMakeBufferResidentNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glMakeNamedBufferNonResidentNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glMakeNamedBufferResidentNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glMap1d https://www.opengl.org/sdk/docs/man2/xhtml/glMap1.xml
glMap1f https://www.opengl.org/sdk/docs/man2/xhtml/glMap1.xml
glMap1xOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMap2d https://www.opengl.org/sdk/docs/man2/xhtml/glMap2.xml
glMap2f https://www.opengl.org/sdk/docs/man2/xhtml/glMap2.xml
glMap2xOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMapBuffer https://www.opengl.org/sdk/docs/man/html/glMapBuffer.xhtml
glMapBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glMapBuffer.xml
glMapBufferRange https://www.opengl.org/sdk/docs/man/html/glMapBufferRange.xhtml
glMapControlPointsNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glMapGrid1d https://www.opengl.org/sdk/docs/man2/xhtml/glMapGrid.xml
glMapGrid1f https://www.opengl.org/sdk/docs/man2/xhtml/glMapGrid.xml
glMapGrid1xOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMapGrid2d https://www.opengl.org/sdk/docs/man2/xhtml/glMapGrid.xml
glMapGrid2f https://www.opengl.org/sdk/docs/man2/xhtml/glMapGrid.xml
glMapGrid2xOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMapNamedBufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMapParameterfvNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glMapParameterivNV https://www.opengl.org/registry/specs/NV/evaluators.txt
glMapVertexAttrib1dAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glMapVertexAttrib1fAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glMapVertexAttrib2dAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glMapVertexAttrib2fAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glMaterialf https://www.opengl.org/sdk/docs/man2/xhtml/glMaterial.xml
glMaterialfv https://www.opengl.org/sdk/docs/man2/xhtml/glMaterial.xml
glMateriali https://www.opengl.org/sdk/docs/man2/xhtml/glMaterial.xml
glMaterialiv https://www.opengl.org/sdk/docs/man2/xhtml/glMaterial.xml
glMatrixFrustumEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixIndexPointerARB https://www.opengl.org/registry/specs/ARB/matrix_palette.txt
glMatrixLoadIdentityEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixLoadTransposedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixLoadTransposefEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixLoaddEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixLoadfEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixMode https://www.opengl.org/sdk/docs/man2/xhtml/glMatrixMode.xml
glMatrixMultTransposedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixMultTransposefEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixMultdEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixMultfEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixOrthoEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixPopEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixPushEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixRotatedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixRotatefEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixScaledEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixScalefEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixTranslatedEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixTranslatefEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMemoryBarrier https://www.opengl.org/registry/specs/ARB/shader_image_load_store.txt
glMemoryBarrierEXT https://www.opengl.org/registry/specs/EXT/shader_image_load_store.txt
glMinSampleShading https://www.opengl.org/sdk/docs/man/html/glMinSampleShading.xhtml
glMinSampleShadingARB https://www.opengl.org/registry/specs/ARB/sample_shading.txt
glMinmax https://www.opengl.org/sdk/docs/man2/xhtml/glMinmax.xml
glMinmaxEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glMultMatrixd https://www.opengl.org/sdk/docs/man2/xhtml/glMultMatrix.xml
glMultMatrixf https://www.opengl.org/sdk/docs/man2/xhtml/glMultMatrix.xml
glMultMatrixxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMultTransposeMatrixd https://www.opengl.org/sdk/docs/man2/xhtml/glMultTransposeMatrix.xml
glMultTransposeMatrixf https://www.opengl.org/sdk/docs/man2/xhtml/glMultTransposeMatrix.xml
glMultTransposeMatrixxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMultiDrawArrays https://www.opengl.org/sdk/docs/man/html/glMultiDrawArrays.xhtml
glMultiDrawArrays https://www.opengl.org/sdk/docs/man2/xhtml/glMultiDrawArrays.xml
glMultiDrawArraysEXT https://www.opengl.org/registry/specs/EXT/multi_draw_arrays.txt
glMultiDrawArraysIndirectAMD https://www.opengl.org/registry/specs/AMD/multi_draw_indirect.txt
glMultiDrawElementArrayAPPLE https://www.opengl.org/registry/specs/APPLE/element_array.txt
glMultiDrawElements https://www.opengl.org/sdk/docs/man/html/glMultiDrawElements.xhtml
glMultiDrawElements https://www.opengl.org/sdk/docs/man2/xhtml/glMultiDrawElements.xml
glMultiDrawElementsBaseVertex https://www.opengl.org/registry/specs/ARB/draw_elements_base_vertex.txt
glMultiDrawElementsBaseVertex https://www.opengl.org/sdk/docs/man/html/glMultiDrawElementsBaseVertex.xhtml
glMultiDrawElementsEXT https://www.opengl.org/registry/specs/EXT/multi_draw_arrays.txt
glMultiDrawElementsIndirectAMD https://www.opengl.org/registry/specs/AMD/multi_draw_indirect.txt
glMultiDrawRangeElementArrayAPPLE https://www.opengl.org/registry/specs/APPLE/element_array.txt
glMultiModeDrawArraysIBM https://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt
glMultiModeDrawElementsIBM https://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt
glMultiTexBufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexCoord1d https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord1dv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord1f https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord1fv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord1hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord1hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord1i https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord1iv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord1s https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord1sv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2d https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2dv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2f https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2fv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord2hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord2i https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2iv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2s https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord2sv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3d https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3dv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3f https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3fv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord3i https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3iv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3s https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord3sv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4d https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4dv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4f https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4fv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord4hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord4i https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4iv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4s https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoord4sv https://www.opengl.org/sdk/docs/man2/xhtml/glMultiTexCoord.xml
glMultiTexCoordP1ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP1uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP2ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP2uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP3ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP3uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP4ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP4uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordPointerEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexEnvfEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexEnvfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexEnviEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexEnvivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexGendEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexGendvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexGenfEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexGenfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexGeniEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexGenivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexParameterIivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexParameterIuivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexParameterfEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexParameterfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexParameteriEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexRenderbufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexSubImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexSubImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexSubImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedBufferDataEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedBufferSubDataEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedCopyBufferSubDataEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedFramebufferRenderbufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedFramebufferTexture1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedFramebufferTexture2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedFramebufferTexture3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedFramebufferTextureEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedFramebufferTextureFaceEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedFramebufferTextureLayerEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameter4dEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameter4dvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameter4fEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameter4fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameterI4iEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameterI4ivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameterI4uiEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameterI4uivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParameters4fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParametersI4ivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramLocalParametersI4uivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedProgramStringEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedRenderbufferStorageEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedRenderbufferStorageMultisampleCoverageEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedRenderbufferStorageMultisampleEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedStringARB https://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glNewList https://www.opengl.org/sdk/docs/man2/xhtml/glNewList.xml
glNewObjectBufferATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glNormal3b https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3bv https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3d https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3dv https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3f https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3fVertex3fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glNormal3fVertex3fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glNormal3fv https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glNormal3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glNormal3i https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3iv https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3s https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormal3sv https://www.opengl.org/sdk/docs/man2/xhtml/glNormal.xml
glNormalFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glNormalP3ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glNormalP3uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glNormalPointer https://www.opengl.org/sdk/docs/man2/xhtml/glNormalPointer.xml
glNormalPointerEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glNormalPointervINTEL https://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
glObjectPurgeableAPPLE https://www.opengl.org/registry/specs/APPLE/object_purgeable.txt
glObjectUnpurgeableAPPLE https://www.opengl.org/registry/specs/APPLE/object_purgeable.txt
glOrtho https://www.opengl.org/sdk/docs/man2/xhtml/glOrtho.xml
glOrthofOES https://www.opengl.org/registry/specs/OES/OES_single_precision.txt
glOrthoxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPassThrough https://www.opengl.org/sdk/docs/man2/xhtml/glPassThrough.xml
glPassThroughxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPatchParameterfv https://www.opengl.org/registry/specs/ARB/tessellation_shader.txt
glPatchParameterfv https://www.opengl.org/sdk/docs/man/html/glPatchParameter.xhtml
glPatchParameteri https://www.opengl.org/registry/specs/ARB/tessellation_shader.txt
glPatchParameteri https://www.opengl.org/sdk/docs/man/html/glPatchParameter.xhtml
glPathColorGenNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathCommandsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathCoordsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathCoverDepthFuncNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathDashArrayNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathFogGenNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathGlyphRangeNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathGlyphsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathParameterfNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathParameterfvNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathParameteriNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathParameterivNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathStencilDepthOffsetNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathStencilFuncNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathStringNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathSubCommandsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathSubCoordsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPathTexGenNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPauseTransformFeedback https://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glPauseTransformFeedback https://www.opengl.org/sdk/docs/man/html/glPauseTransformFeedback.xhtml
glPauseTransformFeedbackNV https://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glPixelDataRangeNV https://www.opengl.org/registry/specs/NV/pixel_data_range.txt
glPixelMapfv https://www.opengl.org/sdk/docs/man2/xhtml/glPixelMap.xml
glPixelMapuiv https://www.opengl.org/sdk/docs/man2/xhtml/glPixelMap.xml
glPixelMapusv https://www.opengl.org/sdk/docs/man2/xhtml/glPixelMap.xml
glPixelStoref https://www.opengl.org/sdk/docs/man/html/glPixelStore.xhtml
glPixelStoref https://www.opengl.org/sdk/docs/man2/xhtml/glPixelStore.xml
glPixelStorei https://www.opengl.org/sdk/docs/man/html/glPixelStore.xhtml
glPixelStorei https://www.opengl.org/sdk/docs/man2/xhtml/glPixelStore.xml
glPixelTexGenSGIX https://www.opengl.org/registry/specs/SGIX/sgix_pixel_texture.txt
glPixelTransferf https://www.opengl.org/sdk/docs/man2/xhtml/glPixelTransfer.xml
glPixelTransferi https://www.opengl.org/sdk/docs/man2/xhtml/glPixelTransfer.xml
glPixelTransferxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPixelTransformParameterfEXT https://www.opengl.org/registry/specs/EXT/pixel_transform.txt
glPixelTransformParameterfvEXT https://www.opengl.org/registry/specs/EXT/pixel_transform.txt
glPixelTransformParameteriEXT https://www.opengl.org/registry/specs/EXT/pixel_transform.txt
glPixelTransformParameterivEXT https://www.opengl.org/registry/specs/EXT/pixel_transform.txt
glPixelZoom https://www.opengl.org/sdk/docs/man2/xhtml/glPixelZoom.xml
glPixelZoomxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPointAlongPathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glPointParameterf https://www.opengl.org/sdk/docs/man/html/glPointParameter.xhtml
glPointParameterf https://www.opengl.org/sdk/docs/man2/xhtml/glPointParameter.xml
glPointParameterfARB https://www.opengl.org/registry/specs/ARB/point_parameters.txt
glPointParameterfv https://www.opengl.org/sdk/docs/man/html/glPointParameter.xhtml
glPointParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glPointParameter.xml
glPointParameterfvARB https://www.opengl.org/registry/specs/ARB/point_parameters.txt
glPointParameteri https://www.opengl.org/sdk/docs/man/html/glPointParameter.xhtml
glPointParameteri https://www.opengl.org/sdk/docs/man2/xhtml/glPointParameter.xml
glPointParameteriNV https://www.opengl.org/registry/specs/NV/point_sprite.txt
glPointParameteriv https://www.opengl.org/sdk/docs/man/html/glPointParameter.xhtml
glPointParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glPointParameter.xml
glPointParameterivNV https://www.opengl.org/registry/specs/NV/point_sprite.txt
glPointParameterxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPointSize https://www.opengl.org/sdk/docs/man/html/glPointSize.xhtml
glPointSize https://www.opengl.org/sdk/docs/man2/xhtml/glPointSize.xml
glPointSizexOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPollAsyncSGIX https://www.opengl.org/registry/specs/SGIX/async.txt
glPollInstrumentsSGIX https://www.opengl.org/registry/specs/SGIX/instruments.txt
glPolygonMode https://www.opengl.org/sdk/docs/man/html/glPolygonMode.xhtml
glPolygonMode https://www.opengl.org/sdk/docs/man2/xhtml/glPolygonMode.xml
glPolygonOffset https://www.opengl.org/sdk/docs/man/html/glPolygonOffset.xhtml
glPolygonOffset https://www.opengl.org/sdk/docs/man2/xhtml/glPolygonOffset.xml
glPolygonOffsetEXT https://www.opengl.org/registry/specs/EXT/polygon_offset.txt
glPolygonOffsetxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPolygonStipple https://www.opengl.org/sdk/docs/man2/xhtml/glPolygonStipple.xml
glPopAttrib https://www.opengl.org/sdk/docs/man2/xhtml/glPushAttrib.xml
glPopClientAttrib https://www.opengl.org/sdk/docs/man2/xhtml/glPushClientAttrib.xml
glPopMatrix https://www.opengl.org/sdk/docs/man2/xhtml/glPushMatrix.xml
glPopName https://www.opengl.org/sdk/docs/man2/xhtml/glPushName.xml
glPresentFrameDualFillNV https://www.opengl.org/registry/specs/NV/present_video.txt
glPresentFrameKeyedNV https://www.opengl.org/registry/specs/NV/present_video.txt
glPrimitiveRestartIndex https://www.opengl.org/sdk/docs/man/html/glPrimitiveRestartIndex.xhtml
glPrimitiveRestartIndexNV https://www.opengl.org/registry/specs/NV/primitive_restart.txt
glPrimitiveRestartNV https://www.opengl.org/registry/specs/NV/primitive_restart.txt
glPrioritizeTextures https://www.opengl.org/sdk/docs/man2/xhtml/glPrioritizeTextures.xml
glPrioritizeTexturesEXT https://www.opengl.org/registry/specs/EXT/texture_object.txt
glPrioritizeTexturesxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glProgramBinary https://www.opengl.org/registry/specs/ARB/get_program_binary.txt
glProgramBinary https://www.opengl.org/sdk/docs/man/html/glProgramBinary.xhtml
glProgramBufferParametersIivNV https://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glProgramBufferParametersIuivNV https://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glProgramBufferParametersfvNV https://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glProgramEnvParameter4dARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramEnvParameter4dARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramEnvParameter4dvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramEnvParameter4dvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramEnvParameter4fARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramEnvParameter4fARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramEnvParameter4fvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramEnvParameter4fvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramEnvParameterI4iNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramEnvParameterI4ivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramEnvParameterI4uiNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramEnvParameterI4uivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramEnvParametersI4ivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramEnvParametersI4uivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramLocalParameter4dARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4dARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramLocalParameter4dARB https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramLocalParameter4dvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4dvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramLocalParameter4dvARB https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramLocalParameter4fARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4fARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramLocalParameter4fARB https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramLocalParameter4fvARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4fvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramLocalParameter4fvARB https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramLocalParameterI4iNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramLocalParameterI4ivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramLocalParameterI4uiNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramLocalParameterI4uivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramLocalParametersI4ivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramLocalParametersI4uivNV https://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramNamedParameter4dNV https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramNamedParameter4dvNV https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramNamedParameter4fNV https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramNamedParameter4fvNV https://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramParameter4dNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramParameter4dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramParameter4fNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramParameter4fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramParameteri https://www.opengl.org/registry/specs/ARB/get_program_binary.txt
glProgramParameteri https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramParameteri https://www.opengl.org/sdk/docs/man/html/glProgramParameter.xhtml
glProgramParameteriARB https://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
glProgramParameteriEXT https://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
glProgramParameters4dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramParameters4fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramStringARB https://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramStringARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramUniform1d https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1dEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform1dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform1f https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1f https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform1fEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform1fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1i https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1i https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform1i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform1i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform1iEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1iv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1iv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform1ivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1ui https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1ui https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform1ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform1ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform1uiEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1uiv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1uiv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform1uivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2d https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2dEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform2dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform2f https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2f https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform2fEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform2fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2i https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2i https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform2i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform2i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform2iEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2iv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2iv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform2ivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2ui https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2ui https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform2ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform2ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform2uiEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2uiv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2uiv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform2uivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3d https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3dEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform3dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform3f https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3f https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform3fEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform3fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3i https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3i https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform3i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform3i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform3iEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3iv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3iv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform3ivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3ui https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3ui https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform3ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform3ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform3uiEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3uiv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3uiv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform3uivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4d https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4dEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform4dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform4f https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4f https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform4fEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform4fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4i https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4i https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform4i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform4i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform4iEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4iv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4iv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform4ivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4ui https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4ui https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform4ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform4ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glProgramUniform4uiEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4uiv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4uiv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniform4uivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix2dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix2fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix2fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix2x3dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x3dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix2x3fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x3fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix2x3fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix2x4dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x4dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix2x4fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x4fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix2x4fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix3dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix3fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix3fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix3x2dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x2dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix3x2fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x2fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix3x2fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix3x4dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x4dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix3x4fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x4fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix3x4fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix4dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix4fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix4fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix4x2dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x2dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix4x2fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x2fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix4x2fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix4x3dv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x3dvEXT https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix4x3fv https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x3fv https://www.opengl.org/sdk/docs/man/html/glProgramUniform.xhtml
glProgramUniformMatrix4x3fvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformui64NV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glProgramUniformui64vNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glProgramVertexLimitNV https://www.opengl.org/registry/specs/NV/geometry_program4.txt
glProvokingVertex https://www.opengl.org/registry/specs/ARB/provoking_vertex.txt
glProvokingVertex https://www.opengl.org/sdk/docs/man/html/glProvokingVertex.xhtml
glProvokingVertexEXT https://www.opengl.org/registry/specs/EXT/provoking_vertex.txt
glPushAttrib https://www.opengl.org/sdk/docs/man2/xhtml/glPushAttrib.xml
glPushClientAttrib https://www.opengl.org/sdk/docs/man2/xhtml/glPushClientAttrib.xml
glPushClientAttribDefaultEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glPushMatrix https://www.opengl.org/sdk/docs/man2/xhtml/glPushMatrix.xml
glPushName https://www.opengl.org/sdk/docs/man2/xhtml/glPushName.xml
glQueryCounter https://www.opengl.org/registry/specs/ARB/timer_query.txt
glQueryCounter https://www.opengl.org/sdk/docs/man/html/glQueryCounter.xhtml
glQueryMatrixxOES https://www.opengl.org/registry/specs/OES/OES_query_matrix.txt
glQueryMaxSwapBarriersSGIX https://www.opengl.org/registry/specs/SGIX/swap_barrier.txt
glRasterPos2d https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos2dv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos2f https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos2fv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos2i https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos2iv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos2s https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos2sv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3d https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3dv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3f https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3fv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3i https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3iv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3s https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos3sv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4d https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4dv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4f https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4fv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4i https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4iv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4s https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glRasterPos4sv https://www.opengl.org/sdk/docs/man2/xhtml/glRasterPos.xml
glReadBuffer https://www.opengl.org/sdk/docs/man/html/glReadBuffer.xhtml
glReadBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glReadBuffer.xml
glReadInstrumentsSGIX https://www.opengl.org/registry/specs/SGIX/instruments.txt
glReadPixels https://www.opengl.org/sdk/docs/man/html/glReadPixels.xhtml
glReadPixels https://www.opengl.org/sdk/docs/man2/xhtml/glReadPixels.xml
glReadnPixelsARB https://www.opengl.org/registry/specs/ARB/robustness.txt
glRectd https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRectdv https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRectf https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRectfv https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRecti https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRectiv https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRects https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRectsv https://www.opengl.org/sdk/docs/man2/xhtml/glRect.xml
glRectxOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glRectxvOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glReferencePlaneSGIX https://www.opengl.org/registry/specs/SGIX/reference_plane.txt
glReleaseShaderCompiler https://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glReleaseShaderCompiler https://www.opengl.org/sdk/docs/man/html/glReleaseShaderCompiler.xhtml
glRenderMode https://www.opengl.org/sdk/docs/man2/xhtml/glRenderMode.xml
glRenderbufferStorage https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glRenderbufferStorage https://www.opengl.org/sdk/docs/man/html/glRenderbufferStorage.xhtml
glRenderbufferStorageEXT https://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glRenderbufferStorageMultisample https://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glRenderbufferStorageMultisample https://www.opengl.org/sdk/docs/man/html/glRenderbufferStorageMultisample.xhtml
glRenderbufferStorageMultisampleCoverageNV https://www.opengl.org/registry/specs/NV/framebuffer_multisample_coverage.txt
glRenderbufferStorageMultisampleEXT https://www.opengl.org/registry/specs/EXT/framebuffer_multisample.txt
glReplacementCodePointerSUN https://www.opengl.org/registry/specs/SUN/triangle_list.txt
glReplacementCodeubSUN https://www.opengl.org/registry/specs/SUN/triangle_list.txt
glReplacementCodeubvSUN https://www.opengl.org/registry/specs/SUN/triangle_list.txt
glReplacementCodeuiSUN https://www.opengl.org/registry/specs/SUN/triangle_list.txt
glReplacementCodeuivSUN https://www.opengl.org/registry/specs/SUN/triangle_list.txt
glReplacementCodeusSUN https://www.opengl.org/registry/specs/SUN/triangle_list.txt
glReplacementCodeusvSUN https://www.opengl.org/registry/specs/SUN/triangle_list.txt
glRequestResidentProgramsNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glResetHistogram https://www.opengl.org/sdk/docs/man2/xhtml/glResetHistogram.xml
glResetHistogramEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glResetMinmax https://www.opengl.org/sdk/docs/man2/xhtml/glResetMinmax.xml
glResetMinmaxEXT https://www.opengl.org/registry/specs/EXT/histogram.txt
glResizeBuffersMESA https://www.opengl.org/registry/specs/MESA/resize_buffers.txt
glResumeTransformFeedback https://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glResumeTransformFeedback https://www.opengl.org/sdk/docs/man/html/glResumeTransformFeedback.xhtml
glResumeTransformFeedbackNV https://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glRotated https://www.opengl.org/sdk/docs/man2/xhtml/glRotate.xml
glRotatef https://www.opengl.org/sdk/docs/man2/xhtml/glRotate.xml
glRotatexOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glSampleCoverage https://www.opengl.org/sdk/docs/man/html/glSampleCoverage.xhtml
glSampleCoverage https://www.opengl.org/sdk/docs/man2/xhtml/glSampleCoverage.xml
glSampleCoverageARB https://www.opengl.org/registry/specs/ARB/multisample.txt
glSampleCoverageOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glSampleMaskEXT https://www.opengl.org/registry/specs/EXT/wgl_multisample.txt
glSampleMaskIndexedNV https://www.opengl.org/registry/specs/NV/explicit_multisample.txt
glSampleMaskSGIS https://www.opengl.org/registry/specs/SGIS/multisample.txt
glSampleMaski https://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glSampleMaski https://www.opengl.org/sdk/docs/man/html/glSampleMaski.xhtml
glSamplePatternEXT https://www.opengl.org/registry/specs/EXT/wgl_multisample.txt
glSamplePatternSGIS https://www.opengl.org/registry/specs/SGIS/multisample.txt
glSamplerParameterIiv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameterIuiv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameterf https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameterf https://www.opengl.org/sdk/docs/man/html/glSamplerParameter.xhtml
glSamplerParameterfv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameterfv https://www.opengl.org/sdk/docs/man/html/glSamplerParameter.xhtml
glSamplerParameteri https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameteri https://www.opengl.org/sdk/docs/man/html/glSamplerParameter.xhtml
glSamplerParameteriv https://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameteriv https://www.opengl.org/sdk/docs/man/html/glSamplerParameter.xhtml
glScaled https://www.opengl.org/sdk/docs/man2/xhtml/glScale.xml
glScalef https://www.opengl.org/sdk/docs/man2/xhtml/glScale.xml
glScalexOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glScissor https://www.opengl.org/sdk/docs/man/html/glScissor.xhtml
glScissor https://www.opengl.org/sdk/docs/man2/xhtml/glScissor.xml
glScissorArrayv https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glScissorArrayv https://www.opengl.org/sdk/docs/man/html/glScissorArray.xhtml
glScissorIndexed https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glScissorIndexed https://www.opengl.org/sdk/docs/man/html/glScissorIndexed.xhtml
glScissorIndexedv https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glScissorIndexedv https://www.opengl.org/sdk/docs/man/html/glScissorIndexed.xhtml
glSecondaryColor3b https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3bv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3d https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3dv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3f https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3fv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glSecondaryColor3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glSecondaryColor3i https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3iv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3s https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3sv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3ub https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3ubv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3ui https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3uiv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3us https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColor3usv https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColor.xml
glSecondaryColorFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glSecondaryColorP3ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glSecondaryColorP3uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glSecondaryColorPointer https://www.opengl.org/sdk/docs/man2/xhtml/glSecondaryColorPointer.xml
glSecondaryColorPointerEXT https://www.opengl.org/registry/specs/EXT/secondary_color.txt
glSelectBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glSelectBuffer.xml
glSelectPerfMonitorCountersAMD https://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glSeparableFilter2D https://www.opengl.org/sdk/docs/man2/xhtml/glSeparableFilter2D.xml
glSeparableFilter2DEXT https://www.opengl.org/registry/specs/EXT/convolution.txt
glSetFenceAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glSetFenceNV https://www.opengl.org/registry/specs/NV/fence.txt
glSetMultisamplefvAMD https://www.opengl.org/registry/specs/AMD/sample_positions.txt
glShadeModel https://www.opengl.org/sdk/docs/man2/xhtml/glShadeModel.xml
glShaderBinary https://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glShaderBinary https://www.opengl.org/sdk/docs/man/html/glShaderBinary.xhtml
glShaderSource https://www.opengl.org/sdk/docs/man/html/glShaderSource.xhtml
glShaderSource https://www.opengl.org/sdk/docs/man2/xhtml/glShaderSource.xml
glShaderSourceARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glSharpenTexFuncSGIS https://www.opengl.org/registry/specs/SGIS/sharpen_texture.txt
glSpriteParameterfSGIX https://www.opengl.org/registry/specs/SGIX/sprite.txt
glSpriteParameterfvSGIX https://www.opengl.org/registry/specs/SGIX/sprite.txt
glSpriteParameteriSGIX https://www.opengl.org/registry/specs/SGIX/sprite.txt
glSpriteParameterivSGIX https://www.opengl.org/registry/specs/SGIX/sprite.txt
glStartInstrumentsSGIX https://www.opengl.org/registry/specs/SGIX/instruments.txt
glStencilClearTagEXT https://www.opengl.org/registry/specs/EXT/stencil_clear_tag.txt
glStencilFillPathInstancedNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glStencilFillPathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glStencilFunc https://www.opengl.org/sdk/docs/man/html/glStencilFunc.xhtml
glStencilFunc https://www.opengl.org/sdk/docs/man2/xhtml/glStencilFunc.xml
glStencilFuncSeparate https://www.opengl.org/sdk/docs/man/html/glStencilFuncSeparate.xhtml
glStencilFuncSeparate https://www.opengl.org/sdk/docs/man2/xhtml/glStencilFuncSeparate.xml
glStencilMask https://www.opengl.org/sdk/docs/man/html/glStencilMask.xhtml
glStencilMask https://www.opengl.org/sdk/docs/man2/xhtml/glStencilMask.xml
glStencilMaskSeparate https://www.opengl.org/sdk/docs/man/html/glStencilMaskSeparate.xhtml
glStencilMaskSeparate https://www.opengl.org/sdk/docs/man2/xhtml/glStencilMaskSeparate.xml
glStencilOp https://www.opengl.org/sdk/docs/man/html/glStencilOp.xhtml
glStencilOp https://www.opengl.org/sdk/docs/man2/xhtml/glStencilOp.xml
glStencilOpSeparate https://www.opengl.org/sdk/docs/man/html/glStencilOpSeparate.xhtml
glStencilOpSeparate https://www.opengl.org/sdk/docs/man2/xhtml/glStencilOpSeparate.xml
glStencilStrokePathInstancedNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glStencilStrokePathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glStopInstrumentsSGIX https://www.opengl.org/registry/specs/SGIX/instruments.txt
glStringMarkerGREMEDY https://www.opengl.org/registry/specs/GREMEDY/string_marker.txt
glTagSampleBufferSGIX https://www.opengl.org/registry/specs/SGIX/tag_sample_buffer.txt
glTangentPointerEXT https://www.opengl.org/registry/specs/EXT/coordinate_frame.txt
glTbufferMask3DFX https://www.opengl.org/registry/specs/3DFX/tbuffer.txt
glTessellationFactorAMD https://www.opengl.org/registry/specs/AMD/vertex_shader_tessellator.txt
glTessellationModeAMD https://www.opengl.org/registry/specs/AMD/vertex_shader_tessellator.txt
glTestFenceAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glTestFenceNV https://www.opengl.org/registry/specs/NV/fence.txt
glTestObjectAPPLE https://www.opengl.org/registry/specs/APPLE/fence.txt
glTexBuffer https://www.opengl.org/sdk/docs/man/html/glTexBuffer.xhtml
glTexBufferARB https://www.opengl.org/registry/specs/ARB/texture_buffer_object.txt
glTexBufferEXT https://www.opengl.org/registry/specs/EXT/texture_buffer_object.txt
glTexCoord1d https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord1dv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord1f https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord1fv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord1hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord1hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord1i https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord1iv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord1s https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord1sv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2d https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2dv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2f https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2fColor4ubVertex3fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord2fColor4ubVertex3fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord2fVertex3fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord2fVertex3fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord2fv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord2hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord2i https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2iv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2s https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord2sv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3d https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3dv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3f https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3fv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord3i https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3iv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3s https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord3sv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4d https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4dv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4f https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4fVertex4fSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord4fVertex4fvSUN https://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord4fv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord4hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord4i https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4iv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4s https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoord4sv https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoord.xml
glTexCoordFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glTexCoordP1ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP1uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP2ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP2uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP3ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP3uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP4ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP4uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordPointer https://www.opengl.org/sdk/docs/man2/xhtml/glTexCoordPointer.xml
glTexCoordPointerEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glTexCoordPointervINTEL https://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
glTexEnvf https://www.opengl.org/sdk/docs/man2/xhtml/glTexEnv.xml
glTexEnvfv https://www.opengl.org/sdk/docs/man2/xhtml/glTexEnv.xml
glTexEnvi https://www.opengl.org/sdk/docs/man2/xhtml/glTexEnv.xml
glTexEnviv https://www.opengl.org/sdk/docs/man2/xhtml/glTexEnv.xml
glTexFilterFuncSGIS https://www.opengl.org/registry/specs/SGIS/texture_filter4.txt
glTexGend https://www.opengl.org/sdk/docs/man2/xhtml/glTexGen.xml
glTexGendv https://www.opengl.org/sdk/docs/man2/xhtml/glTexGen.xml
glTexGenf https://www.opengl.org/sdk/docs/man2/xhtml/glTexGen.xml
glTexGenfv https://www.opengl.org/sdk/docs/man2/xhtml/glTexGen.xml
glTexGeni https://www.opengl.org/sdk/docs/man2/xhtml/glTexGen.xml
glTexGeniv https://www.opengl.org/sdk/docs/man2/xhtml/glTexGen.xml
glTexImage1D https://www.opengl.org/sdk/docs/man/html/glTexImage1D.xhtml
glTexImage1D https://www.opengl.org/sdk/docs/man2/xhtml/glTexImage1D.xml
glTexImage2D https://www.opengl.org/sdk/docs/man/html/glTexImage2D.xhtml
glTexImage2D https://www.opengl.org/sdk/docs/man2/xhtml/glTexImage2D.xml
glTexImage2DMultisample https://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glTexImage2DMultisample https://www.opengl.org/sdk/docs/man/html/glTexImage2DMultisample.xhtml
glTexImage2DMultisampleCoverageNV https://www.opengl.org/registry/specs/NV/texture_multisample.txt
glTexImage3D https://www.opengl.org/sdk/docs/man/html/glTexImage3D.xhtml
glTexImage3D https://www.opengl.org/sdk/docs/man2/xhtml/glTexImage3D.xml
glTexImage3DEXT https://www.opengl.org/registry/specs/EXT/texture3D.txt
glTexImage3DMultisample https://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glTexImage3DMultisample https://www.opengl.org/sdk/docs/man/html/glTexImage3DMultisample.xhtml
glTexImage3DMultisampleCoverageNV https://www.opengl.org/registry/specs/NV/texture_multisample.txt
glTexImage4DSGIS https://www.opengl.org/registry/specs/SGIS/texture4D.txt
glTexParameterIiv https://www.opengl.org/sdk/docs/man/html/glTexParameter.xhtml
glTexParameterIivEXT https://www.opengl.org/registry/specs/EXT/texture_integer.txt
glTexParameterIuiv https://www.opengl.org/sdk/docs/man/html/glTexParameter.xhtml
glTexParameterIuivEXT https://www.opengl.org/registry/specs/EXT/texture_integer.txt
glTexParameterf https://www.opengl.org/sdk/docs/man/html/glTexParameter.xhtml
glTexParameterf https://www.opengl.org/sdk/docs/man2/xhtml/glTexParameter.xml
glTexParameterfv https://www.opengl.org/sdk/docs/man/html/glTexParameter.xhtml
glTexParameterfv https://www.opengl.org/sdk/docs/man2/xhtml/glTexParameter.xml
glTexParameteri https://www.opengl.org/sdk/docs/man/html/glTexParameter.xhtml
glTexParameteri https://www.opengl.org/sdk/docs/man2/xhtml/glTexParameter.xml
glTexParameteriv https://www.opengl.org/sdk/docs/man/html/glTexParameter.xhtml
glTexParameteriv https://www.opengl.org/sdk/docs/man2/xhtml/glTexParameter.xml
glTexRenderbufferNV https://www.opengl.org/registry/specs/NV/explicit_multisample.txt
glTexStorage1D https://www.opengl.org/registry/specs/ARB/texture_storage.txt
glTexStorage2D https://www.opengl.org/registry/specs/ARB/texture_storage.txt
glTexStorage3D https://www.opengl.org/registry/specs/ARB/texture_storage.txt
glTexSubImage1D https://www.opengl.org/sdk/docs/man/html/glTexSubImage1D.xhtml
glTexSubImage1D https://www.opengl.org/sdk/docs/man2/xhtml/glTexSubImage1D.xml
glTexSubImage1DEXT https://www.opengl.org/registry/specs/EXT/subtexture.txt
glTexSubImage2D https://www.opengl.org/sdk/docs/man/html/glTexSubImage2D.xhtml
glTexSubImage2D https://www.opengl.org/sdk/docs/man2/xhtml/glTexSubImage2D.xml
glTexSubImage2DEXT https://www.opengl.org/registry/specs/EXT/subtexture.txt
glTexSubImage3D https://www.opengl.org/sdk/docs/man/html/glTexSubImage3D.xhtml
glTexSubImage3D https://www.opengl.org/sdk/docs/man2/xhtml/glTexSubImage3D.xml
glTexSubImage3DEXT https://www.opengl.org/registry/specs/EXT/subtexture.txt
glTexSubImage4DSGIS https://www.opengl.org/registry/specs/SGIS/texture4D.txt
glTextureBarrierNV https://www.opengl.org/registry/specs/NV/texture_barrier.txt
glTextureBufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureColorMaskSGIS https://www.opengl.org/registry/specs/SGIS/texture_color_mask.txt
glTextureFogSGIX https://www.opengl.org/registry/specs/SGIX/fog_texture.txt
glTextureImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureImage2DMultisampleCoverageNV https://www.opengl.org/registry/specs/NV/texture_multisample.txt
glTextureImage2DMultisampleNV https://www.opengl.org/registry/specs/NV/texture_multisample.txt
glTextureImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureImage3DMultisampleCoverageNV https://www.opengl.org/registry/specs/NV/texture_multisample.txt
glTextureImage3DMultisampleNV https://www.opengl.org/registry/specs/NV/texture_multisample.txt
glTextureLightEXT https://www.opengl.org/registry/specs/EXT/light_texture.txt
glTextureMaterialEXT https://www.opengl.org/registry/specs/EXT/light_texture.txt
glTextureNormalEXT https://www.opengl.org/registry/specs/EXT/texture_perturb_normal.txt
glTextureParameterIivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureParameterIuivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureParameterfEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureParameterfvEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureParameteriEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureParameterivEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureRangeAPPLE https://www.opengl.org/registry/specs/APPLE/texture_range.txt
glTextureRenderbufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureStorage1DEXT https://www.opengl.org/registry/specs/ARB/texture_storage.txt
glTextureStorage2DEXT https://www.opengl.org/registry/specs/ARB/texture_storage.txt
glTextureStorage3DEXT https://www.opengl.org/registry/specs/ARB/texture_storage.txt
glTextureSubImage1DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureSubImage2DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTextureSubImage3DEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glTrackMatrixNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glTransformFeedbackAttribsNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glTransformFeedbackVaryings https://www.opengl.org/sdk/docs/man/html/glTransformFeedbackVaryings.xhtml
glTransformFeedbackVaryingsEXT https://www.opengl.org/registry/specs/EXT/transform_feedback.txt
glTransformFeedbackVaryingsNV https://www.opengl.org/registry/specs/NV/transform_feedback.txt
glTransformPathNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glTranslated https://www.opengl.org/sdk/docs/man2/xhtml/glTranslate.xml
glTranslatef https://www.opengl.org/sdk/docs/man2/xhtml/glTranslate.xml
glTranslatexOES https://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glUniform1d https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform1dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform1f https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform1f https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform1fARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform1fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform1fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform1fvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform1i https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform1i https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform1i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform1i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform1iARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform1iv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform1iv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform1ivARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform1ui https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform1ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform1ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform1uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform1uiv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform1uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform2d https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform2dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform2f https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform2f https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform2fARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform2fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform2fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform2fvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform2i https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform2i https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform2i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform2i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform2iARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform2iv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform2iv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform2ivARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform2ui https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform2ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform2ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform2uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform2uiv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform2uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform3d https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform3dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform3f https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform3f https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform3fARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform3fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform3fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform3fvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform3i https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform3i https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform3i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform3i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform3iARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform3iv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform3iv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform3ivARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform3ui https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform3ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform3ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform3uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform3uiv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform3uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform4d https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform4dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform4f https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform4f https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform4fARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform4fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform4fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform4fvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform4i https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform4i https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform4i64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform4i64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform4iARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform4iv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform4iv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniform4ivARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform4ui https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform4ui64NV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform4ui64vNV https://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform4uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform4uiv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniform4uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniformBlockBinding https://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glUniformBlockBinding https://www.opengl.org/sdk/docs/man/html/glUniformBlockBinding.xhtml
glUniformBufferEXT https://www.opengl.org/registry/specs/EXT/bindable_uniform.txt
glUniformMatrix2dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix2fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix2fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix2fvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniformMatrix2x3dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix2x3fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix2x3fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix2x4dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix2x4fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix2x4fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix3dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix3fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix3fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix3fvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniformMatrix3x2dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix3x2fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix3x2fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix3x4dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix3x4fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix3x4fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix4dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix4fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix4fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix4fvARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniformMatrix4x2dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix4x2fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix4x2fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformMatrix4x3dv https://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix4x3fv https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml
glUniformMatrix4x3fv https://www.opengl.org/sdk/docs/man2/xhtml/glUniform.xml
glUniformSubroutinesuiv https://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glUniformSubroutinesuiv https://www.opengl.org/sdk/docs/man/html/glUniformSubroutines.xhtml
glUniformui64NV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glUniformui64vNV https://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glUnmapBuffer https://www.opengl.org/sdk/docs/man/html/glMapBuffer.xhtml
glUnmapBuffer https://www.opengl.org/sdk/docs/man2/xhtml/glMapBuffer.xml
glUnmapBufferARB https://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glUnmapNamedBufferEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glUnmapObjectBufferATI https://www.opengl.org/registry/specs/ATI/map_object_buffer.txt
glUpdateObjectBufferATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glUseProgram https://www.opengl.org/sdk/docs/man/html/glUseProgram.xhtml
glUseProgram https://www.opengl.org/sdk/docs/man2/xhtml/glUseProgram.xml
glUseProgramObjectARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUseProgramStages https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glUseProgramStages https://www.opengl.org/sdk/docs/man/html/glUseProgramStages.xhtml
glUseShaderProgramEXT https://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt
glValidateProgram https://www.opengl.org/sdk/docs/man/html/glValidateProgram.xhtml
glValidateProgram https://www.opengl.org/sdk/docs/man2/xhtml/glValidateProgram.xml
glValidateProgramARB https://www.opengl.org/registry/specs/ARB/shader_objects.txt
glValidateProgramPipeline https://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glValidateProgramPipeline https://www.opengl.org/sdk/docs/man/html/glValidateProgramPipeline.xhtml
glVariantArrayObjectATI https://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glVertex2d https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex2dv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex2f https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex2fv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex2hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertex2hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertex2i https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex2iv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex2s https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex2sv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3d https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3dv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3f https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3fv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertex3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertex3i https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3iv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3s https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex3sv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4d https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4dv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4f https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4fv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertex4hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertex4i https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4iv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4s https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertex4sv https://www.opengl.org/sdk/docs/man2/xhtml/glVertex.xml
glVertexArrayColorOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayEdgeFlagOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayFogCoordOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayIndexOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayMultiTexCoordOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayNormalOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayParameteriAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_array_range.txt
glVertexArrayRangeAPPLE https://www.opengl.org/registry/specs/APPLE/vertex_array_range.txt
glVertexArrayRangeNV https://www.opengl.org/registry/specs/NV/vertex_array_range.txt
glVertexArraySecondaryColorOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayTexCoordOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayVertexAttribIOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayVertexAttribLOffsetEXT https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexArrayVertexAttribLOffsetEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexArrayVertexAttribOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayVertexOffsetEXT https://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexAttrib1d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib1d https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib1dARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1dARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib1dNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib1dv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib1dvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1dvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib1dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1f https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib1f https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib1fARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1fARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib1fNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1fv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib1fv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib1fvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1fvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib1fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib1hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib1s https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib1s https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib1sARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1sARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib1sNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1sv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib1sv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib1svARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1svARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib1svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib2d https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib2dARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2dARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib2dNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib2dv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib2dvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2dvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib2dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2f https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib2f https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib2fARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2fARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib2fNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2fv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib2fv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib2fvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2fvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib2fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib2hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib2s https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib2s https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib2sARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2sARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib2sNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2sv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib2sv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib2svARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2svARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib2svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib3d https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib3dARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3dARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib3dNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib3dv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib3dvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3dvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib3dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3f https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib3f https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib3fARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3fARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib3fNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3fv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib3fv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib3fvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3fvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib3fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib3s https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib3s https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib3sARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3sARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib3sNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3sv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib3sv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib3svARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3svARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib3svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4Nbv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4Nbv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4NbvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4NbvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4Niv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4Niv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4NivARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4NivARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4Nsv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4Nsv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4NsvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4NsvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4Nub https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4Nub https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4NubARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4NubARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4Nubv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4Nubv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4NubvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4NubvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4Nuiv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4Nuiv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4NuivARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4NuivARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4Nusv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4Nusv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4NusvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4NusvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4bv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4bv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4bvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4bvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4d https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4dARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4dARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4dNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4dv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4dvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4dvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4f https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4f https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4fARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4fARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4fNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4fv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4fv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4fvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4fvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4hNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib4hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib4iv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4iv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4ivARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4ivARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4s https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4s https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4sARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4sARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4sNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4sv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4sv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4svARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4svARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4ubNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4ubv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4ubv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4ubvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4ubvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4ubvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4uiv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4uiv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4uivARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4uivARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttrib4usv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttrib4usv https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttrib.xml
glVertexAttrib4usvARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4usvARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttribArrayObjectATI https://www.opengl.org/registry/specs/ATI/vertex_attrib_array_object.txt
glVertexAttribDivisor https://www.opengl.org/sdk/docs/man/html/glVertexAttribDivisor.xhtml
glVertexAttribDivisorARB https://www.opengl.org/registry/specs/ARB/instanced_arrays.txt
glVertexAttribFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glVertexAttribI1i https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI1iEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI1iEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI1iv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI1ivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI1ivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI1ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI1uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI1uiEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI1uiv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI1uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI1uivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2i https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI2iEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI2iEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2iv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI2ivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI2ivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI2uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI2uiEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2uiv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI2uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI2uivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3i https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI3iEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI3iEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3iv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI3ivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI3ivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI3uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI3uiEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3uiv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI3uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI3uivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4bv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4bvEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4bvEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4i https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4iEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4iEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4iv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4ivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4ivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4sv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4svEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4svEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4ubv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4ubvEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4ubvEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4uiEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4uiEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4uiv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4uivEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4uivEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4usv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribI4usvEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribI4usvEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribIFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glVertexAttribIPointer https://www.opengl.org/sdk/docs/man/html/glVertexAttribPointer.xhtml
glVertexAttribIPointerEXT https://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glVertexAttribIPointerEXT https://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribL1d https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL1d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL1dEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL1dv https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL1dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL1dvEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL1i64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL1i64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL1ui64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL1ui64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL2d https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL2d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL2dEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL2dv https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL2dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL2dvEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL2i64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL2i64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL2ui64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL2ui64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL3d https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL3d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL3dEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL3dv https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL3dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL3dvEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL3i64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL3i64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL3ui64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL3ui64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL4d https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL4d https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL4dEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL4dv https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL4dv https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribL4dvEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL4i64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL4i64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL4ui64NV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL4ui64vNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribLFormatNV https://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribLPointer https://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribLPointer https://www.opengl.org/sdk/docs/man/html/glVertexAttribPointer.xhtml
glVertexAttribLPointerEXT https://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribP1ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP1ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribP1uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP2ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP2ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribP2uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP3ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP3ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribP3uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP4ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP4ui https://www.opengl.org/sdk/docs/man/html/glVertexAttrib.xhtml
glVertexAttribP4uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribPointer https://www.opengl.org/sdk/docs/man/html/glVertexAttribPointer.xhtml
glVertexAttribPointer https://www.opengl.org/sdk/docs/man2/xhtml/glVertexAttribPointer.xml
glVertexAttribPointerARB https://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttribPointerARB https://www.opengl.org/registry/specs/ARB/vertex_shader.txt
glVertexAttribPointerNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs1dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs1fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs1hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttribs1svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs2dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs2fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs2hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttribs2svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs3dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs3fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs3hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttribs3svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs4dvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs4fvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs4hvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttribs4svNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttribs4ubvNV https://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexBlendARB https://www.opengl.org/registry/specs/ARB/vertex_blend.txt
glVertexFormatNV https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glVertexP2ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP2uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP3ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP3uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP4ui https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP4uiv https://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexPointer https://www.opengl.org/sdk/docs/man2/xhtml/glVertexPointer.xml
glVertexPointerEXT https://www.opengl.org/registry/specs/EXT/vertex_array.txt
glVertexPointervINTEL https://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
glVertexWeighthNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVertexWeighthvNV https://www.opengl.org/registry/specs/NV/half_float.txt
glVideoCaptureNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glViewport https://www.opengl.org/sdk/docs/man/html/glViewport.xhtml
glViewport https://www.opengl.org/sdk/docs/man2/xhtml/glViewport.xml
glViewportArrayv https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glViewportArrayv https://www.opengl.org/sdk/docs/man/html/glViewportArray.xhtml
glViewportIndexedf https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glViewportIndexedf https://www.opengl.org/sdk/docs/man/html/glViewportIndexed.xhtml
glViewportIndexedfv https://www.opengl.org/registry/specs/ARB/viewport_array.txt
glViewportIndexedfv https://www.opengl.org/sdk/docs/man/html/glViewportIndexed.xhtml
glWaitSync https://www.opengl.org/registry/specs/ARB/sync.txt
glWaitSync https://www.opengl.org/sdk/docs/man/html/glWaitSync.xhtml
glWeightPathsNV https://www.opengl.org/registry/specs/NV/path_rendering.txt
glWeightPointerARB https://www.opengl.org/registry/specs/ARB/vertex_blend.txt
glWindowPos2d https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2dARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2dMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2dv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2dvARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2dvMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2f https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2fARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2fMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2fv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2fvARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2fvMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2i https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2iARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2iMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2iv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2ivARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2ivMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2s https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2sARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2sMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2sv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos2svARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos2svMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3d https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3dARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3dMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3dv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3dvARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3dvMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3f https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3fARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3fMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3fv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3fvARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3fvMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3i https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3iARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3iMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3iv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3ivARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3ivMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3s https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3sARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3sMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3sv https://www.opengl.org/sdk/docs/man2/xhtml/glWindowPos.xml
glWindowPos3svARB https://www.opengl.org/registry/specs/ARB/window_pos.txt
glWindowPos3svMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4dMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4dvMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4fMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4fvMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4iMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4ivMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4sMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos4svMESA https://www.opengl.org/registry/specs/MESA/window_pos.txt
glXAssociateDMPbufferSGIX https://www.opengl.org/registry/specs/SGIX/dmbuffer.txt
glXBindChannelToWindowSGIX https://www.opengl.org/registry/specs/SGIX/video_resize.txt
glXBindHyperpipeSGIX https://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
glXBindSwapBarrierNV https://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXBindVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glXBindVideoDeviceNV https://www.opengl.org/registry/specs/NV/present_video.txt
glXBlitContextFramebufferAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXChannelRectSGIX https://www.opengl.org/registry/specs/SGIX/video_resize.txt
glXChannelRectSyncSGIX https://www.opengl.org/registry/specs/SGIX/video_resize.txt
glXChooseFBConfig https://www.opengl.org/sdk/docs/man2/xhtml/glXChooseFBConfig.xml
glXChooseVisual https://www.opengl.org/sdk/docs/man2/xhtml/glXChooseVisual.xml
glXCopyContext https://www.opengl.org/sdk/docs/man2/xhtml/glXCopyContext.xml
glXCopySubBufferMESA https://www.opengl.org/registry/specs/MESA/copy_sub_buffer.txt
glXCreateAssociatedContextAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXCreateAssociatedContextAttribsAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXCreateContext https://www.opengl.org/sdk/docs/man2/xhtml/glXCreateContext.xml
glXCreateContextAttribsARB https://www.opengl.org/registry/specs/ARB/glx_create_context.txt
glXCreateContextWithConfigSGIX https://www.opengl.org/registry/specs/SGIX/fbconfig.txt
glXCreateGLXPbufferSGIX https://www.opengl.org/registry/specs/SGIX/pbuffer.txt
glXCreateGLXPixmap https://www.opengl.org/sdk/docs/man2/xhtml/glXCreateGLXPixmap.xml
glXCreateGLXPixmapMESA https://www.opengl.org/registry/specs/MESA/pixmap_colormap.txt
glXCreateGLXPixmapWithConfigSGIX https://www.opengl.org/registry/specs/SGIX/fbconfig.txt
glXCreateGLXVideoSourceSGIX https://www.opengl.org/registry/specs/SGIX/video_source.txt
glXCreateNewContext https://www.opengl.org/sdk/docs/man2/xhtml/glXCreateNewContext.xml
glXCreatePbuffer https://www.opengl.org/sdk/docs/man2/xhtml/glXCreatePbuffer.xml
glXCreatePixmap https://www.opengl.org/sdk/docs/man2/xhtml/glXCreatePixmap.xml
glXCreateWindow https://www.opengl.org/sdk/docs/man2/xhtml/glXCreateWindow.xml
glXCushionSGI https://www.opengl.org/registry/specs/SGI/cushion.txt
glXDeleteAssociatedContextAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXDestroyContext https://www.opengl.org/sdk/docs/man2/xhtml/glXDestroyContext.xml
glXDestroyGLXPbufferSGIX https://www.opengl.org/registry/specs/SGIX/pbuffer.txt
glXDestroyGLXPixmap https://www.opengl.org/sdk/docs/man2/xhtml/glXDestroyGLXPixmap.xml
glXDestroyGLXVideoSourceSGIX https://www.opengl.org/registry/specs/SGIX/video_source.txt
glXDestroyHyperpipeConfigSGIX https://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
glXDestroyPbuffer https://www.opengl.org/sdk/docs/man2/xhtml/glXDestroyPbuffer.xml
glXDestroyPixmap https://www.opengl.org/sdk/docs/man2/xhtml/glXDestroyPixmap.xml
glXDestroyWindow https://www.opengl.org/sdk/docs/man2/xhtml/glXDestroyWindow.xml
glXEnumerateVideoCaptureDevicesNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glXFreeContextEXT https://www.opengl.org/registry/specs/EXT/import_context.txt
glXFreeContextEXT https://www.opengl.org/sdk/docs/man2/xhtml/glXFreeContextEXT.xml
glXGetAGPOffsetMESA https://www.opengl.org/registry/specs/MESA/agp_offset.txt
glXGetClientString https://www.opengl.org/sdk/docs/man2/xhtml/glXGetClientString.xml
glXGetConfig https://www.opengl.org/sdk/docs/man2/xhtml/glXGetConfig.xml
glXGetContextGPUIDAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXGetContextIDEXT https://www.opengl.org/registry/specs/EXT/import_context.txt
glXGetContextIDEXT https://www.opengl.org/sdk/docs/man2/xhtml/glXGetContextIDEXT.xml
glXGetCurrentAssociatedContextAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXGetCurrentContext https://www.opengl.org/sdk/docs/man2/xhtml/glXGetCurrentContext.xml
glXGetCurrentDisplay https://www.opengl.org/sdk/docs/man2/xhtml/glXGetCurrentDisplay.xml
glXGetCurrentDrawable https://www.opengl.org/sdk/docs/man2/xhtml/glXGetCurrentDrawable.xml
glXGetCurrentReadDrawable https://www.opengl.org/sdk/docs/man2/xhtml/glXGetCurrentReadDrawable.xml
glXGetCurrentReadDrawableSGI https://www.opengl.org/registry/specs/SGI/make_current_read.txt
glXGetFBConfigAttrib https://www.opengl.org/sdk/docs/man2/xhtml/glXGetFBConfigAttrib.xml
glXGetFBConfigAttribSGIX https://www.opengl.org/registry/specs/SGIX/fbconfig.txt
glXGetFBConfigFromVisualSGIX https://www.opengl.org/registry/specs/SGIX/fbconfig.txt
glXGetFBConfigs https://www.opengl.org/sdk/docs/man2/xhtml/glXGetFBConfigs.xml
glXGetGPUIDsAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXGetGPUInfoAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXGetMscRateOML https://www.opengl.org/registry/specs/OML/glx_sync_control.txt
glXGetProcAddress https://www.opengl.org/sdk/docs/man2/xhtml/glXGetProcAddress.xml
glXGetSelectedEvent https://www.opengl.org/sdk/docs/man2/xhtml/glXGetSelectedEvent.xml
glXGetSelectedEventSGIX https://www.opengl.org/registry/specs/SGIX/pbuffer.txt
glXGetSyncValuesOML https://www.opengl.org/registry/specs/OML/glx_sync_control.txt
glXGetTransparentIndexSUN https://www.opengl.org/registry/specs/SUN/get_transparent_index.txt
glXGetVideoSyncSGI https://www.opengl.org/registry/specs/SGI/video_sync.txt
glXGetVisualFromFBConfig https://www.opengl.org/sdk/docs/man2/xhtml/glXGetVisualFromFBConfig.xml
glXHyperpipeAttribSGIX https://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
glXHyperpipeConfigSGIX https://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
glXImportContextEXT https://www.opengl.org/registry/specs/EXT/import_context.txt
glXImportContextEXT https://www.opengl.org/sdk/docs/man2/xhtml/glXImportContextEXT.xml
glXIsDirect https://www.opengl.org/sdk/docs/man2/xhtml/glXIsDirect.xml
glXJoinSwapGroupNV https://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXLockVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glXMakeAssociatedContextCurrentAMD https://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXMakeContextCurrent https://www.opengl.org/sdk/docs/man2/xhtml/glXMakeContextCurrent.xml
glXMakeCurrent https://www.opengl.org/sdk/docs/man2/xhtml/glXMakeCurrent.xml
glXMakeCurrentReadSGI https://www.opengl.org/registry/specs/SGI/make_current_read.txt
glXQueryChannelDeltasSGIX https://www.opengl.org/registry/specs/SGIX/video_resize.txt
glXQueryChannelRectSGIX https://www.opengl.org/registry/specs/SGIX/video_resize.txt
glXQueryContext https://www.opengl.org/sdk/docs/man2/xhtml/glXQueryContext.xml
glXQueryContextInfoEXT https://www.opengl.org/registry/specs/EXT/import_context.txt
glXQueryContextInfoEXT https://www.opengl.org/sdk/docs/man2/xhtml/glXQueryContextInfoEXT.xml
glXQueryDrawable https://www.opengl.org/sdk/docs/man2/xhtml/glXQueryDrawable.xml
glXQueryExtension https://www.opengl.org/sdk/docs/man2/xhtml/glXQueryExtension.xml
glXQueryExtensionsString https://www.opengl.org/sdk/docs/man2/xhtml/glXQueryExtensionsString.xml
glXQueryFrameCountNV https://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXQueryGLXPbufferSGIX https://www.opengl.org/registry/specs/SGIX/pbuffer.txt
glXQueryHyperpipeAttribSGIX https://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
glXQueryHyperpipeBestAttribSGIX https://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
glXQueryMaxSwapGroupsNV https://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXQueryServerString https://www.opengl.org/sdk/docs/man2/xhtml/glXQueryServerString.xml
glXQuerySwapGroupNV https://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXQueryVersion https://www.opengl.org/sdk/docs/man2/xhtml/glXQueryVersion.xml
glXQueryVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glXReleaseBuffersMESA https://www.opengl.org/registry/specs/MESA/release_buffers.txt
glXReleaseVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
glXResetFrameCountNV https://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXSelectEvent https://www.opengl.org/sdk/docs/man2/xhtml/glXSelectEvent.xml
glXSelectEventSGIX https://www.opengl.org/registry/specs/SGIX/pbuffer.txt
glXSet3DfxModeMESA https://www.opengl.org/registry/specs/MESA/set_3dfx_mode.txt
glXSwapBuffers https://www.opengl.org/sdk/docs/man2/xhtml/glXSwapBuffers.xml
glXSwapBuffersMscOML https://www.opengl.org/registry/specs/OML/glx_sync_control.txt
glXSwapIntervalEXT https://www.opengl.org/registry/specs/EXT/swap_control.txt
glXSwapIntervalSGI https://www.opengl.org/registry/specs/SGI/swap_control.txt
glXUseXFont https://www.opengl.org/sdk/docs/man2/xhtml/glXUseXFont.xml
glXWaitForMscOML https://www.opengl.org/registry/specs/OML/glx_sync_control.txt
glXWaitForSbcOML https://www.opengl.org/registry/specs/OML/glx_sync_control.txt
glXWaitGL https://www.opengl.org/sdk/docs/man2/xhtml/glXWaitGL.xml
glXWaitVideoSyncSGI https://www.opengl.org/registry/specs/SGI/video_sync.txt
glXWaitX https://www.opengl.org/sdk/docs/man2/xhtml/glXWaitX.xml
gluBeginCurve https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginCurve.xml
gluBeginPolygon https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginPolygon.xml
gluBeginSurface https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginSurface.xml
gluBeginTrim https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginTrim.xml
gluBuild1DMipmapLevels https://www.opengl.org/sdk/docs/man2/xhtml/gluBuild1DMipmapLevels.xml
gluBuild1DMipmaps https://www.opengl.org/sdk/docs/man2/xhtml/gluBuild1DMipmaps.xml
gluBuild2DMipmapLevels https://www.opengl.org/sdk/docs/man2/xhtml/gluBuild2DMipmapLevels.xml
gluBuild2DMipmaps https://www.opengl.org/sdk/docs/man2/xhtml/gluBuild2DMipmaps.xml
gluBuild3DMipmapLevels https://www.opengl.org/sdk/docs/man2/xhtml/gluBuild3DMipmapLevels.xml
gluBuild3DMipmaps https://www.opengl.org/sdk/docs/man2/xhtml/gluBuild3DMipmaps.xml
gluCheckExtension https://www.opengl.org/sdk/docs/man2/xhtml/gluCheckExtension.xml
gluCylinder https://www.opengl.org/sdk/docs/man2/xhtml/gluCylinder.xml
gluDeleteNurbsRenderer https://www.opengl.org/sdk/docs/man2/xhtml/gluDeleteNurbsRenderer.xml
gluDeleteQuadric https://www.opengl.org/sdk/docs/man2/xhtml/gluDeleteQuadric.xml
gluDeleteTess https://www.opengl.org/sdk/docs/man2/xhtml/gluDeleteTess.xml
gluDisk https://www.opengl.org/sdk/docs/man2/xhtml/gluDisk.xml
gluEndCurve https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginCurve.xml
gluEndPolygon https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginPolygon.xml
gluEndSurface https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginSurface.xml
gluEndTrim https://www.opengl.org/sdk/docs/man2/xhtml/gluBeginTrim.xml
gluErrorString https://www.opengl.org/sdk/docs/man2/xhtml/gluErrorString.xml
gluGetNurbsProperty https://www.opengl.org/sdk/docs/man2/xhtml/gluGetNurbsProperty.xml
gluGetString https://www.opengl.org/sdk/docs/man2/xhtml/gluGetString.xml
gluGetTessProperty https://www.opengl.org/sdk/docs/man2/xhtml/gluGetTessProperty.xml
gluLoadSamplingMatrices https://www.opengl.org/sdk/docs/man2/xhtml/gluLoadSamplingMatrices.xml
gluLookAt https://www.opengl.org/sdk/docs/man2/xhtml/gluLookAt.xml
gluNewNurbsRenderer https://www.opengl.org/sdk/docs/man2/xhtml/gluNewNurbsRenderer.xml
gluNewQuadric https://www.opengl.org/sdk/docs/man2/xhtml/gluNewQuadric.xml
gluNewTess https://www.opengl.org/sdk/docs/man2/xhtml/gluNewTess.xml
gluNextContour https://www.opengl.org/sdk/docs/man2/xhtml/gluNextContour.xml
gluNurbsCallback https://www.opengl.org/sdk/docs/man2/xhtml/gluNurbsCallback.xml
gluNurbsCallbackData https://www.opengl.org/sdk/docs/man2/xhtml/gluNurbsCallbackData.xml
gluNurbsCallbackDataEXT https://www.opengl.org/sdk/docs/man2/xhtml/gluNurbsCallbackDataEXT.xml
gluNurbsCurve https://www.opengl.org/sdk/docs/man2/xhtml/gluNurbsCurve.xml
gluNurbsProperty https://www.opengl.org/sdk/docs/man2/xhtml/gluNurbsProperty.xml
gluNurbsSurface https://www.opengl.org/sdk/docs/man2/xhtml/gluNurbsSurface.xml
gluOrtho2D https://www.opengl.org/sdk/docs/man2/xhtml/gluOrtho2D.xml
gluPartialDisk https://www.opengl.org/sdk/docs/man2/xhtml/gluPartialDisk.xml
gluPerspective https://www.opengl.org/sdk/docs/man2/xhtml/gluPerspective.xml
gluPickMatrix https://www.opengl.org/sdk/docs/man2/xhtml/gluPickMatrix.xml
gluProject https://www.opengl.org/sdk/docs/man2/xhtml/gluProject.xml
gluPwlCurve https://www.opengl.org/sdk/docs/man2/xhtml/gluPwlCurve.xml
gluQuadricCallback https://www.opengl.org/sdk/docs/man2/xhtml/gluQuadricCallback.xml
gluQuadricDrawStyle https://www.opengl.org/sdk/docs/man2/xhtml/gluQuadricDrawStyle.xml
gluQuadricNormals https://www.opengl.org/sdk/docs/man2/xhtml/gluQuadricNormals.xml
gluQuadricOrientation https://www.opengl.org/sdk/docs/man2/xhtml/gluQuadricOrientation.xml
gluQuadricTexture https://www.opengl.org/sdk/docs/man2/xhtml/gluQuadricTexture.xml
gluScaleImage https://www.opengl.org/sdk/docs/man2/xhtml/gluScaleImage.xml
gluSphere https://www.opengl.org/sdk/docs/man2/xhtml/gluSphere.xml
gluTessBeginContour https://www.opengl.org/sdk/docs/man2/xhtml/gluTessBeginContour.xml
gluTessBeginPolygon https://www.opengl.org/sdk/docs/man2/xhtml/gluTessBeginPolygon.xml
gluTessCallback https://www.opengl.org/sdk/docs/man2/xhtml/gluTessCallback.xml
gluTessEndContour https://www.opengl.org/sdk/docs/man2/xhtml/gluTessBeginContour.xml
gluTessEndPolygon https://www.opengl.org/sdk/docs/man2/xhtml/gluTessEndPolygon.xml
gluTessNormal https://www.opengl.org/sdk/docs/man2/xhtml/gluTessNormal.xml
gluTessProperty https://www.opengl.org/sdk/docs/man2/xhtml/gluTessProperty.xml
gluTessVertex https://www.opengl.org/sdk/docs/man2/xhtml/gluTessVertex.xml
gluTexFilterFuncSGI https://www.opengl.org/registry/specs/SGI/filter4_parameters.txt
gluUnProject https://www.opengl.org/sdk/docs/man2/xhtml/gluUnProject.xml
gluUnProject4 https://www.opengl.org/sdk/docs/man2/xhtml/gluUnProject4.xml
sizeof https://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt
wglAssociateImageBufferEventsI3D https://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
wglBeginFrameTrackingI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
wglBindDisplayColorTableEXT https://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
wglBindSwapBarrierNV https://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglBindVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
wglBindVideoDeviceNV https://www.opengl.org/registry/specs/NV/present_video.txt
wglBlitContextFramebufferAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglChoosePixelFormat https://msdn.microsoft.com/en-us/library/dd318284.aspx
wglChoosePixelFormatARB https://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt
wglChoosePixelFormatEXT https://www.opengl.org/registry/specs/EXT/wgl_pixel_format.txt
wglCopyContext https://msdn.microsoft.com/en-us/library/dd374378.aspx
wglCreateAssociatedContextAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglCreateAssociatedContextAttribsAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglCreateBufferRegionARB https://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
wglCreateContext https://msdn.microsoft.com/en-us/library/dd374379.aspx
wglCreateContextAttribsARB https://www.opengl.org/registry/specs/ARB/wgl_create_context.txt
wglCreateDisplayColorTableEXT https://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
wglCreateImageBufferI3D https://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
wglCreateLayerContext https://msdn.microsoft.com/en-us/library/dd374380.aspx
wglCreatePbufferARB https://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
wglCreatePbufferEXT https://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
wglDXCloseDeviceNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDXLockObjectsNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDXObjectAccessNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDXOpenDeviceNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDXRegisterObjectNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDXSetResourceShareHandleNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDXUnlockObjectsNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDXUnregisterObjectNV https://www.opengl.org/registry/specs/NV/DX_interop.txt
wglDeleteAssociatedContextAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglDeleteBufferRegionARB https://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
wglDeleteContext https://msdn.microsoft.com/en-us/library/dd374381.aspx
wglDescribeLayerPlane https://msdn.microsoft.com/en-us/library/dd374382.aspx
wglDescribePixelFormat https://msdn.microsoft.com/en-us/library/dd318302.aspx
wglDestroyDisplayColorTableEXT https://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
wglDestroyImageBufferI3D https://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
wglDestroyPbufferARB https://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
wglDestroyPbufferEXT https://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
wglDisableFrameLockI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
wglDisableGenlockI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglEnableFrameLockI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
wglEnableGenlockI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglEndFrameTrackingI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
wglEnumerateVideoCaptureDevicesNV https://www.opengl.org/registry/specs/NV/video_capture.txt
wglEnumerateVideoDevicesNV https://www.opengl.org/registry/specs/NV/present_video.txt
wglGenlockSampleRateI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGenlockSourceDelayI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGenlockSourceEdgeI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGenlockSourceI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGetContextGPUIDAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglGetCurrentAssociatedContextAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglGetCurrentContext https://msdn.microsoft.com/en-us/library/dd374383.aspx
wglGetCurrentDC https://msdn.microsoft.com/en-us/library/dd374384.aspx
wglGetCurrentReadDCARB https://www.opengl.org/registry/specs/ARB/wgl_make_current_read.txt
wglGetCurrentReadDCEXT https://www.opengl.org/registry/specs/EXT/wgl_make_current_read.txt
wglGetDigitalVideoParametersI3D https://www.opengl.org/registry/specs/I3D/wgl_digital_video_control.txt
wglGetFrameUsageI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
wglGetGPUIDsAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglGetGPUInfoAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglGetGammaTableI3D https://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
wglGetGammaTableParametersI3D https://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
wglGetGenlockSampleRateI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGetGenlockSourceDelayI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGetGenlockSourceEdgeI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGetGenlockSourceI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGetLayerPaletteEntries https://msdn.microsoft.com/en-us/library/dd374385.aspx
wglGetMscRateOML https://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
wglGetPbufferDCARB https://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
wglGetPbufferDCEXT https://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
wglGetPixelFormat https://msdn.microsoft.com/en-us/library/dd318349.aspx
wglGetPixelFormatAttribfvARB https://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt
wglGetPixelFormatAttribfvEXT https://www.opengl.org/registry/specs/EXT/wgl_pixel_format.txt
wglGetPixelFormatAttribivARB https://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt
wglGetPixelFormatAttribivEXT https://www.opengl.org/registry/specs/EXT/wgl_pixel_format.txt
wglGetProcAddress https://msdn.microsoft.com/en-us/library/dd374386.aspx
wglGetSwapIntervalEXT https://www.opengl.org/registry/specs/EXT/wgl_swap_control.txt
wglGetSyncValuesOML https://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
wglIsEnabledFrameLockI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
wglIsEnabledGenlockI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglJoinSwapGroupNV https://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglLoadDisplayColorTableEXT https://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
wglLockVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
wglMakeAssociatedContextCurrentAMD https://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglMakeContextCurrentARB https://www.opengl.org/registry/specs/ARB/wgl_make_current_read.txt
wglMakeContextCurrentEXT https://www.opengl.org/registry/specs/EXT/wgl_make_current_read.txt
wglMakeCurrent https://msdn.microsoft.com/en-us/library/dd374387.aspx
wglQueryCurrentContextNV https://www.opengl.org/registry/specs/NV/present_video.txt
wglQueryFrameCountNV https://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglQueryFrameLockMasterI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
wglQueryFrameTrackingI3D https://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
wglQueryGenlockMaxSourceDelayI3D https://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglQueryMaxSwapGroupsNV https://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglQueryPbufferARB https://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
wglQueryPbufferEXT https://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
wglQuerySwapGroupNV https://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglQueryVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
wglRealizeLayerPalette https://msdn.microsoft.com/en-us/library/dd374388.aspx
wglReleaseImageBufferEventsI3D https://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
wglReleasePbufferDCARB https://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
wglReleasePbufferDCEXT https://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
wglReleaseVideoCaptureDeviceNV https://www.opengl.org/registry/specs/NV/video_capture.txt
wglResetFrameCountNV https://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglRestoreBufferRegionARB https://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
wglSaveBufferRegionARB https://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
wglSetDigitalVideoParametersI3D https://www.opengl.org/registry/specs/I3D/wgl_digital_video_control.txt
wglSetGammaTableI3D https://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
wglSetGammaTableParametersI3D https://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
wglSetLayerPaletteEntries https://msdn.microsoft.com/en-us/library/dd374389.aspx
wglSetPixelFormat https://msdn.microsoft.com/en-us/library/dd369049.aspx
wglSetStereoEmitterState3DL https://www.opengl.org/registry/specs/3DL/stereo_control.txt
wglShareLists https://msdn.microsoft.com/en-us/library/dd374390.aspx
wglSwapBuffers https://msdn.microsoft.com/en-us/library/dd369060.aspx
wglSwapBuffersMscOML https://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
wglSwapIntervalEXT https://www.opengl.org/registry/specs/EXT/wgl_swap_control.txt
wglSwapLayerBuffers https://msdn.microsoft.com/en-us/library/dd374391.aspx
wglSwapLayerBuffersMscOML https://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
wglUseFontBitmaps https://msdn.microsoft.com/en-us/library/dd374392.aspx
wglUseFontOutlines https://msdn.microsoft.com/en-us/library/dd374393.aspx
wglWaitForMscOML https://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
wglWaitForSbcOML https://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
|