1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file is auto-generated from
// gpu/command_buffer/build_gles2_cmd_buffer.py
// It's formatted by clang-format using chromium coding style:
// clang-format -i -style=chromium filename
// DO NOT EDIT!
// These functions emulate GLES2 over command buffers.
#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
#define GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
void GL_APIENTRY GLES2ActiveTexture(GLenum texture) {
gles2::GetGLContext()->ActiveTexture(texture);
}
void GL_APIENTRY GLES2AttachShader(GLuint program, GLuint shader) {
gles2::GetGLContext()->AttachShader(program, shader);
}
void GL_APIENTRY GLES2BindAttribLocation(GLuint program,
GLuint index,
const char* name) {
gles2::GetGLContext()->BindAttribLocation(program, index, name);
}
void GL_APIENTRY GLES2BindBuffer(GLenum target, GLuint buffer) {
gles2::GetGLContext()->BindBuffer(target, buffer);
}
void GL_APIENTRY GLES2BindBufferBase(GLenum target,
GLuint index,
GLuint buffer) {
gles2::GetGLContext()->BindBufferBase(target, index, buffer);
}
void GL_APIENTRY GLES2BindBufferRange(GLenum target,
GLuint index,
GLuint buffer,
GLintptr offset,
GLsizeiptr size) {
gles2::GetGLContext()->BindBufferRange(target, index, buffer, offset, size);
}
void GL_APIENTRY GLES2BindFramebuffer(GLenum target, GLuint framebuffer) {
gles2::GetGLContext()->BindFramebuffer(target, framebuffer);
}
void GL_APIENTRY GLES2BindRenderbuffer(GLenum target, GLuint renderbuffer) {
gles2::GetGLContext()->BindRenderbuffer(target, renderbuffer);
}
void GL_APIENTRY GLES2BindSampler(GLuint unit, GLuint sampler) {
gles2::GetGLContext()->BindSampler(unit, sampler);
}
void GL_APIENTRY GLES2BindTexture(GLenum target, GLuint texture) {
gles2::GetGLContext()->BindTexture(target, texture);
}
void GL_APIENTRY GLES2BindTransformFeedback(GLenum target,
GLuint transformfeedback) {
gles2::GetGLContext()->BindTransformFeedback(target, transformfeedback);
}
void GL_APIENTRY GLES2BlendColor(GLclampf red,
GLclampf green,
GLclampf blue,
GLclampf alpha) {
gles2::GetGLContext()->BlendColor(red, green, blue, alpha);
}
void GL_APIENTRY GLES2BlendEquation(GLenum mode) {
gles2::GetGLContext()->BlendEquation(mode);
}
void GL_APIENTRY GLES2BlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha) {
gles2::GetGLContext()->BlendEquationSeparate(modeRGB, modeAlpha);
}
void GL_APIENTRY GLES2BlendFunc(GLenum sfactor, GLenum dfactor) {
gles2::GetGLContext()->BlendFunc(sfactor, dfactor);
}
void GL_APIENTRY GLES2BlendFuncSeparate(GLenum srcRGB,
GLenum dstRGB,
GLenum srcAlpha,
GLenum dstAlpha) {
gles2::GetGLContext()->BlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
}
void GL_APIENTRY GLES2BufferData(GLenum target,
GLsizeiptr size,
const void* data,
GLenum usage) {
gles2::GetGLContext()->BufferData(target, size, data, usage);
}
void GL_APIENTRY GLES2BufferSubData(GLenum target,
GLintptr offset,
GLsizeiptr size,
const void* data) {
gles2::GetGLContext()->BufferSubData(target, offset, size, data);
}
GLenum GL_APIENTRY GLES2CheckFramebufferStatus(GLenum target) {
return gles2::GetGLContext()->CheckFramebufferStatus(target);
}
void GL_APIENTRY GLES2Clear(GLbitfield mask) {
gles2::GetGLContext()->Clear(mask);
}
void GL_APIENTRY GLES2ClearBufferfi(GLenum buffer,
GLint drawbuffers,
GLfloat depth,
GLint stencil) {
gles2::GetGLContext()->ClearBufferfi(buffer, drawbuffers, depth, stencil);
}
void GL_APIENTRY GLES2ClearBufferfv(GLenum buffer,
GLint drawbuffers,
const GLfloat* value) {
gles2::GetGLContext()->ClearBufferfv(buffer, drawbuffers, value);
}
void GL_APIENTRY GLES2ClearBufferiv(GLenum buffer,
GLint drawbuffers,
const GLint* value) {
gles2::GetGLContext()->ClearBufferiv(buffer, drawbuffers, value);
}
void GL_APIENTRY GLES2ClearBufferuiv(GLenum buffer,
GLint drawbuffers,
const GLuint* value) {
gles2::GetGLContext()->ClearBufferuiv(buffer, drawbuffers, value);
}
void GL_APIENTRY GLES2ClearColor(GLclampf red,
GLclampf green,
GLclampf blue,
GLclampf alpha) {
gles2::GetGLContext()->ClearColor(red, green, blue, alpha);
}
void GL_APIENTRY GLES2ClearDepthf(GLclampf depth) {
gles2::GetGLContext()->ClearDepthf(depth);
}
void GL_APIENTRY GLES2ClearStencil(GLint s) {
gles2::GetGLContext()->ClearStencil(s);
}
GLenum GL_APIENTRY GLES2ClientWaitSync(GLsync sync,
GLbitfield flags,
GLuint64 timeout) {
return gles2::GetGLContext()->ClientWaitSync(sync, flags, timeout);
}
void GL_APIENTRY GLES2ColorMask(GLboolean red,
GLboolean green,
GLboolean blue,
GLboolean alpha) {
gles2::GetGLContext()->ColorMask(red, green, blue, alpha);
}
void GL_APIENTRY GLES2CompileShader(GLuint shader) {
gles2::GetGLContext()->CompileShader(shader);
}
void GL_APIENTRY GLES2CompressedTexImage2D(GLenum target,
GLint level,
GLenum internalformat,
GLsizei width,
GLsizei height,
GLint border,
GLsizei imageSize,
const void* data) {
gles2::GetGLContext()->CompressedTexImage2D(
target, level, internalformat, width, height, border, imageSize, data);
}
void GL_APIENTRY GLES2CompressedTexSubImage2D(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLsizei width,
GLsizei height,
GLenum format,
GLsizei imageSize,
const void* data) {
gles2::GetGLContext()->CompressedTexSubImage2D(
target, level, xoffset, yoffset, width, height, format, imageSize, data);
}
void GL_APIENTRY GLES2CompressedTexImage3D(GLenum target,
GLint level,
GLenum internalformat,
GLsizei width,
GLsizei height,
GLsizei depth,
GLint border,
GLsizei imageSize,
const void* data) {
gles2::GetGLContext()->CompressedTexImage3D(target, level, internalformat,
width, height, depth, border,
imageSize, data);
}
void GL_APIENTRY GLES2CompressedTexSubImage3D(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLsizei width,
GLsizei height,
GLsizei depth,
GLenum format,
GLsizei imageSize,
const void* data) {
gles2::GetGLContext()->CompressedTexSubImage3D(
target, level, xoffset, yoffset, zoffset, width, height, depth, format,
imageSize, data);
}
void GL_APIENTRY GLES2CopyBufferSubData(GLenum readtarget,
GLenum writetarget,
GLintptr readoffset,
GLintptr writeoffset,
GLsizeiptr size) {
gles2::GetGLContext()->CopyBufferSubData(readtarget, writetarget, readoffset,
writeoffset, size);
}
void GL_APIENTRY GLES2CopyTexImage2D(GLenum target,
GLint level,
GLenum internalformat,
GLint x,
GLint y,
GLsizei width,
GLsizei height,
GLint border) {
gles2::GetGLContext()->CopyTexImage2D(target, level, internalformat, x, y,
width, height, border);
}
void GL_APIENTRY GLES2CopyTexSubImage2D(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLint x,
GLint y,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->CopyTexSubImage2D(target, level, xoffset, yoffset, x,
y, width, height);
}
void GL_APIENTRY GLES2CopyTexSubImage3D(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLint x,
GLint y,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->CopyTexSubImage3D(target, level, xoffset, yoffset,
zoffset, x, y, width, height);
}
GLuint GL_APIENTRY GLES2CreateProgram() {
return gles2::GetGLContext()->CreateProgram();
}
GLuint GL_APIENTRY GLES2CreateShader(GLenum type) {
return gles2::GetGLContext()->CreateShader(type);
}
void GL_APIENTRY GLES2CullFace(GLenum mode) {
gles2::GetGLContext()->CullFace(mode);
}
void GL_APIENTRY GLES2DeleteBuffers(GLsizei n, const GLuint* buffers) {
gles2::GetGLContext()->DeleteBuffers(n, buffers);
}
void GL_APIENTRY GLES2DeleteFramebuffers(GLsizei n,
const GLuint* framebuffers) {
gles2::GetGLContext()->DeleteFramebuffers(n, framebuffers);
}
void GL_APIENTRY GLES2DeleteProgram(GLuint program) {
gles2::GetGLContext()->DeleteProgram(program);
}
void GL_APIENTRY GLES2DeleteRenderbuffers(GLsizei n,
const GLuint* renderbuffers) {
gles2::GetGLContext()->DeleteRenderbuffers(n, renderbuffers);
}
void GL_APIENTRY GLES2DeleteSamplers(GLsizei n, const GLuint* samplers) {
gles2::GetGLContext()->DeleteSamplers(n, samplers);
}
void GL_APIENTRY GLES2DeleteSync(GLsync sync) {
gles2::GetGLContext()->DeleteSync(sync);
}
void GL_APIENTRY GLES2DeleteShader(GLuint shader) {
gles2::GetGLContext()->DeleteShader(shader);
}
void GL_APIENTRY GLES2DeleteTextures(GLsizei n, const GLuint* textures) {
gles2::GetGLContext()->DeleteTextures(n, textures);
}
void GL_APIENTRY GLES2DeleteTransformFeedbacks(GLsizei n, const GLuint* ids) {
gles2::GetGLContext()->DeleteTransformFeedbacks(n, ids);
}
void GL_APIENTRY GLES2DepthFunc(GLenum func) {
gles2::GetGLContext()->DepthFunc(func);
}
void GL_APIENTRY GLES2DepthMask(GLboolean flag) {
gles2::GetGLContext()->DepthMask(flag);
}
void GL_APIENTRY GLES2DepthRangef(GLclampf zNear, GLclampf zFar) {
gles2::GetGLContext()->DepthRangef(zNear, zFar);
}
void GL_APIENTRY GLES2DetachShader(GLuint program, GLuint shader) {
gles2::GetGLContext()->DetachShader(program, shader);
}
void GL_APIENTRY GLES2Disable(GLenum cap) {
gles2::GetGLContext()->Disable(cap);
}
void GL_APIENTRY GLES2DisableVertexAttribArray(GLuint index) {
gles2::GetGLContext()->DisableVertexAttribArray(index);
}
void GL_APIENTRY GLES2DrawArrays(GLenum mode, GLint first, GLsizei count) {
gles2::GetGLContext()->DrawArrays(mode, first, count);
}
void GL_APIENTRY GLES2DrawElements(GLenum mode,
GLsizei count,
GLenum type,
const void* indices) {
gles2::GetGLContext()->DrawElements(mode, count, type, indices);
}
void GL_APIENTRY GLES2DrawRangeElements(GLenum mode,
GLuint start,
GLuint end,
GLsizei count,
GLenum type,
const void* indices) {
gles2::GetGLContext()->DrawRangeElements(mode, start, end, count, type,
indices);
}
void GL_APIENTRY GLES2Enable(GLenum cap) {
gles2::GetGLContext()->Enable(cap);
}
void GL_APIENTRY GLES2EnableVertexAttribArray(GLuint index) {
gles2::GetGLContext()->EnableVertexAttribArray(index);
}
GLsync GL_APIENTRY GLES2FenceSync(GLenum condition, GLbitfield flags) {
return gles2::GetGLContext()->FenceSync(condition, flags);
}
void GL_APIENTRY GLES2Finish() {
gles2::GetGLContext()->Finish();
}
void GL_APIENTRY GLES2Flush() {
gles2::GetGLContext()->Flush();
}
void GL_APIENTRY GLES2FramebufferRenderbuffer(GLenum target,
GLenum attachment,
GLenum renderbuffertarget,
GLuint renderbuffer) {
gles2::GetGLContext()->FramebufferRenderbuffer(
target, attachment, renderbuffertarget, renderbuffer);
}
void GL_APIENTRY GLES2FramebufferTexture2D(GLenum target,
GLenum attachment,
GLenum textarget,
GLuint texture,
GLint level) {
gles2::GetGLContext()->FramebufferTexture2D(target, attachment, textarget,
texture, level);
}
void GL_APIENTRY GLES2FramebufferTextureLayer(GLenum target,
GLenum attachment,
GLuint texture,
GLint level,
GLint layer) {
gles2::GetGLContext()->FramebufferTextureLayer(target, attachment, texture,
level, layer);
}
void GL_APIENTRY GLES2FrontFace(GLenum mode) {
gles2::GetGLContext()->FrontFace(mode);
}
void GL_APIENTRY GLES2GenBuffers(GLsizei n, GLuint* buffers) {
gles2::GetGLContext()->GenBuffers(n, buffers);
}
void GL_APIENTRY GLES2GenerateMipmap(GLenum target) {
gles2::GetGLContext()->GenerateMipmap(target);
}
void GL_APIENTRY GLES2GenFramebuffers(GLsizei n, GLuint* framebuffers) {
gles2::GetGLContext()->GenFramebuffers(n, framebuffers);
}
void GL_APIENTRY GLES2GenRenderbuffers(GLsizei n, GLuint* renderbuffers) {
gles2::GetGLContext()->GenRenderbuffers(n, renderbuffers);
}
void GL_APIENTRY GLES2GenSamplers(GLsizei n, GLuint* samplers) {
gles2::GetGLContext()->GenSamplers(n, samplers);
}
void GL_APIENTRY GLES2GenTextures(GLsizei n, GLuint* textures) {
gles2::GetGLContext()->GenTextures(n, textures);
}
void GL_APIENTRY GLES2GenTransformFeedbacks(GLsizei n, GLuint* ids) {
gles2::GetGLContext()->GenTransformFeedbacks(n, ids);
}
void GL_APIENTRY GLES2GetActiveAttrib(GLuint program,
GLuint index,
GLsizei bufsize,
GLsizei* length,
GLint* size,
GLenum* type,
char* name) {
gles2::GetGLContext()->GetActiveAttrib(program, index, bufsize, length, size,
type, name);
}
void GL_APIENTRY GLES2GetActiveUniform(GLuint program,
GLuint index,
GLsizei bufsize,
GLsizei* length,
GLint* size,
GLenum* type,
char* name) {
gles2::GetGLContext()->GetActiveUniform(program, index, bufsize, length, size,
type, name);
}
void GL_APIENTRY GLES2GetActiveUniformBlockiv(GLuint program,
GLuint index,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetActiveUniformBlockiv(program, index, pname, params);
}
void GL_APIENTRY GLES2GetActiveUniformBlockName(GLuint program,
GLuint index,
GLsizei bufsize,
GLsizei* length,
char* name) {
gles2::GetGLContext()->GetActiveUniformBlockName(program, index, bufsize,
length, name);
}
void GL_APIENTRY GLES2GetActiveUniformsiv(GLuint program,
GLsizei count,
const GLuint* indices,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetActiveUniformsiv(program, count, indices, pname,
params);
}
void GL_APIENTRY GLES2GetAttachedShaders(GLuint program,
GLsizei maxcount,
GLsizei* count,
GLuint* shaders) {
gles2::GetGLContext()->GetAttachedShaders(program, maxcount, count, shaders);
}
GLint GL_APIENTRY GLES2GetAttribLocation(GLuint program, const char* name) {
return gles2::GetGLContext()->GetAttribLocation(program, name);
}
void GL_APIENTRY GLES2GetBooleanv(GLenum pname, GLboolean* params) {
gles2::GetGLContext()->GetBooleanv(pname, params);
}
void GL_APIENTRY GLES2GetBooleani_v(GLenum pname,
GLuint index,
GLboolean* data) {
gles2::GetGLContext()->GetBooleani_v(pname, index, data);
}
void GL_APIENTRY GLES2GetBufferParameteri64v(GLenum target,
GLenum pname,
GLint64* params) {
gles2::GetGLContext()->GetBufferParameteri64v(target, pname, params);
}
void GL_APIENTRY GLES2GetBufferParameteriv(GLenum target,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetBufferParameteriv(target, pname, params);
}
GLenum GL_APIENTRY GLES2GetError() {
return gles2::GetGLContext()->GetError();
}
void GL_APIENTRY GLES2GetFloatv(GLenum pname, GLfloat* params) {
gles2::GetGLContext()->GetFloatv(pname, params);
}
GLint GL_APIENTRY GLES2GetFragDataLocation(GLuint program, const char* name) {
return gles2::GetGLContext()->GetFragDataLocation(program, name);
}
void GL_APIENTRY GLES2GetFramebufferAttachmentParameteriv(GLenum target,
GLenum attachment,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetFramebufferAttachmentParameteriv(target, attachment,
pname, params);
}
void GL_APIENTRY GLES2GetInteger64v(GLenum pname, GLint64* params) {
gles2::GetGLContext()->GetInteger64v(pname, params);
}
void GL_APIENTRY GLES2GetIntegeri_v(GLenum pname, GLuint index, GLint* data) {
gles2::GetGLContext()->GetIntegeri_v(pname, index, data);
}
void GL_APIENTRY GLES2GetInteger64i_v(GLenum pname,
GLuint index,
GLint64* data) {
gles2::GetGLContext()->GetInteger64i_v(pname, index, data);
}
void GL_APIENTRY GLES2GetIntegerv(GLenum pname, GLint* params) {
gles2::GetGLContext()->GetIntegerv(pname, params);
}
void GL_APIENTRY GLES2GetInternalformativ(GLenum target,
GLenum format,
GLenum pname,
GLsizei bufSize,
GLint* params) {
gles2::GetGLContext()->GetInternalformativ(target, format, pname, bufSize,
params);
}
void GL_APIENTRY GLES2GetProgramiv(GLuint program,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetProgramiv(program, pname, params);
}
void GL_APIENTRY GLES2GetProgramInfoLog(GLuint program,
GLsizei bufsize,
GLsizei* length,
char* infolog) {
gles2::GetGLContext()->GetProgramInfoLog(program, bufsize, length, infolog);
}
void GL_APIENTRY GLES2GetRenderbufferParameteriv(GLenum target,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetRenderbufferParameteriv(target, pname, params);
}
void GL_APIENTRY GLES2GetSamplerParameterfv(GLuint sampler,
GLenum pname,
GLfloat* params) {
gles2::GetGLContext()->GetSamplerParameterfv(sampler, pname, params);
}
void GL_APIENTRY GLES2GetSamplerParameteriv(GLuint sampler,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetSamplerParameteriv(sampler, pname, params);
}
void GL_APIENTRY GLES2GetShaderiv(GLuint shader, GLenum pname, GLint* params) {
gles2::GetGLContext()->GetShaderiv(shader, pname, params);
}
void GL_APIENTRY GLES2GetShaderInfoLog(GLuint shader,
GLsizei bufsize,
GLsizei* length,
char* infolog) {
gles2::GetGLContext()->GetShaderInfoLog(shader, bufsize, length, infolog);
}
void GL_APIENTRY GLES2GetShaderPrecisionFormat(GLenum shadertype,
GLenum precisiontype,
GLint* range,
GLint* precision) {
gles2::GetGLContext()->GetShaderPrecisionFormat(shadertype, precisiontype,
range, precision);
}
void GL_APIENTRY GLES2GetShaderSource(GLuint shader,
GLsizei bufsize,
GLsizei* length,
char* source) {
gles2::GetGLContext()->GetShaderSource(shader, bufsize, length, source);
}
const GLubyte* GL_APIENTRY GLES2GetString(GLenum name) {
return gles2::GetGLContext()->GetString(name);
}
const GLubyte* GL_APIENTRY GLES2GetStringi(GLenum name, GLuint index) {
return gles2::GetGLContext()->GetStringi(name, index);
}
void GL_APIENTRY GLES2GetSynciv(GLsync sync,
GLenum pname,
GLsizei bufsize,
GLsizei* length,
GLint* values) {
gles2::GetGLContext()->GetSynciv(sync, pname, bufsize, length, values);
}
void GL_APIENTRY GLES2GetTexParameterfv(GLenum target,
GLenum pname,
GLfloat* params) {
gles2::GetGLContext()->GetTexParameterfv(target, pname, params);
}
void GL_APIENTRY GLES2GetTexParameteriv(GLenum target,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetTexParameteriv(target, pname, params);
}
void GL_APIENTRY GLES2GetTransformFeedbackVarying(GLuint program,
GLuint index,
GLsizei bufsize,
GLsizei* length,
GLsizei* size,
GLenum* type,
char* name) {
gles2::GetGLContext()->GetTransformFeedbackVarying(program, index, bufsize,
length, size, type, name);
}
GLuint GL_APIENTRY GLES2GetUniformBlockIndex(GLuint program, const char* name) {
return gles2::GetGLContext()->GetUniformBlockIndex(program, name);
}
void GL_APIENTRY GLES2GetUniformfv(GLuint program,
GLint location,
GLfloat* params) {
gles2::GetGLContext()->GetUniformfv(program, location, params);
}
void GL_APIENTRY GLES2GetUniformiv(GLuint program,
GLint location,
GLint* params) {
gles2::GetGLContext()->GetUniformiv(program, location, params);
}
void GL_APIENTRY GLES2GetUniformuiv(GLuint program,
GLint location,
GLuint* params) {
gles2::GetGLContext()->GetUniformuiv(program, location, params);
}
void GL_APIENTRY GLES2GetUniformIndices(GLuint program,
GLsizei count,
const char* const* names,
GLuint* indices) {
gles2::GetGLContext()->GetUniformIndices(program, count, names, indices);
}
GLint GL_APIENTRY GLES2GetUniformLocation(GLuint program, const char* name) {
return gles2::GetGLContext()->GetUniformLocation(program, name);
}
void GL_APIENTRY GLES2GetVertexAttribfv(GLuint index,
GLenum pname,
GLfloat* params) {
gles2::GetGLContext()->GetVertexAttribfv(index, pname, params);
}
void GL_APIENTRY GLES2GetVertexAttribiv(GLuint index,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetVertexAttribiv(index, pname, params);
}
void GL_APIENTRY GLES2GetVertexAttribIiv(GLuint index,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetVertexAttribIiv(index, pname, params);
}
void GL_APIENTRY GLES2GetVertexAttribIuiv(GLuint index,
GLenum pname,
GLuint* params) {
gles2::GetGLContext()->GetVertexAttribIuiv(index, pname, params);
}
void GL_APIENTRY GLES2GetVertexAttribPointerv(GLuint index,
GLenum pname,
void** pointer) {
gles2::GetGLContext()->GetVertexAttribPointerv(index, pname, pointer);
}
void GL_APIENTRY GLES2Hint(GLenum target, GLenum mode) {
gles2::GetGLContext()->Hint(target, mode);
}
void GL_APIENTRY GLES2InvalidateFramebuffer(GLenum target,
GLsizei count,
const GLenum* attachments) {
gles2::GetGLContext()->InvalidateFramebuffer(target, count, attachments);
}
void GL_APIENTRY GLES2InvalidateSubFramebuffer(GLenum target,
GLsizei count,
const GLenum* attachments,
GLint x,
GLint y,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->InvalidateSubFramebuffer(target, count, attachments, x,
y, width, height);
}
GLboolean GL_APIENTRY GLES2IsBuffer(GLuint buffer) {
return gles2::GetGLContext()->IsBuffer(buffer);
}
GLboolean GL_APIENTRY GLES2IsEnabled(GLenum cap) {
return gles2::GetGLContext()->IsEnabled(cap);
}
GLboolean GL_APIENTRY GLES2IsFramebuffer(GLuint framebuffer) {
return gles2::GetGLContext()->IsFramebuffer(framebuffer);
}
GLboolean GL_APIENTRY GLES2IsProgram(GLuint program) {
return gles2::GetGLContext()->IsProgram(program);
}
GLboolean GL_APIENTRY GLES2IsRenderbuffer(GLuint renderbuffer) {
return gles2::GetGLContext()->IsRenderbuffer(renderbuffer);
}
GLboolean GL_APIENTRY GLES2IsSampler(GLuint sampler) {
return gles2::GetGLContext()->IsSampler(sampler);
}
GLboolean GL_APIENTRY GLES2IsShader(GLuint shader) {
return gles2::GetGLContext()->IsShader(shader);
}
GLboolean GL_APIENTRY GLES2IsSync(GLsync sync) {
return gles2::GetGLContext()->IsSync(sync);
}
GLboolean GL_APIENTRY GLES2IsTexture(GLuint texture) {
return gles2::GetGLContext()->IsTexture(texture);
}
GLboolean GL_APIENTRY GLES2IsTransformFeedback(GLuint transformfeedback) {
return gles2::GetGLContext()->IsTransformFeedback(transformfeedback);
}
void GL_APIENTRY GLES2LineWidth(GLfloat width) {
gles2::GetGLContext()->LineWidth(width);
}
void GL_APIENTRY GLES2LinkProgram(GLuint program) {
gles2::GetGLContext()->LinkProgram(program);
}
void GL_APIENTRY GLES2PauseTransformFeedback() {
gles2::GetGLContext()->PauseTransformFeedback();
}
void GL_APIENTRY GLES2PixelStorei(GLenum pname, GLint param) {
gles2::GetGLContext()->PixelStorei(pname, param);
}
void GL_APIENTRY GLES2PolygonOffset(GLfloat factor, GLfloat units) {
gles2::GetGLContext()->PolygonOffset(factor, units);
}
void GL_APIENTRY GLES2ReadBuffer(GLenum src) {
gles2::GetGLContext()->ReadBuffer(src);
}
void GL_APIENTRY GLES2ReadPixels(GLint x,
GLint y,
GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
void* pixels) {
gles2::GetGLContext()->ReadPixels(x, y, width, height, format, type, pixels);
}
void GL_APIENTRY GLES2ReleaseShaderCompiler() {
gles2::GetGLContext()->ReleaseShaderCompiler();
}
void GL_APIENTRY GLES2RenderbufferStorage(GLenum target,
GLenum internalformat,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->RenderbufferStorage(target, internalformat, width,
height);
}
void GL_APIENTRY GLES2ResumeTransformFeedback() {
gles2::GetGLContext()->ResumeTransformFeedback();
}
void GL_APIENTRY GLES2SampleCoverage(GLclampf value, GLboolean invert) {
gles2::GetGLContext()->SampleCoverage(value, invert);
}
void GL_APIENTRY GLES2SamplerParameterf(GLuint sampler,
GLenum pname,
GLfloat param) {
gles2::GetGLContext()->SamplerParameterf(sampler, pname, param);
}
void GL_APIENTRY GLES2SamplerParameterfv(GLuint sampler,
GLenum pname,
const GLfloat* params) {
gles2::GetGLContext()->SamplerParameterfv(sampler, pname, params);
}
void GL_APIENTRY GLES2SamplerParameteri(GLuint sampler,
GLenum pname,
GLint param) {
gles2::GetGLContext()->SamplerParameteri(sampler, pname, param);
}
void GL_APIENTRY GLES2SamplerParameteriv(GLuint sampler,
GLenum pname,
const GLint* params) {
gles2::GetGLContext()->SamplerParameteriv(sampler, pname, params);
}
void GL_APIENTRY GLES2Scissor(GLint x, GLint y, GLsizei width, GLsizei height) {
gles2::GetGLContext()->Scissor(x, y, width, height);
}
void GL_APIENTRY GLES2ShaderBinary(GLsizei n,
const GLuint* shaders,
GLenum binaryformat,
const void* binary,
GLsizei length) {
gles2::GetGLContext()->ShaderBinary(n, shaders, binaryformat, binary, length);
}
void GL_APIENTRY GLES2ShaderSource(GLuint shader,
GLsizei count,
const GLchar* const* str,
const GLint* length) {
gles2::GetGLContext()->ShaderSource(shader, count, str, length);
}
void GL_APIENTRY GLES2ShallowFinishCHROMIUM() {
gles2::GetGLContext()->ShallowFinishCHROMIUM();
}
void GL_APIENTRY GLES2OrderingBarrierCHROMIUM() {
gles2::GetGLContext()->OrderingBarrierCHROMIUM();
}
void GL_APIENTRY GLES2MultiDrawArraysWEBGL(GLenum mode,
const GLint* firsts,
const GLsizei* counts,
GLsizei drawcount) {
gles2::GetGLContext()->MultiDrawArraysWEBGL(mode, firsts, counts, drawcount);
}
void GL_APIENTRY
GLES2MultiDrawArraysInstancedWEBGL(GLenum mode,
const GLint* firsts,
const GLsizei* counts,
const GLsizei* instance_counts,
GLsizei drawcount) {
gles2::GetGLContext()->MultiDrawArraysInstancedWEBGL(
mode, firsts, counts, instance_counts, drawcount);
}
void GL_APIENTRY
GLES2MultiDrawArraysInstancedBaseInstanceWEBGL(GLenum mode,
const GLint* firsts,
const GLsizei* counts,
const GLsizei* instance_counts,
const GLuint* baseinstances,
GLsizei drawcount) {
gles2::GetGLContext()->MultiDrawArraysInstancedBaseInstanceWEBGL(
mode, firsts, counts, instance_counts, baseinstances, drawcount);
}
void GL_APIENTRY GLES2MultiDrawElementsWEBGL(GLenum mode,
const GLsizei* counts,
GLenum type,
const GLsizei* offsets,
GLsizei drawcount) {
gles2::GetGLContext()->MultiDrawElementsWEBGL(mode, counts, type, offsets,
drawcount);
}
void GL_APIENTRY
GLES2MultiDrawElementsInstancedWEBGL(GLenum mode,
const GLsizei* counts,
GLenum type,
const GLsizei* offsets,
const GLsizei* instance_counts,
GLsizei drawcount) {
gles2::GetGLContext()->MultiDrawElementsInstancedWEBGL(
mode, counts, type, offsets, instance_counts, drawcount);
}
void GL_APIENTRY GLES2MultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(
GLenum mode,
const GLsizei* counts,
GLenum type,
const GLsizei* offsets,
const GLsizei* instance_counts,
const GLint* basevertices,
const GLuint* baseinstances,
GLsizei drawcount) {
gles2::GetGLContext()->MultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(
mode, counts, type, offsets, instance_counts, basevertices, baseinstances,
drawcount);
}
void GL_APIENTRY GLES2StencilFunc(GLenum func, GLint ref, GLuint mask) {
gles2::GetGLContext()->StencilFunc(func, ref, mask);
}
void GL_APIENTRY GLES2StencilFuncSeparate(GLenum face,
GLenum func,
GLint ref,
GLuint mask) {
gles2::GetGLContext()->StencilFuncSeparate(face, func, ref, mask);
}
void GL_APIENTRY GLES2StencilMask(GLuint mask) {
gles2::GetGLContext()->StencilMask(mask);
}
void GL_APIENTRY GLES2StencilMaskSeparate(GLenum face, GLuint mask) {
gles2::GetGLContext()->StencilMaskSeparate(face, mask);
}
void GL_APIENTRY GLES2StencilOp(GLenum fail, GLenum zfail, GLenum zpass) {
gles2::GetGLContext()->StencilOp(fail, zfail, zpass);
}
void GL_APIENTRY GLES2StencilOpSeparate(GLenum face,
GLenum fail,
GLenum zfail,
GLenum zpass) {
gles2::GetGLContext()->StencilOpSeparate(face, fail, zfail, zpass);
}
void GL_APIENTRY GLES2TexImage2D(GLenum target,
GLint level,
GLint internalformat,
GLsizei width,
GLsizei height,
GLint border,
GLenum format,
GLenum type,
const void* pixels) {
gles2::GetGLContext()->TexImage2D(target, level, internalformat, width,
height, border, format, type, pixels);
}
void GL_APIENTRY GLES2TexImage3D(GLenum target,
GLint level,
GLint internalformat,
GLsizei width,
GLsizei height,
GLsizei depth,
GLint border,
GLenum format,
GLenum type,
const void* pixels) {
gles2::GetGLContext()->TexImage3D(target, level, internalformat, width,
height, depth, border, format, type,
pixels);
}
void GL_APIENTRY GLES2TexParameterf(GLenum target,
GLenum pname,
GLfloat param) {
gles2::GetGLContext()->TexParameterf(target, pname, param);
}
void GL_APIENTRY GLES2TexParameterfv(GLenum target,
GLenum pname,
const GLfloat* params) {
gles2::GetGLContext()->TexParameterfv(target, pname, params);
}
void GL_APIENTRY GLES2TexParameteri(GLenum target, GLenum pname, GLint param) {
gles2::GetGLContext()->TexParameteri(target, pname, param);
}
void GL_APIENTRY GLES2TexParameteriv(GLenum target,
GLenum pname,
const GLint* params) {
gles2::GetGLContext()->TexParameteriv(target, pname, params);
}
void GL_APIENTRY GLES2TexStorage3D(GLenum target,
GLsizei levels,
GLenum internalFormat,
GLsizei width,
GLsizei height,
GLsizei depth) {
gles2::GetGLContext()->TexStorage3D(target, levels, internalFormat, width,
height, depth);
}
void GL_APIENTRY GLES2TexSubImage2D(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
const void* pixels) {
gles2::GetGLContext()->TexSubImage2D(target, level, xoffset, yoffset, width,
height, format, type, pixels);
}
void GL_APIENTRY GLES2TexSubImage3D(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLsizei width,
GLsizei height,
GLsizei depth,
GLenum format,
GLenum type,
const void* pixels) {
gles2::GetGLContext()->TexSubImage3D(target, level, xoffset, yoffset, zoffset,
width, height, depth, format, type,
pixels);
}
void GL_APIENTRY GLES2TransformFeedbackVaryings(GLuint program,
GLsizei count,
const char* const* varyings,
GLenum buffermode) {
gles2::GetGLContext()->TransformFeedbackVaryings(program, count, varyings,
buffermode);
}
void GL_APIENTRY GLES2Uniform1f(GLint location, GLfloat x) {
gles2::GetGLContext()->Uniform1f(location, x);
}
void GL_APIENTRY GLES2Uniform1fv(GLint location,
GLsizei count,
const GLfloat* v) {
gles2::GetGLContext()->Uniform1fv(location, count, v);
}
void GL_APIENTRY GLES2Uniform1i(GLint location, GLint x) {
gles2::GetGLContext()->Uniform1i(location, x);
}
void GL_APIENTRY GLES2Uniform1iv(GLint location,
GLsizei count,
const GLint* v) {
gles2::GetGLContext()->Uniform1iv(location, count, v);
}
void GL_APIENTRY GLES2Uniform1ui(GLint location, GLuint x) {
gles2::GetGLContext()->Uniform1ui(location, x);
}
void GL_APIENTRY GLES2Uniform1uiv(GLint location,
GLsizei count,
const GLuint* v) {
gles2::GetGLContext()->Uniform1uiv(location, count, v);
}
void GL_APIENTRY GLES2Uniform2f(GLint location, GLfloat x, GLfloat y) {
gles2::GetGLContext()->Uniform2f(location, x, y);
}
void GL_APIENTRY GLES2Uniform2fv(GLint location,
GLsizei count,
const GLfloat* v) {
gles2::GetGLContext()->Uniform2fv(location, count, v);
}
void GL_APIENTRY GLES2Uniform2i(GLint location, GLint x, GLint y) {
gles2::GetGLContext()->Uniform2i(location, x, y);
}
void GL_APIENTRY GLES2Uniform2iv(GLint location,
GLsizei count,
const GLint* v) {
gles2::GetGLContext()->Uniform2iv(location, count, v);
}
void GL_APIENTRY GLES2Uniform2ui(GLint location, GLuint x, GLuint y) {
gles2::GetGLContext()->Uniform2ui(location, x, y);
}
void GL_APIENTRY GLES2Uniform2uiv(GLint location,
GLsizei count,
const GLuint* v) {
gles2::GetGLContext()->Uniform2uiv(location, count, v);
}
void GL_APIENTRY GLES2Uniform3f(GLint location,
GLfloat x,
GLfloat y,
GLfloat z) {
gles2::GetGLContext()->Uniform3f(location, x, y, z);
}
void GL_APIENTRY GLES2Uniform3fv(GLint location,
GLsizei count,
const GLfloat* v) {
gles2::GetGLContext()->Uniform3fv(location, count, v);
}
void GL_APIENTRY GLES2Uniform3i(GLint location, GLint x, GLint y, GLint z) {
gles2::GetGLContext()->Uniform3i(location, x, y, z);
}
void GL_APIENTRY GLES2Uniform3iv(GLint location,
GLsizei count,
const GLint* v) {
gles2::GetGLContext()->Uniform3iv(location, count, v);
}
void GL_APIENTRY GLES2Uniform3ui(GLint location, GLuint x, GLuint y, GLuint z) {
gles2::GetGLContext()->Uniform3ui(location, x, y, z);
}
void GL_APIENTRY GLES2Uniform3uiv(GLint location,
GLsizei count,
const GLuint* v) {
gles2::GetGLContext()->Uniform3uiv(location, count, v);
}
void GL_APIENTRY
GLES2Uniform4f(GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w) {
gles2::GetGLContext()->Uniform4f(location, x, y, z, w);
}
void GL_APIENTRY GLES2Uniform4fv(GLint location,
GLsizei count,
const GLfloat* v) {
gles2::GetGLContext()->Uniform4fv(location, count, v);
}
void GL_APIENTRY
GLES2Uniform4i(GLint location, GLint x, GLint y, GLint z, GLint w) {
gles2::GetGLContext()->Uniform4i(location, x, y, z, w);
}
void GL_APIENTRY GLES2Uniform4iv(GLint location,
GLsizei count,
const GLint* v) {
gles2::GetGLContext()->Uniform4iv(location, count, v);
}
void GL_APIENTRY
GLES2Uniform4ui(GLint location, GLuint x, GLuint y, GLuint z, GLuint w) {
gles2::GetGLContext()->Uniform4ui(location, x, y, z, w);
}
void GL_APIENTRY GLES2Uniform4uiv(GLint location,
GLsizei count,
const GLuint* v) {
gles2::GetGLContext()->Uniform4uiv(location, count, v);
}
void GL_APIENTRY GLES2UniformBlockBinding(GLuint program,
GLuint index,
GLuint binding) {
gles2::GetGLContext()->UniformBlockBinding(program, index, binding);
}
void GL_APIENTRY GLES2UniformMatrix2fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix2fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix2x3fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix2x3fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix2x4fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix2x4fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix3fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix3fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix3x2fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix3x2fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix3x4fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix3x4fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix4fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix4fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix4x2fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix4x2fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UniformMatrix4x3fv(GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix4x3fv(location, count, transpose, value);
}
void GL_APIENTRY GLES2UseProgram(GLuint program) {
gles2::GetGLContext()->UseProgram(program);
}
void GL_APIENTRY GLES2ValidateProgram(GLuint program) {
gles2::GetGLContext()->ValidateProgram(program);
}
void GL_APIENTRY GLES2VertexAttrib1f(GLuint indx, GLfloat x) {
gles2::GetGLContext()->VertexAttrib1f(indx, x);
}
void GL_APIENTRY GLES2VertexAttrib1fv(GLuint indx, const GLfloat* values) {
gles2::GetGLContext()->VertexAttrib1fv(indx, values);
}
void GL_APIENTRY GLES2VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) {
gles2::GetGLContext()->VertexAttrib2f(indx, x, y);
}
void GL_APIENTRY GLES2VertexAttrib2fv(GLuint indx, const GLfloat* values) {
gles2::GetGLContext()->VertexAttrib2fv(indx, values);
}
void GL_APIENTRY GLES2VertexAttrib3f(GLuint indx,
GLfloat x,
GLfloat y,
GLfloat z) {
gles2::GetGLContext()->VertexAttrib3f(indx, x, y, z);
}
void GL_APIENTRY GLES2VertexAttrib3fv(GLuint indx, const GLfloat* values) {
gles2::GetGLContext()->VertexAttrib3fv(indx, values);
}
void GL_APIENTRY
GLES2VertexAttrib4f(GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) {
gles2::GetGLContext()->VertexAttrib4f(indx, x, y, z, w);
}
void GL_APIENTRY GLES2VertexAttrib4fv(GLuint indx, const GLfloat* values) {
gles2::GetGLContext()->VertexAttrib4fv(indx, values);
}
void GL_APIENTRY
GLES2VertexAttribI4i(GLuint indx, GLint x, GLint y, GLint z, GLint w) {
gles2::GetGLContext()->VertexAttribI4i(indx, x, y, z, w);
}
void GL_APIENTRY GLES2VertexAttribI4iv(GLuint indx, const GLint* values) {
gles2::GetGLContext()->VertexAttribI4iv(indx, values);
}
void GL_APIENTRY
GLES2VertexAttribI4ui(GLuint indx, GLuint x, GLuint y, GLuint z, GLuint w) {
gles2::GetGLContext()->VertexAttribI4ui(indx, x, y, z, w);
}
void GL_APIENTRY GLES2VertexAttribI4uiv(GLuint indx, const GLuint* values) {
gles2::GetGLContext()->VertexAttribI4uiv(indx, values);
}
void GL_APIENTRY GLES2VertexAttribIPointer(GLuint indx,
GLint size,
GLenum type,
GLsizei stride,
const void* ptr) {
gles2::GetGLContext()->VertexAttribIPointer(indx, size, type, stride, ptr);
}
void GL_APIENTRY GLES2VertexAttribPointer(GLuint indx,
GLint size,
GLenum type,
GLboolean normalized,
GLsizei stride,
const void* ptr) {
gles2::GetGLContext()->VertexAttribPointer(indx, size, type, normalized,
stride, ptr);
}
void GL_APIENTRY GLES2Viewport(GLint x,
GLint y,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->Viewport(x, y, width, height);
}
void GL_APIENTRY GLES2WaitSync(GLsync sync,
GLbitfield flags,
GLuint64 timeout) {
gles2::GetGLContext()->WaitSync(sync, flags, timeout);
}
void GL_APIENTRY GLES2BlitFramebufferCHROMIUM(GLint srcX0,
GLint srcY0,
GLint srcX1,
GLint srcY1,
GLint dstX0,
GLint dstY0,
GLint dstX1,
GLint dstY1,
GLbitfield mask,
GLenum filter) {
gles2::GetGLContext()->BlitFramebufferCHROMIUM(
srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
}
void GL_APIENTRY
GLES2RenderbufferStorageMultisampleCHROMIUM(GLenum target,
GLsizei samples,
GLenum internalformat,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->RenderbufferStorageMultisampleCHROMIUM(
target, samples, internalformat, width, height);
}
void GL_APIENTRY
GLES2RenderbufferStorageMultisampleAdvancedAMD(GLenum target,
GLsizei samples,
GLsizei storageSamples,
GLenum internalformat,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->RenderbufferStorageMultisampleAdvancedAMD(
target, samples, storageSamples, internalformat, width, height);
}
void GL_APIENTRY GLES2RenderbufferStorageMultisampleEXT(GLenum target,
GLsizei samples,
GLenum internalformat,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->RenderbufferStorageMultisampleEXT(
target, samples, internalformat, width, height);
}
void GL_APIENTRY GLES2FramebufferTexture2DMultisampleEXT(GLenum target,
GLenum attachment,
GLenum textarget,
GLuint texture,
GLint level,
GLsizei samples) {
gles2::GetGLContext()->FramebufferTexture2DMultisampleEXT(
target, attachment, textarget, texture, level, samples);
}
void GL_APIENTRY GLES2TexStorage2DEXT(GLenum target,
GLsizei levels,
GLenum internalFormat,
GLsizei width,
GLsizei height) {
gles2::GetGLContext()->TexStorage2DEXT(target, levels, internalFormat, width,
height);
}
void GL_APIENTRY GLES2GenQueriesEXT(GLsizei n, GLuint* queries) {
gles2::GetGLContext()->GenQueriesEXT(n, queries);
}
void GL_APIENTRY GLES2DeleteQueriesEXT(GLsizei n, const GLuint* queries) {
gles2::GetGLContext()->DeleteQueriesEXT(n, queries);
}
void GL_APIENTRY GLES2QueryCounterEXT(GLuint id, GLenum target) {
gles2::GetGLContext()->QueryCounterEXT(id, target);
}
GLboolean GL_APIENTRY GLES2IsQueryEXT(GLuint id) {
return gles2::GetGLContext()->IsQueryEXT(id);
}
void GL_APIENTRY GLES2BeginQueryEXT(GLenum target, GLuint id) {
gles2::GetGLContext()->BeginQueryEXT(target, id);
}
void GL_APIENTRY GLES2BeginTransformFeedback(GLenum primitivemode) {
gles2::GetGLContext()->BeginTransformFeedback(primitivemode);
}
void GL_APIENTRY GLES2EndQueryEXT(GLenum target) {
gles2::GetGLContext()->EndQueryEXT(target);
}
void GL_APIENTRY GLES2EndTransformFeedback() {
gles2::GetGLContext()->EndTransformFeedback();
}
void GL_APIENTRY GLES2GetQueryivEXT(GLenum target,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetQueryivEXT(target, pname, params);
}
void GL_APIENTRY GLES2GetQueryObjectivEXT(GLuint id,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetQueryObjectivEXT(id, pname, params);
}
void GL_APIENTRY GLES2GetQueryObjectuivEXT(GLuint id,
GLenum pname,
GLuint* params) {
gles2::GetGLContext()->GetQueryObjectuivEXT(id, pname, params);
}
void GL_APIENTRY GLES2GetQueryObjecti64vEXT(GLuint id,
GLenum pname,
GLint64* params) {
gles2::GetGLContext()->GetQueryObjecti64vEXT(id, pname, params);
}
void GL_APIENTRY GLES2GetQueryObjectui64vEXT(GLuint id,
GLenum pname,
GLuint64* params) {
gles2::GetGLContext()->GetQueryObjectui64vEXT(id, pname, params);
}
void GL_APIENTRY GLES2SetDisjointValueSyncCHROMIUM() {
gles2::GetGLContext()->SetDisjointValueSyncCHROMIUM();
}
void GL_APIENTRY GLES2InsertEventMarkerEXT(GLsizei length,
const GLchar* marker) {
gles2::GetGLContext()->InsertEventMarkerEXT(length, marker);
}
void GL_APIENTRY GLES2PushGroupMarkerEXT(GLsizei length, const GLchar* marker) {
gles2::GetGLContext()->PushGroupMarkerEXT(length, marker);
}
void GL_APIENTRY GLES2PopGroupMarkerEXT() {
gles2::GetGLContext()->PopGroupMarkerEXT();
}
void GL_APIENTRY GLES2GenVertexArraysOES(GLsizei n, GLuint* arrays) {
gles2::GetGLContext()->GenVertexArraysOES(n, arrays);
}
void GL_APIENTRY GLES2DeleteVertexArraysOES(GLsizei n, const GLuint* arrays) {
gles2::GetGLContext()->DeleteVertexArraysOES(n, arrays);
}
GLboolean GL_APIENTRY GLES2IsVertexArrayOES(GLuint array) {
return gles2::GetGLContext()->IsVertexArrayOES(array);
}
void GL_APIENTRY GLES2BindVertexArrayOES(GLuint array) {
gles2::GetGLContext()->BindVertexArrayOES(array);
}
void GL_APIENTRY GLES2FramebufferParameteri(GLenum target,
GLenum pname,
GLint param) {
gles2::GetGLContext()->FramebufferParameteri(target, pname, param);
}
void GL_APIENTRY GLES2BindImageTexture(GLuint unit,
GLuint texture,
GLint level,
GLboolean layered,
GLint layer,
GLenum access,
GLenum format) {
gles2::GetGLContext()->BindImageTexture(unit, texture, level, layered, layer,
access, format);
}
void GL_APIENTRY GLES2DispatchCompute(GLuint num_groups_x,
GLuint num_groups_y,
GLuint num_groups_z) {
gles2::GetGLContext()->DispatchCompute(num_groups_x, num_groups_y,
num_groups_z);
}
void GL_APIENTRY GLES2DispatchComputeIndirect(GLintptr offset) {
gles2::GetGLContext()->DispatchComputeIndirect(offset);
}
void GL_APIENTRY GLES2DrawArraysIndirect(GLenum mode, const void* offset) {
gles2::GetGLContext()->DrawArraysIndirect(mode, offset);
}
void GL_APIENTRY GLES2DrawElementsIndirect(GLenum mode,
GLenum type,
const void* offset) {
gles2::GetGLContext()->DrawElementsIndirect(mode, type, offset);
}
void GL_APIENTRY GLES2GetProgramInterfaceiv(GLuint program,
GLenum program_interface,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetProgramInterfaceiv(program, program_interface,
pname, params);
}
GLuint GL_APIENTRY GLES2GetProgramResourceIndex(GLuint program,
GLenum program_interface,
const char* name) {
return gles2::GetGLContext()->GetProgramResourceIndex(
program, program_interface, name);
}
void GL_APIENTRY GLES2GetProgramResourceName(GLuint program,
GLenum program_interface,
GLuint index,
GLsizei bufsize,
GLsizei* length,
char* name) {
gles2::GetGLContext()->GetProgramResourceName(program, program_interface,
index, bufsize, length, name);
}
void GL_APIENTRY GLES2GetProgramResourceiv(GLuint program,
GLenum program_interface,
GLuint index,
GLsizei prop_count,
const GLenum* props,
GLsizei bufsize,
GLsizei* length,
GLint* params) {
gles2::GetGLContext()->GetProgramResourceiv(program, program_interface, index,
prop_count, props, bufsize,
length, params);
}
GLint GL_APIENTRY GLES2GetProgramResourceLocation(GLuint program,
GLenum program_interface,
const char* name) {
return gles2::GetGLContext()->GetProgramResourceLocation(
program, program_interface, name);
}
void GL_APIENTRY GLES2MemoryBarrierEXT(GLbitfield barriers) {
gles2::GetGLContext()->MemoryBarrierEXT(barriers);
}
void GL_APIENTRY GLES2MemoryBarrierByRegion(GLbitfield barriers) {
gles2::GetGLContext()->MemoryBarrierByRegion(barriers);
}
void GL_APIENTRY GLES2SwapBuffers(GLuint64 swap_id, GLbitfield flags) {
gles2::GetGLContext()->SwapBuffers(swap_id, flags);
}
GLuint GL_APIENTRY GLES2GetMaxValueInBufferCHROMIUM(GLuint buffer_id,
GLsizei count,
GLenum type,
GLuint offset) {
return gles2::GetGLContext()->GetMaxValueInBufferCHROMIUM(buffer_id, count,
type, offset);
}
GLboolean GL_APIENTRY GLES2EnableFeatureCHROMIUM(const char* feature) {
return gles2::GetGLContext()->EnableFeatureCHROMIUM(feature);
}
void* GL_APIENTRY GLES2MapBufferCHROMIUM(GLuint target, GLenum access) {
return gles2::GetGLContext()->MapBufferCHROMIUM(target, access);
}
GLboolean GL_APIENTRY GLES2UnmapBufferCHROMIUM(GLuint target) {
return gles2::GetGLContext()->UnmapBufferCHROMIUM(target);
}
void* GL_APIENTRY GLES2MapBufferSubDataCHROMIUM(GLuint target,
GLintptr offset,
GLsizeiptr size,
GLenum access) {
return gles2::GetGLContext()->MapBufferSubDataCHROMIUM(target, offset, size,
access);
}
void GL_APIENTRY GLES2UnmapBufferSubDataCHROMIUM(const void* mem) {
gles2::GetGLContext()->UnmapBufferSubDataCHROMIUM(mem);
}
void* GL_APIENTRY GLES2MapBufferRange(GLenum target,
GLintptr offset,
GLsizeiptr size,
GLbitfield access) {
return gles2::GetGLContext()->MapBufferRange(target, offset, size, access);
}
GLboolean GL_APIENTRY GLES2UnmapBuffer(GLenum target) {
return gles2::GetGLContext()->UnmapBuffer(target);
}
void GL_APIENTRY GLES2FlushMappedBufferRange(GLenum target,
GLintptr offset,
GLsizeiptr size) {
gles2::GetGLContext()->FlushMappedBufferRange(target, offset, size);
}
void* GL_APIENTRY GLES2MapTexSubImage2DCHROMIUM(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
GLenum access) {
return gles2::GetGLContext()->MapTexSubImage2DCHROMIUM(
target, level, xoffset, yoffset, width, height, format, type, access);
}
void GL_APIENTRY GLES2UnmapTexSubImage2DCHROMIUM(const void* mem) {
gles2::GetGLContext()->UnmapTexSubImage2DCHROMIUM(mem);
}
void GL_APIENTRY GLES2ResizeCHROMIUM(GLuint width,
GLuint height,
GLfloat scale_factor,
GLcolorSpace color_space,
GLboolean alpha) {
gles2::GetGLContext()->ResizeCHROMIUM(width, height, scale_factor,
color_space, alpha);
}
const GLchar* GL_APIENTRY GLES2GetRequestableExtensionsCHROMIUM() {
return gles2::GetGLContext()->GetRequestableExtensionsCHROMIUM();
}
void GL_APIENTRY GLES2RequestExtensionCHROMIUM(const char* extension) {
gles2::GetGLContext()->RequestExtensionCHROMIUM(extension);
}
void GL_APIENTRY GLES2GetProgramInfoCHROMIUM(GLuint program,
GLsizei bufsize,
GLsizei* size,
void* info) {
gles2::GetGLContext()->GetProgramInfoCHROMIUM(program, bufsize, size, info);
}
void GL_APIENTRY GLES2GetUniformBlocksCHROMIUM(GLuint program,
GLsizei bufsize,
GLsizei* size,
void* info) {
gles2::GetGLContext()->GetUniformBlocksCHROMIUM(program, bufsize, size, info);
}
void GL_APIENTRY GLES2GetTransformFeedbackVaryingsCHROMIUM(GLuint program,
GLsizei bufsize,
GLsizei* size,
void* info) {
gles2::GetGLContext()->GetTransformFeedbackVaryingsCHROMIUM(program, bufsize,
size, info);
}
void GL_APIENTRY GLES2GetUniformsES3CHROMIUM(GLuint program,
GLsizei bufsize,
GLsizei* size,
void* info) {
gles2::GetGLContext()->GetUniformsES3CHROMIUM(program, bufsize, size, info);
}
void GL_APIENTRY GLES2DescheduleUntilFinishedCHROMIUM() {
gles2::GetGLContext()->DescheduleUntilFinishedCHROMIUM();
}
void GL_APIENTRY GLES2GetTranslatedShaderSourceANGLE(GLuint shader,
GLsizei bufsize,
GLsizei* length,
char* source) {
gles2::GetGLContext()->GetTranslatedShaderSourceANGLE(shader, bufsize, length,
source);
}
void GL_APIENTRY GLES2CopyTextureCHROMIUM(GLuint source_id,
GLint source_level,
GLenum dest_target,
GLuint dest_id,
GLint dest_level,
GLint internalformat,
GLenum dest_type,
GLboolean unpack_flip_y,
GLboolean unpack_premultiply_alpha,
GLboolean unpack_unmultiply_alpha) {
gles2::GetGLContext()->CopyTextureCHROMIUM(
source_id, source_level, dest_target, dest_id, dest_level, internalformat,
dest_type, unpack_flip_y, unpack_premultiply_alpha,
unpack_unmultiply_alpha);
}
void GL_APIENTRY
GLES2CopySubTextureCHROMIUM(GLuint source_id,
GLint source_level,
GLenum dest_target,
GLuint dest_id,
GLint dest_level,
GLint xoffset,
GLint yoffset,
GLint x,
GLint y,
GLsizei width,
GLsizei height,
GLboolean unpack_flip_y,
GLboolean unpack_premultiply_alpha,
GLboolean unpack_unmultiply_alpha) {
gles2::GetGLContext()->CopySubTextureCHROMIUM(
source_id, source_level, dest_target, dest_id, dest_level, xoffset,
yoffset, x, y, width, height, unpack_flip_y, unpack_premultiply_alpha,
unpack_unmultiply_alpha);
}
void GL_APIENTRY GLES2DrawArraysInstancedANGLE(GLenum mode,
GLint first,
GLsizei count,
GLsizei primcount) {
gles2::GetGLContext()->DrawArraysInstancedANGLE(mode, first, count,
primcount);
}
void GL_APIENTRY
GLES2DrawArraysInstancedBaseInstanceANGLE(GLenum mode,
GLint first,
GLsizei count,
GLsizei primcount,
GLuint baseinstance) {
gles2::GetGLContext()->DrawArraysInstancedBaseInstanceANGLE(
mode, first, count, primcount, baseinstance);
}
void GL_APIENTRY GLES2DrawElementsInstancedANGLE(GLenum mode,
GLsizei count,
GLenum type,
const void* indices,
GLsizei primcount) {
gles2::GetGLContext()->DrawElementsInstancedANGLE(mode, count, type, indices,
primcount);
}
void GL_APIENTRY
GLES2DrawElementsInstancedBaseVertexBaseInstanceANGLE(GLenum mode,
GLsizei count,
GLenum type,
const void* indices,
GLsizei primcount,
GLint basevertex,
GLuint baseinstance) {
gles2::GetGLContext()->DrawElementsInstancedBaseVertexBaseInstanceANGLE(
mode, count, type, indices, primcount, basevertex, baseinstance);
}
void GL_APIENTRY GLES2VertexAttribDivisorANGLE(GLuint index, GLuint divisor) {
gles2::GetGLContext()->VertexAttribDivisorANGLE(index, divisor);
}
void GL_APIENTRY GLES2ProduceTextureDirectCHROMIUM(GLuint texture,
GLbyte* mailbox) {
gles2::GetGLContext()->ProduceTextureDirectCHROMIUM(texture, mailbox);
}
GLuint GL_APIENTRY GLES2CreateAndConsumeTextureCHROMIUM(const GLbyte* mailbox) {
return gles2::GetGLContext()->CreateAndConsumeTextureCHROMIUM(mailbox);
}
void GL_APIENTRY GLES2BindUniformLocationCHROMIUM(GLuint program,
GLint location,
const char* name) {
gles2::GetGLContext()->BindUniformLocationCHROMIUM(program, location, name);
}
void GL_APIENTRY GLES2TraceBeginCHROMIUM(const char* category_name,
const char* trace_name) {
gles2::GetGLContext()->TraceBeginCHROMIUM(category_name, trace_name);
}
void GL_APIENTRY GLES2TraceEndCHROMIUM() {
gles2::GetGLContext()->TraceEndCHROMIUM();
}
void GL_APIENTRY GLES2DiscardFramebufferEXT(GLenum target,
GLsizei count,
const GLenum* attachments) {
gles2::GetGLContext()->DiscardFramebufferEXT(target, count, attachments);
}
void GL_APIENTRY GLES2LoseContextCHROMIUM(GLenum current, GLenum other) {
gles2::GetGLContext()->LoseContextCHROMIUM(current, other);
}
void GL_APIENTRY GLES2DrawBuffersEXT(GLsizei count, const GLenum* bufs) {
gles2::GetGLContext()->DrawBuffersEXT(count, bufs);
}
void GL_APIENTRY GLES2DiscardBackbufferCHROMIUM() {
gles2::GetGLContext()->DiscardBackbufferCHROMIUM();
}
void GL_APIENTRY GLES2FlushDriverCachesCHROMIUM() {
gles2::GetGLContext()->FlushDriverCachesCHROMIUM();
}
GLuint GL_APIENTRY GLES2GetLastFlushIdCHROMIUM() {
return gles2::GetGLContext()->GetLastFlushIdCHROMIUM();
}
void GL_APIENTRY GLES2SetActiveURLCHROMIUM(const char* url) {
gles2::GetGLContext()->SetActiveURLCHROMIUM(url);
}
void GL_APIENTRY GLES2ContextVisibilityHintCHROMIUM(GLboolean visibility) {
gles2::GetGLContext()->ContextVisibilityHintCHROMIUM(visibility);
}
GLenum GL_APIENTRY GLES2GetGraphicsResetStatusKHR() {
return gles2::GetGLContext()->GetGraphicsResetStatusKHR();
}
void GL_APIENTRY GLES2BlendBarrierKHR() {
gles2::GetGLContext()->BlendBarrierKHR();
}
void GL_APIENTRY GLES2BindFragDataLocationIndexedEXT(GLuint program,
GLuint colorNumber,
GLuint index,
const char* name) {
gles2::GetGLContext()->BindFragDataLocationIndexedEXT(program, colorNumber,
index, name);
}
void GL_APIENTRY GLES2BindFragDataLocationEXT(GLuint program,
GLuint colorNumber,
const char* name) {
gles2::GetGLContext()->BindFragDataLocationEXT(program, colorNumber, name);
}
GLint GL_APIENTRY GLES2GetFragDataIndexEXT(GLuint program, const char* name) {
return gles2::GetGLContext()->GetFragDataIndexEXT(program, name);
}
void GL_APIENTRY GLES2InitializeDiscardableTextureCHROMIUM(GLuint texture_id) {
gles2::GetGLContext()->InitializeDiscardableTextureCHROMIUM(texture_id);
}
void GL_APIENTRY GLES2UnlockDiscardableTextureCHROMIUM(GLuint texture_id) {
gles2::GetGLContext()->UnlockDiscardableTextureCHROMIUM(texture_id);
}
bool GL_APIENTRY GLES2LockDiscardableTextureCHROMIUM(GLuint texture_id) {
return gles2::GetGLContext()->LockDiscardableTextureCHROMIUM(texture_id);
}
void GL_APIENTRY GLES2WindowRectanglesEXT(GLenum mode,
GLsizei count,
const GLint* box) {
gles2::GetGLContext()->WindowRectanglesEXT(mode, count, box);
}
GLuint GL_APIENTRY GLES2CreateGpuFenceCHROMIUM() {
return gles2::GetGLContext()->CreateGpuFenceCHROMIUM();
}
GLuint GL_APIENTRY GLES2CreateClientGpuFenceCHROMIUM(ClientGpuFence source) {
return gles2::GetGLContext()->CreateClientGpuFenceCHROMIUM(source);
}
void GL_APIENTRY GLES2WaitGpuFenceCHROMIUM(GLuint gpu_fence_id) {
gles2::GetGLContext()->WaitGpuFenceCHROMIUM(gpu_fence_id);
}
void GL_APIENTRY GLES2DestroyGpuFenceCHROMIUM(GLuint gpu_fence_id) {
gles2::GetGLContext()->DestroyGpuFenceCHROMIUM(gpu_fence_id);
}
void GL_APIENTRY
GLES2InvalidateReadbackBufferShadowDataCHROMIUM(GLuint buffer_id) {
gles2::GetGLContext()->InvalidateReadbackBufferShadowDataCHROMIUM(buffer_id);
}
void GL_APIENTRY GLES2FramebufferTextureMultiviewOVR(GLenum target,
GLenum attachment,
GLuint texture,
GLint level,
GLint baseViewIndex,
GLsizei numViews) {
gles2::GetGLContext()->FramebufferTextureMultiviewOVR(
target, attachment, texture, level, baseViewIndex, numViews);
}
void GL_APIENTRY GLES2MaxShaderCompilerThreadsKHR(GLuint count) {
gles2::GetGLContext()->MaxShaderCompilerThreadsKHR(count);
}
GLuint GL_APIENTRY
GLES2CreateAndTexStorage2DSharedImageCHROMIUM(const GLbyte* mailbox) {
return gles2::GetGLContext()->CreateAndTexStorage2DSharedImageCHROMIUM(
mailbox);
}
void GL_APIENTRY GLES2BeginSharedImageAccessDirectCHROMIUM(GLuint texture,
GLenum mode) {
gles2::GetGLContext()->BeginSharedImageAccessDirectCHROMIUM(texture, mode);
}
void GL_APIENTRY GLES2EndSharedImageAccessDirectCHROMIUM(GLuint texture) {
gles2::GetGLContext()->EndSharedImageAccessDirectCHROMIUM(texture);
}
void GL_APIENTRY
GLES2ConvertRGBAToYUVAMailboxesINTERNAL(GLenum planes_yuv_color_space,
GLenum plane_config,
GLenum subsampling,
const GLbyte* mailboxes) {
gles2::GetGLContext()->ConvertRGBAToYUVAMailboxesINTERNAL(
planes_yuv_color_space, plane_config, subsampling, mailboxes);
}
void GL_APIENTRY
GLES2ConvertYUVAMailboxesToRGBINTERNAL(GLint src_x,
GLint src_y,
GLsizei width,
GLsizei height,
GLenum planes_yuv_color_space,
GLenum plane_config,
GLenum subsampling,
const GLbyte* mailboxes) {
gles2::GetGLContext()->ConvertYUVAMailboxesToRGBINTERNAL(
src_x, src_y, width, height, planes_yuv_color_space, plane_config,
subsampling, mailboxes);
}
void GL_APIENTRY
GLES2ConvertYUVAMailboxesToTextureINTERNAL(GLuint texture,
GLenum target,
GLuint internal_format,
GLenum type,
GLint src_x,
GLint src_y,
GLsizei width,
GLsizei height,
GLboolean flip_y,
GLenum planes_yuv_color_space,
GLenum plane_config,
GLenum subsampling,
const GLbyte* mailboxes) {
gles2::GetGLContext()->ConvertYUVAMailboxesToTextureINTERNAL(
texture, target, internal_format, type, src_x, src_y, width, height,
flip_y, planes_yuv_color_space, plane_config, subsampling, mailboxes);
}
void GL_APIENTRY GLES2CopySharedImageINTERNAL(GLint xoffset,
GLint yoffset,
GLint x,
GLint y,
GLsizei width,
GLsizei height,
GLboolean unpack_flip_y,
const GLbyte* mailboxes) {
gles2::GetGLContext()->CopySharedImageINTERNAL(
xoffset, yoffset, x, y, width, height, unpack_flip_y, mailboxes);
}
void GL_APIENTRY
GLES2CopySharedImageToTextureINTERNAL(GLuint texture,
GLenum target,
GLuint internal_format,
GLenum type,
GLint src_x,
GLint src_y,
GLsizei width,
GLsizei height,
GLboolean flip_y,
const GLbyte* src_mailbox) {
gles2::GetGLContext()->CopySharedImageToTextureINTERNAL(
texture, target, internal_format, type, src_x, src_y, width, height,
flip_y, src_mailbox);
}
void GL_APIENTRY
GLES2ReadbackARGBImagePixelsINTERNAL(const GLbyte* mailbox,
const void* dst_color_space,
GLuint dst_color_space_size,
GLuint dst_size,
GLuint dst_width,
GLuint dst_height,
GLuint dst_color_type,
GLuint dst_alpha_type,
GLuint dst_row_bytes,
GLint src_x,
GLint src_y,
GLint plane_index,
void* pixels) {
gles2::GetGLContext()->ReadbackARGBImagePixelsINTERNAL(
mailbox, dst_color_space, dst_color_space_size, dst_size, dst_width,
dst_height, dst_color_type, dst_alpha_type, dst_row_bytes, src_x, src_y,
plane_index, pixels);
}
void GL_APIENTRY GLES2WritePixelsYUVINTERNAL(const GLbyte* mailbox,
GLuint src_size_plane1,
GLuint src_size_plane2,
GLuint src_size_plane3,
GLuint src_size_plane4,
GLuint src_width,
GLuint src_height,
GLuint src_plane_config,
GLuint src_subsampling,
GLuint src_datatype,
GLuint src_row_bytes_plane1,
GLuint src_row_bytes_plane2,
GLuint src_row_bytes_plane3,
GLuint src_row_bytes_plane4,
const void* src_pixels_plane1,
const void* src_pixels_plane2,
const void* src_pixels_plane3,
const void* src_pixels_plane4) {
gles2::GetGLContext()->WritePixelsYUVINTERNAL(
mailbox, src_size_plane1, src_size_plane2, src_size_plane3,
src_size_plane4, src_width, src_height, src_plane_config, src_subsampling,
src_datatype, src_row_bytes_plane1, src_row_bytes_plane2,
src_row_bytes_plane3, src_row_bytes_plane4, src_pixels_plane1,
src_pixels_plane2, src_pixels_plane3, src_pixels_plane4);
}
void GL_APIENTRY GLES2EnableiOES(GLenum target, GLuint index) {
gles2::GetGLContext()->EnableiOES(target, index);
}
void GL_APIENTRY GLES2DisableiOES(GLenum target, GLuint index) {
gles2::GetGLContext()->DisableiOES(target, index);
}
void GL_APIENTRY GLES2BlendEquationiOES(GLuint buf, GLenum mode) {
gles2::GetGLContext()->BlendEquationiOES(buf, mode);
}
void GL_APIENTRY GLES2BlendEquationSeparateiOES(GLuint buf,
GLenum modeRGB,
GLenum modeAlpha) {
gles2::GetGLContext()->BlendEquationSeparateiOES(buf, modeRGB, modeAlpha);
}
void GL_APIENTRY GLES2BlendFunciOES(GLuint buf, GLenum src, GLenum dst) {
gles2::GetGLContext()->BlendFunciOES(buf, src, dst);
}
void GL_APIENTRY GLES2BlendFuncSeparateiOES(GLuint buf,
GLenum srcRGB,
GLenum dstRGB,
GLenum srcAlpha,
GLenum dstAlpha) {
gles2::GetGLContext()->BlendFuncSeparateiOES(buf, srcRGB, dstRGB, srcAlpha,
dstAlpha);
}
void GL_APIENTRY GLES2ColorMaskiOES(GLuint buf,
GLboolean r,
GLboolean g,
GLboolean b,
GLboolean a) {
gles2::GetGLContext()->ColorMaskiOES(buf, r, g, b, a);
}
GLboolean GL_APIENTRY GLES2IsEnablediOES(GLenum target, GLuint index) {
return gles2::GetGLContext()->IsEnablediOES(target, index);
}
void GL_APIENTRY GLES2ProvokingVertexANGLE(GLenum provokeMode) {
gles2::GetGLContext()->ProvokingVertexANGLE(provokeMode);
}
void GL_APIENTRY
GLES2FramebufferMemorylessPixelLocalStorageANGLE(GLint plane,
GLenum internalformat) {
gles2::GetGLContext()->FramebufferMemorylessPixelLocalStorageANGLE(
plane, internalformat);
}
void GL_APIENTRY
GLES2FramebufferTexturePixelLocalStorageANGLE(GLint plane,
GLuint backingtexture,
GLint level,
GLint layer) {
gles2::GetGLContext()->FramebufferTexturePixelLocalStorageANGLE(
plane, backingtexture, level, layer);
}
void GL_APIENTRY
GLES2FramebufferPixelLocalClearValuefvANGLE(GLint plane, const GLfloat* value) {
gles2::GetGLContext()->FramebufferPixelLocalClearValuefvANGLE(plane, value);
}
void GL_APIENTRY
GLES2FramebufferPixelLocalClearValueivANGLE(GLint plane, const GLint* value) {
gles2::GetGLContext()->FramebufferPixelLocalClearValueivANGLE(plane, value);
}
void GL_APIENTRY
GLES2FramebufferPixelLocalClearValueuivANGLE(GLint plane, const GLuint* value) {
gles2::GetGLContext()->FramebufferPixelLocalClearValueuivANGLE(plane, value);
}
void GL_APIENTRY GLES2BeginPixelLocalStorageANGLE(GLsizei count,
const GLenum* loadops) {
gles2::GetGLContext()->BeginPixelLocalStorageANGLE(count, loadops);
}
void GL_APIENTRY GLES2EndPixelLocalStorageANGLE(GLsizei count,
const GLenum* storeops) {
gles2::GetGLContext()->EndPixelLocalStorageANGLE(count, storeops);
}
void GL_APIENTRY GLES2PixelLocalStorageBarrierANGLE() {
gles2::GetGLContext()->PixelLocalStorageBarrierANGLE();
}
void GL_APIENTRY GLES2FramebufferPixelLocalStorageInterruptANGLE() {
gles2::GetGLContext()->FramebufferPixelLocalStorageInterruptANGLE();
}
void GL_APIENTRY GLES2FramebufferPixelLocalStorageRestoreANGLE() {
gles2::GetGLContext()->FramebufferPixelLocalStorageRestoreANGLE();
}
void GL_APIENTRY
GLES2GetFramebufferPixelLocalStorageParameterfvANGLE(GLint plane,
GLenum pname,
GLfloat* params) {
gles2::GetGLContext()->GetFramebufferPixelLocalStorageParameterfvANGLE(
plane, pname, params);
}
void GL_APIENTRY
GLES2GetFramebufferPixelLocalStorageParameterivANGLE(GLint plane,
GLenum pname,
GLint* params) {
gles2::GetGLContext()->GetFramebufferPixelLocalStorageParameterivANGLE(
plane, pname, params);
}
void GL_APIENTRY GLES2ClipControlEXT(GLenum origin, GLenum depth) {
gles2::GetGLContext()->ClipControlEXT(origin, depth);
}
void GL_APIENTRY GLES2PolygonModeANGLE(GLenum face, GLenum mode) {
gles2::GetGLContext()->PolygonModeANGLE(face, mode);
}
void GL_APIENTRY GLES2PolygonOffsetClampEXT(GLfloat factor,
GLfloat units,
GLfloat clamp) {
gles2::GetGLContext()->PolygonOffsetClampEXT(factor, units, clamp);
}
namespace gles2 {
extern const NameToFunc g_gles2_function_table[] = {
{
"glActiveTexture",
reinterpret_cast<GLES2FunctionPointer>(glActiveTexture),
},
{
"glAttachShader",
reinterpret_cast<GLES2FunctionPointer>(glAttachShader),
},
{
"glBindAttribLocation",
reinterpret_cast<GLES2FunctionPointer>(glBindAttribLocation),
},
{
"glBindBuffer",
reinterpret_cast<GLES2FunctionPointer>(glBindBuffer),
},
{
"glBindBufferBase",
reinterpret_cast<GLES2FunctionPointer>(glBindBufferBase),
},
{
"glBindBufferRange",
reinterpret_cast<GLES2FunctionPointer>(glBindBufferRange),
},
{
"glBindFramebuffer",
reinterpret_cast<GLES2FunctionPointer>(glBindFramebuffer),
},
{
"glBindRenderbuffer",
reinterpret_cast<GLES2FunctionPointer>(glBindRenderbuffer),
},
{
"glBindSampler",
reinterpret_cast<GLES2FunctionPointer>(glBindSampler),
},
{
"glBindTexture",
reinterpret_cast<GLES2FunctionPointer>(glBindTexture),
},
{
"glBindTransformFeedback",
reinterpret_cast<GLES2FunctionPointer>(glBindTransformFeedback),
},
{
"glBlendColor",
reinterpret_cast<GLES2FunctionPointer>(glBlendColor),
},
{
"glBlendEquation",
reinterpret_cast<GLES2FunctionPointer>(glBlendEquation),
},
{
"glBlendEquationSeparate",
reinterpret_cast<GLES2FunctionPointer>(glBlendEquationSeparate),
},
{
"glBlendFunc",
reinterpret_cast<GLES2FunctionPointer>(glBlendFunc),
},
{
"glBlendFuncSeparate",
reinterpret_cast<GLES2FunctionPointer>(glBlendFuncSeparate),
},
{
"glBufferData",
reinterpret_cast<GLES2FunctionPointer>(glBufferData),
},
{
"glBufferSubData",
reinterpret_cast<GLES2FunctionPointer>(glBufferSubData),
},
{
"glCheckFramebufferStatus",
reinterpret_cast<GLES2FunctionPointer>(glCheckFramebufferStatus),
},
{
"glClear",
reinterpret_cast<GLES2FunctionPointer>(glClear),
},
{
"glClearBufferfi",
reinterpret_cast<GLES2FunctionPointer>(glClearBufferfi),
},
{
"glClearBufferfv",
reinterpret_cast<GLES2FunctionPointer>(glClearBufferfv),
},
{
"glClearBufferiv",
reinterpret_cast<GLES2FunctionPointer>(glClearBufferiv),
},
{
"glClearBufferuiv",
reinterpret_cast<GLES2FunctionPointer>(glClearBufferuiv),
},
{
"glClearColor",
reinterpret_cast<GLES2FunctionPointer>(glClearColor),
},
{
"glClearDepthf",
reinterpret_cast<GLES2FunctionPointer>(glClearDepthf),
},
{
"glClearStencil",
reinterpret_cast<GLES2FunctionPointer>(glClearStencil),
},
{
"glClientWaitSync",
reinterpret_cast<GLES2FunctionPointer>(glClientWaitSync),
},
{
"glColorMask",
reinterpret_cast<GLES2FunctionPointer>(glColorMask),
},
{
"glCompileShader",
reinterpret_cast<GLES2FunctionPointer>(glCompileShader),
},
{
"glCompressedTexImage2D",
reinterpret_cast<GLES2FunctionPointer>(glCompressedTexImage2D),
},
{
"glCompressedTexSubImage2D",
reinterpret_cast<GLES2FunctionPointer>(glCompressedTexSubImage2D),
},
{
"glCompressedTexImage3D",
reinterpret_cast<GLES2FunctionPointer>(glCompressedTexImage3D),
},
{
"glCompressedTexSubImage3D",
reinterpret_cast<GLES2FunctionPointer>(glCompressedTexSubImage3D),
},
{
"glCopyBufferSubData",
reinterpret_cast<GLES2FunctionPointer>(glCopyBufferSubData),
},
{
"glCopyTexImage2D",
reinterpret_cast<GLES2FunctionPointer>(glCopyTexImage2D),
},
{
"glCopyTexSubImage2D",
reinterpret_cast<GLES2FunctionPointer>(glCopyTexSubImage2D),
},
{
"glCopyTexSubImage3D",
reinterpret_cast<GLES2FunctionPointer>(glCopyTexSubImage3D),
},
{
"glCreateProgram",
reinterpret_cast<GLES2FunctionPointer>(glCreateProgram),
},
{
"glCreateShader",
reinterpret_cast<GLES2FunctionPointer>(glCreateShader),
},
{
"glCullFace",
reinterpret_cast<GLES2FunctionPointer>(glCullFace),
},
{
"glDeleteBuffers",
reinterpret_cast<GLES2FunctionPointer>(glDeleteBuffers),
},
{
"glDeleteFramebuffers",
reinterpret_cast<GLES2FunctionPointer>(glDeleteFramebuffers),
},
{
"glDeleteProgram",
reinterpret_cast<GLES2FunctionPointer>(glDeleteProgram),
},
{
"glDeleteRenderbuffers",
reinterpret_cast<GLES2FunctionPointer>(glDeleteRenderbuffers),
},
{
"glDeleteSamplers",
reinterpret_cast<GLES2FunctionPointer>(glDeleteSamplers),
},
{
"glDeleteSync",
reinterpret_cast<GLES2FunctionPointer>(glDeleteSync),
},
{
"glDeleteShader",
reinterpret_cast<GLES2FunctionPointer>(glDeleteShader),
},
{
"glDeleteTextures",
reinterpret_cast<GLES2FunctionPointer>(glDeleteTextures),
},
{
"glDeleteTransformFeedbacks",
reinterpret_cast<GLES2FunctionPointer>(glDeleteTransformFeedbacks),
},
{
"glDepthFunc",
reinterpret_cast<GLES2FunctionPointer>(glDepthFunc),
},
{
"glDepthMask",
reinterpret_cast<GLES2FunctionPointer>(glDepthMask),
},
{
"glDepthRangef",
reinterpret_cast<GLES2FunctionPointer>(glDepthRangef),
},
{
"glDetachShader",
reinterpret_cast<GLES2FunctionPointer>(glDetachShader),
},
{
"glDisable",
reinterpret_cast<GLES2FunctionPointer>(glDisable),
},
{
"glDisableVertexAttribArray",
reinterpret_cast<GLES2FunctionPointer>(glDisableVertexAttribArray),
},
{
"glDrawArrays",
reinterpret_cast<GLES2FunctionPointer>(glDrawArrays),
},
{
"glDrawElements",
reinterpret_cast<GLES2FunctionPointer>(glDrawElements),
},
{
"glDrawRangeElements",
reinterpret_cast<GLES2FunctionPointer>(glDrawRangeElements),
},
{
"glEnable",
reinterpret_cast<GLES2FunctionPointer>(glEnable),
},
{
"glEnableVertexAttribArray",
reinterpret_cast<GLES2FunctionPointer>(glEnableVertexAttribArray),
},
{
"glFenceSync",
reinterpret_cast<GLES2FunctionPointer>(glFenceSync),
},
{
"glFinish",
reinterpret_cast<GLES2FunctionPointer>(glFinish),
},
{
"glFlush",
reinterpret_cast<GLES2FunctionPointer>(glFlush),
},
{
"glFramebufferRenderbuffer",
reinterpret_cast<GLES2FunctionPointer>(glFramebufferRenderbuffer),
},
{
"glFramebufferTexture2D",
reinterpret_cast<GLES2FunctionPointer>(glFramebufferTexture2D),
},
{
"glFramebufferTextureLayer",
reinterpret_cast<GLES2FunctionPointer>(glFramebufferTextureLayer),
},
{
"glFrontFace",
reinterpret_cast<GLES2FunctionPointer>(glFrontFace),
},
{
"glGenBuffers",
reinterpret_cast<GLES2FunctionPointer>(glGenBuffers),
},
{
"glGenerateMipmap",
reinterpret_cast<GLES2FunctionPointer>(glGenerateMipmap),
},
{
"glGenFramebuffers",
reinterpret_cast<GLES2FunctionPointer>(glGenFramebuffers),
},
{
"glGenRenderbuffers",
reinterpret_cast<GLES2FunctionPointer>(glGenRenderbuffers),
},
{
"glGenSamplers",
reinterpret_cast<GLES2FunctionPointer>(glGenSamplers),
},
{
"glGenTextures",
reinterpret_cast<GLES2FunctionPointer>(glGenTextures),
},
{
"glGenTransformFeedbacks",
reinterpret_cast<GLES2FunctionPointer>(glGenTransformFeedbacks),
},
{
"glGetActiveAttrib",
reinterpret_cast<GLES2FunctionPointer>(glGetActiveAttrib),
},
{
"glGetActiveUniform",
reinterpret_cast<GLES2FunctionPointer>(glGetActiveUniform),
},
{
"glGetActiveUniformBlockiv",
reinterpret_cast<GLES2FunctionPointer>(glGetActiveUniformBlockiv),
},
{
"glGetActiveUniformBlockName",
reinterpret_cast<GLES2FunctionPointer>(glGetActiveUniformBlockName),
},
{
"glGetActiveUniformsiv",
reinterpret_cast<GLES2FunctionPointer>(glGetActiveUniformsiv),
},
{
"glGetAttachedShaders",
reinterpret_cast<GLES2FunctionPointer>(glGetAttachedShaders),
},
{
"glGetAttribLocation",
reinterpret_cast<GLES2FunctionPointer>(glGetAttribLocation),
},
{
"glGetBooleanv",
reinterpret_cast<GLES2FunctionPointer>(glGetBooleanv),
},
{
"glGetBooleani_v",
reinterpret_cast<GLES2FunctionPointer>(glGetBooleani_v),
},
{
"glGetBufferParameteri64v",
reinterpret_cast<GLES2FunctionPointer>(glGetBufferParameteri64v),
},
{
"glGetBufferParameteriv",
reinterpret_cast<GLES2FunctionPointer>(glGetBufferParameteriv),
},
{
"glGetError",
reinterpret_cast<GLES2FunctionPointer>(glGetError),
},
{
"glGetFloatv",
reinterpret_cast<GLES2FunctionPointer>(glGetFloatv),
},
{
"glGetFragDataLocation",
reinterpret_cast<GLES2FunctionPointer>(glGetFragDataLocation),
},
{
"glGetFramebufferAttachmentParameteriv",
reinterpret_cast<GLES2FunctionPointer>(
glGetFramebufferAttachmentParameteriv),
},
{
"glGetInteger64v",
reinterpret_cast<GLES2FunctionPointer>(glGetInteger64v),
},
{
"glGetIntegeri_v",
reinterpret_cast<GLES2FunctionPointer>(glGetIntegeri_v),
},
{
"glGetInteger64i_v",
reinterpret_cast<GLES2FunctionPointer>(glGetInteger64i_v),
},
{
"glGetIntegerv",
reinterpret_cast<GLES2FunctionPointer>(glGetIntegerv),
},
{
"glGetInternalformativ",
reinterpret_cast<GLES2FunctionPointer>(glGetInternalformativ),
},
{
"glGetProgramiv",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramiv),
},
{
"glGetProgramInfoLog",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramInfoLog),
},
{
"glGetRenderbufferParameteriv",
reinterpret_cast<GLES2FunctionPointer>(glGetRenderbufferParameteriv),
},
{
"glGetSamplerParameterfv",
reinterpret_cast<GLES2FunctionPointer>(glGetSamplerParameterfv),
},
{
"glGetSamplerParameteriv",
reinterpret_cast<GLES2FunctionPointer>(glGetSamplerParameteriv),
},
{
"glGetShaderiv",
reinterpret_cast<GLES2FunctionPointer>(glGetShaderiv),
},
{
"glGetShaderInfoLog",
reinterpret_cast<GLES2FunctionPointer>(glGetShaderInfoLog),
},
{
"glGetShaderPrecisionFormat",
reinterpret_cast<GLES2FunctionPointer>(glGetShaderPrecisionFormat),
},
{
"glGetShaderSource",
reinterpret_cast<GLES2FunctionPointer>(glGetShaderSource),
},
{
"glGetString",
reinterpret_cast<GLES2FunctionPointer>(glGetString),
},
{
"glGetStringi",
reinterpret_cast<GLES2FunctionPointer>(glGetStringi),
},
{
"glGetSynciv",
reinterpret_cast<GLES2FunctionPointer>(glGetSynciv),
},
{
"glGetTexParameterfv",
reinterpret_cast<GLES2FunctionPointer>(glGetTexParameterfv),
},
{
"glGetTexParameteriv",
reinterpret_cast<GLES2FunctionPointer>(glGetTexParameteriv),
},
{
"glGetTransformFeedbackVarying",
reinterpret_cast<GLES2FunctionPointer>(glGetTransformFeedbackVarying),
},
{
"glGetUniformBlockIndex",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformBlockIndex),
},
{
"glGetUniformfv",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformfv),
},
{
"glGetUniformiv",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformiv),
},
{
"glGetUniformuiv",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformuiv),
},
{
"glGetUniformIndices",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformIndices),
},
{
"glGetUniformLocation",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformLocation),
},
{
"glGetVertexAttribfv",
reinterpret_cast<GLES2FunctionPointer>(glGetVertexAttribfv),
},
{
"glGetVertexAttribiv",
reinterpret_cast<GLES2FunctionPointer>(glGetVertexAttribiv),
},
{
"glGetVertexAttribIiv",
reinterpret_cast<GLES2FunctionPointer>(glGetVertexAttribIiv),
},
{
"glGetVertexAttribIuiv",
reinterpret_cast<GLES2FunctionPointer>(glGetVertexAttribIuiv),
},
{
"glGetVertexAttribPointerv",
reinterpret_cast<GLES2FunctionPointer>(glGetVertexAttribPointerv),
},
{
"glHint",
reinterpret_cast<GLES2FunctionPointer>(glHint),
},
{
"glInvalidateFramebuffer",
reinterpret_cast<GLES2FunctionPointer>(glInvalidateFramebuffer),
},
{
"glInvalidateSubFramebuffer",
reinterpret_cast<GLES2FunctionPointer>(glInvalidateSubFramebuffer),
},
{
"glIsBuffer",
reinterpret_cast<GLES2FunctionPointer>(glIsBuffer),
},
{
"glIsEnabled",
reinterpret_cast<GLES2FunctionPointer>(glIsEnabled),
},
{
"glIsFramebuffer",
reinterpret_cast<GLES2FunctionPointer>(glIsFramebuffer),
},
{
"glIsProgram",
reinterpret_cast<GLES2FunctionPointer>(glIsProgram),
},
{
"glIsRenderbuffer",
reinterpret_cast<GLES2FunctionPointer>(glIsRenderbuffer),
},
{
"glIsSampler",
reinterpret_cast<GLES2FunctionPointer>(glIsSampler),
},
{
"glIsShader",
reinterpret_cast<GLES2FunctionPointer>(glIsShader),
},
{
"glIsSync",
reinterpret_cast<GLES2FunctionPointer>(glIsSync),
},
{
"glIsTexture",
reinterpret_cast<GLES2FunctionPointer>(glIsTexture),
},
{
"glIsTransformFeedback",
reinterpret_cast<GLES2FunctionPointer>(glIsTransformFeedback),
},
{
"glLineWidth",
reinterpret_cast<GLES2FunctionPointer>(glLineWidth),
},
{
"glLinkProgram",
reinterpret_cast<GLES2FunctionPointer>(glLinkProgram),
},
{
"glPauseTransformFeedback",
reinterpret_cast<GLES2FunctionPointer>(glPauseTransformFeedback),
},
{
"glPixelStorei",
reinterpret_cast<GLES2FunctionPointer>(glPixelStorei),
},
{
"glPolygonOffset",
reinterpret_cast<GLES2FunctionPointer>(glPolygonOffset),
},
{
"glReadBuffer",
reinterpret_cast<GLES2FunctionPointer>(glReadBuffer),
},
{
"glReadPixels",
reinterpret_cast<GLES2FunctionPointer>(glReadPixels),
},
{
"glReleaseShaderCompiler",
reinterpret_cast<GLES2FunctionPointer>(glReleaseShaderCompiler),
},
{
"glRenderbufferStorage",
reinterpret_cast<GLES2FunctionPointer>(glRenderbufferStorage),
},
{
"glResumeTransformFeedback",
reinterpret_cast<GLES2FunctionPointer>(glResumeTransformFeedback),
},
{
"glSampleCoverage",
reinterpret_cast<GLES2FunctionPointer>(glSampleCoverage),
},
{
"glSamplerParameterf",
reinterpret_cast<GLES2FunctionPointer>(glSamplerParameterf),
},
{
"glSamplerParameterfv",
reinterpret_cast<GLES2FunctionPointer>(glSamplerParameterfv),
},
{
"glSamplerParameteri",
reinterpret_cast<GLES2FunctionPointer>(glSamplerParameteri),
},
{
"glSamplerParameteriv",
reinterpret_cast<GLES2FunctionPointer>(glSamplerParameteriv),
},
{
"glScissor",
reinterpret_cast<GLES2FunctionPointer>(glScissor),
},
{
"glShaderBinary",
reinterpret_cast<GLES2FunctionPointer>(glShaderBinary),
},
{
"glShaderSource",
reinterpret_cast<GLES2FunctionPointer>(glShaderSource),
},
{
"glShallowFinishCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glShallowFinishCHROMIUM),
},
{
"glOrderingBarrierCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glOrderingBarrierCHROMIUM),
},
{
"glMultiDrawArraysWEBGL",
reinterpret_cast<GLES2FunctionPointer>(glMultiDrawArraysWEBGL),
},
{
"glMultiDrawArraysInstancedWEBGL",
reinterpret_cast<GLES2FunctionPointer>(glMultiDrawArraysInstancedWEBGL),
},
{
"glMultiDrawArraysInstancedBaseInstanceWEBGL",
reinterpret_cast<GLES2FunctionPointer>(
glMultiDrawArraysInstancedBaseInstanceWEBGL),
},
{
"glMultiDrawElementsWEBGL",
reinterpret_cast<GLES2FunctionPointer>(glMultiDrawElementsWEBGL),
},
{
"glMultiDrawElementsInstancedWEBGL",
reinterpret_cast<GLES2FunctionPointer>(
glMultiDrawElementsInstancedWEBGL),
},
{
"glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL",
reinterpret_cast<GLES2FunctionPointer>(
glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL),
},
{
"glStencilFunc",
reinterpret_cast<GLES2FunctionPointer>(glStencilFunc),
},
{
"glStencilFuncSeparate",
reinterpret_cast<GLES2FunctionPointer>(glStencilFuncSeparate),
},
{
"glStencilMask",
reinterpret_cast<GLES2FunctionPointer>(glStencilMask),
},
{
"glStencilMaskSeparate",
reinterpret_cast<GLES2FunctionPointer>(glStencilMaskSeparate),
},
{
"glStencilOp",
reinterpret_cast<GLES2FunctionPointer>(glStencilOp),
},
{
"glStencilOpSeparate",
reinterpret_cast<GLES2FunctionPointer>(glStencilOpSeparate),
},
{
"glTexImage2D",
reinterpret_cast<GLES2FunctionPointer>(glTexImage2D),
},
{
"glTexImage3D",
reinterpret_cast<GLES2FunctionPointer>(glTexImage3D),
},
{
"glTexParameterf",
reinterpret_cast<GLES2FunctionPointer>(glTexParameterf),
},
{
"glTexParameterfv",
reinterpret_cast<GLES2FunctionPointer>(glTexParameterfv),
},
{
"glTexParameteri",
reinterpret_cast<GLES2FunctionPointer>(glTexParameteri),
},
{
"glTexParameteriv",
reinterpret_cast<GLES2FunctionPointer>(glTexParameteriv),
},
{
"glTexStorage3D",
reinterpret_cast<GLES2FunctionPointer>(glTexStorage3D),
},
{
"glTexSubImage2D",
reinterpret_cast<GLES2FunctionPointer>(glTexSubImage2D),
},
{
"glTexSubImage3D",
reinterpret_cast<GLES2FunctionPointer>(glTexSubImage3D),
},
{
"glTransformFeedbackVaryings",
reinterpret_cast<GLES2FunctionPointer>(glTransformFeedbackVaryings),
},
{
"glUniform1f",
reinterpret_cast<GLES2FunctionPointer>(glUniform1f),
},
{
"glUniform1fv",
reinterpret_cast<GLES2FunctionPointer>(glUniform1fv),
},
{
"glUniform1i",
reinterpret_cast<GLES2FunctionPointer>(glUniform1i),
},
{
"glUniform1iv",
reinterpret_cast<GLES2FunctionPointer>(glUniform1iv),
},
{
"glUniform1ui",
reinterpret_cast<GLES2FunctionPointer>(glUniform1ui),
},
{
"glUniform1uiv",
reinterpret_cast<GLES2FunctionPointer>(glUniform1uiv),
},
{
"glUniform2f",
reinterpret_cast<GLES2FunctionPointer>(glUniform2f),
},
{
"glUniform2fv",
reinterpret_cast<GLES2FunctionPointer>(glUniform2fv),
},
{
"glUniform2i",
reinterpret_cast<GLES2FunctionPointer>(glUniform2i),
},
{
"glUniform2iv",
reinterpret_cast<GLES2FunctionPointer>(glUniform2iv),
},
{
"glUniform2ui",
reinterpret_cast<GLES2FunctionPointer>(glUniform2ui),
},
{
"glUniform2uiv",
reinterpret_cast<GLES2FunctionPointer>(glUniform2uiv),
},
{
"glUniform3f",
reinterpret_cast<GLES2FunctionPointer>(glUniform3f),
},
{
"glUniform3fv",
reinterpret_cast<GLES2FunctionPointer>(glUniform3fv),
},
{
"glUniform3i",
reinterpret_cast<GLES2FunctionPointer>(glUniform3i),
},
{
"glUniform3iv",
reinterpret_cast<GLES2FunctionPointer>(glUniform3iv),
},
{
"glUniform3ui",
reinterpret_cast<GLES2FunctionPointer>(glUniform3ui),
},
{
"glUniform3uiv",
reinterpret_cast<GLES2FunctionPointer>(glUniform3uiv),
},
{
"glUniform4f",
reinterpret_cast<GLES2FunctionPointer>(glUniform4f),
},
{
"glUniform4fv",
reinterpret_cast<GLES2FunctionPointer>(glUniform4fv),
},
{
"glUniform4i",
reinterpret_cast<GLES2FunctionPointer>(glUniform4i),
},
{
"glUniform4iv",
reinterpret_cast<GLES2FunctionPointer>(glUniform4iv),
},
{
"glUniform4ui",
reinterpret_cast<GLES2FunctionPointer>(glUniform4ui),
},
{
"glUniform4uiv",
reinterpret_cast<GLES2FunctionPointer>(glUniform4uiv),
},
{
"glUniformBlockBinding",
reinterpret_cast<GLES2FunctionPointer>(glUniformBlockBinding),
},
{
"glUniformMatrix2fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2fv),
},
{
"glUniformMatrix2x3fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2x3fv),
},
{
"glUniformMatrix2x4fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2x4fv),
},
{
"glUniformMatrix3fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix3fv),
},
{
"glUniformMatrix3x2fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix3x2fv),
},
{
"glUniformMatrix3x4fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix3x4fv),
},
{
"glUniformMatrix4fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix4fv),
},
{
"glUniformMatrix4x2fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix4x2fv),
},
{
"glUniformMatrix4x3fv",
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix4x3fv),
},
{
"glUseProgram",
reinterpret_cast<GLES2FunctionPointer>(glUseProgram),
},
{
"glValidateProgram",
reinterpret_cast<GLES2FunctionPointer>(glValidateProgram),
},
{
"glVertexAttrib1f",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib1f),
},
{
"glVertexAttrib1fv",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib1fv),
},
{
"glVertexAttrib2f",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib2f),
},
{
"glVertexAttrib2fv",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib2fv),
},
{
"glVertexAttrib3f",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib3f),
},
{
"glVertexAttrib3fv",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib3fv),
},
{
"glVertexAttrib4f",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib4f),
},
{
"glVertexAttrib4fv",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttrib4fv),
},
{
"glVertexAttribI4i",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttribI4i),
},
{
"glVertexAttribI4iv",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttribI4iv),
},
{
"glVertexAttribI4ui",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttribI4ui),
},
{
"glVertexAttribI4uiv",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttribI4uiv),
},
{
"glVertexAttribIPointer",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttribIPointer),
},
{
"glVertexAttribPointer",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttribPointer),
},
{
"glViewport",
reinterpret_cast<GLES2FunctionPointer>(glViewport),
},
{
"glWaitSync",
reinterpret_cast<GLES2FunctionPointer>(glWaitSync),
},
{
"glBlitFramebufferCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glBlitFramebufferCHROMIUM),
},
{
"glRenderbufferStorageMultisampleCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glRenderbufferStorageMultisampleCHROMIUM),
},
{
"glRenderbufferStorageMultisampleAdvancedAMD",
reinterpret_cast<GLES2FunctionPointer>(
glRenderbufferStorageMultisampleAdvancedAMD),
},
{
"glRenderbufferStorageMultisampleEXT",
reinterpret_cast<GLES2FunctionPointer>(
glRenderbufferStorageMultisampleEXT),
},
{
"glFramebufferTexture2DMultisampleEXT",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferTexture2DMultisampleEXT),
},
{
"glTexStorage2DEXT",
reinterpret_cast<GLES2FunctionPointer>(glTexStorage2DEXT),
},
{
"glGenQueriesEXT",
reinterpret_cast<GLES2FunctionPointer>(glGenQueriesEXT),
},
{
"glDeleteQueriesEXT",
reinterpret_cast<GLES2FunctionPointer>(glDeleteQueriesEXT),
},
{
"glQueryCounterEXT",
reinterpret_cast<GLES2FunctionPointer>(glQueryCounterEXT),
},
{
"glIsQueryEXT",
reinterpret_cast<GLES2FunctionPointer>(glIsQueryEXT),
},
{
"glBeginQueryEXT",
reinterpret_cast<GLES2FunctionPointer>(glBeginQueryEXT),
},
{
"glBeginTransformFeedback",
reinterpret_cast<GLES2FunctionPointer>(glBeginTransformFeedback),
},
{
"glEndQueryEXT",
reinterpret_cast<GLES2FunctionPointer>(glEndQueryEXT),
},
{
"glEndTransformFeedback",
reinterpret_cast<GLES2FunctionPointer>(glEndTransformFeedback),
},
{
"glGetQueryivEXT",
reinterpret_cast<GLES2FunctionPointer>(glGetQueryivEXT),
},
{
"glGetQueryObjectivEXT",
reinterpret_cast<GLES2FunctionPointer>(glGetQueryObjectivEXT),
},
{
"glGetQueryObjectuivEXT",
reinterpret_cast<GLES2FunctionPointer>(glGetQueryObjectuivEXT),
},
{
"glGetQueryObjecti64vEXT",
reinterpret_cast<GLES2FunctionPointer>(glGetQueryObjecti64vEXT),
},
{
"glGetQueryObjectui64vEXT",
reinterpret_cast<GLES2FunctionPointer>(glGetQueryObjectui64vEXT),
},
{
"glSetDisjointValueSyncCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glSetDisjointValueSyncCHROMIUM),
},
{
"glInsertEventMarkerEXT",
reinterpret_cast<GLES2FunctionPointer>(glInsertEventMarkerEXT),
},
{
"glPushGroupMarkerEXT",
reinterpret_cast<GLES2FunctionPointer>(glPushGroupMarkerEXT),
},
{
"glPopGroupMarkerEXT",
reinterpret_cast<GLES2FunctionPointer>(glPopGroupMarkerEXT),
},
{
"glGenVertexArraysOES",
reinterpret_cast<GLES2FunctionPointer>(glGenVertexArraysOES),
},
{
"glDeleteVertexArraysOES",
reinterpret_cast<GLES2FunctionPointer>(glDeleteVertexArraysOES),
},
{
"glIsVertexArrayOES",
reinterpret_cast<GLES2FunctionPointer>(glIsVertexArrayOES),
},
{
"glBindVertexArrayOES",
reinterpret_cast<GLES2FunctionPointer>(glBindVertexArrayOES),
},
{
"glFramebufferParameteri",
reinterpret_cast<GLES2FunctionPointer>(glFramebufferParameteri),
},
{
"glBindImageTexture",
reinterpret_cast<GLES2FunctionPointer>(glBindImageTexture),
},
{
"glDispatchCompute",
reinterpret_cast<GLES2FunctionPointer>(glDispatchCompute),
},
{
"glDispatchComputeIndirect",
reinterpret_cast<GLES2FunctionPointer>(glDispatchComputeIndirect),
},
{
"glDrawArraysIndirect",
reinterpret_cast<GLES2FunctionPointer>(glDrawArraysIndirect),
},
{
"glDrawElementsIndirect",
reinterpret_cast<GLES2FunctionPointer>(glDrawElementsIndirect),
},
{
"glGetProgramInterfaceiv",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramInterfaceiv),
},
{
"glGetProgramResourceIndex",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramResourceIndex),
},
{
"glGetProgramResourceName",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramResourceName),
},
{
"glGetProgramResourceiv",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramResourceiv),
},
{
"glGetProgramResourceLocation",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramResourceLocation),
},
{
"glMemoryBarrierEXT",
reinterpret_cast<GLES2FunctionPointer>(glMemoryBarrierEXT),
},
{
"glMemoryBarrierByRegion",
reinterpret_cast<GLES2FunctionPointer>(glMemoryBarrierByRegion),
},
{
"glSwapBuffers",
reinterpret_cast<GLES2FunctionPointer>(glSwapBuffers),
},
{
"glGetMaxValueInBufferCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glGetMaxValueInBufferCHROMIUM),
},
{
"glEnableFeatureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glEnableFeatureCHROMIUM),
},
{
"glMapBufferCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glMapBufferCHROMIUM),
},
{
"glUnmapBufferCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glUnmapBufferCHROMIUM),
},
{
"glMapBufferSubDataCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glMapBufferSubDataCHROMIUM),
},
{
"glUnmapBufferSubDataCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glUnmapBufferSubDataCHROMIUM),
},
{
"glMapBufferRange",
reinterpret_cast<GLES2FunctionPointer>(glMapBufferRange),
},
{
"glUnmapBuffer",
reinterpret_cast<GLES2FunctionPointer>(glUnmapBuffer),
},
{
"glFlushMappedBufferRange",
reinterpret_cast<GLES2FunctionPointer>(glFlushMappedBufferRange),
},
{
"glMapTexSubImage2DCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glMapTexSubImage2DCHROMIUM),
},
{
"glUnmapTexSubImage2DCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glUnmapTexSubImage2DCHROMIUM),
},
{
"glResizeCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glResizeCHROMIUM),
},
{
"glGetRequestableExtensionsCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glGetRequestableExtensionsCHROMIUM),
},
{
"glRequestExtensionCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glRequestExtensionCHROMIUM),
},
{
"glGetProgramInfoCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glGetProgramInfoCHROMIUM),
},
{
"glGetUniformBlocksCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformBlocksCHROMIUM),
},
{
"glGetTransformFeedbackVaryingsCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glGetTransformFeedbackVaryingsCHROMIUM),
},
{
"glGetUniformsES3CHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glGetUniformsES3CHROMIUM),
},
{
"glDescheduleUntilFinishedCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glDescheduleUntilFinishedCHROMIUM),
},
{
"glGetTranslatedShaderSourceANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glGetTranslatedShaderSourceANGLE),
},
{
"glCopyTextureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glCopyTextureCHROMIUM),
},
{
"glCopySubTextureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glCopySubTextureCHROMIUM),
},
{
"glDrawArraysInstancedANGLE",
reinterpret_cast<GLES2FunctionPointer>(glDrawArraysInstancedANGLE),
},
{
"glDrawArraysInstancedBaseInstanceANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glDrawArraysInstancedBaseInstanceANGLE),
},
{
"glDrawElementsInstancedANGLE",
reinterpret_cast<GLES2FunctionPointer>(glDrawElementsInstancedANGLE),
},
{
"glDrawElementsInstancedBaseVertexBaseInstanceANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glDrawElementsInstancedBaseVertexBaseInstanceANGLE),
},
{
"glVertexAttribDivisorANGLE",
reinterpret_cast<GLES2FunctionPointer>(glVertexAttribDivisorANGLE),
},
{
"glProduceTextureDirectCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glProduceTextureDirectCHROMIUM),
},
{
"glCreateAndConsumeTextureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glCreateAndConsumeTextureCHROMIUM),
},
{
"glBindUniformLocationCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glBindUniformLocationCHROMIUM),
},
{
"glTraceBeginCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glTraceBeginCHROMIUM),
},
{
"glTraceEndCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glTraceEndCHROMIUM),
},
{
"glDiscardFramebufferEXT",
reinterpret_cast<GLES2FunctionPointer>(glDiscardFramebufferEXT),
},
{
"glLoseContextCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glLoseContextCHROMIUM),
},
{
"glDrawBuffersEXT",
reinterpret_cast<GLES2FunctionPointer>(glDrawBuffersEXT),
},
{
"glDiscardBackbufferCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glDiscardBackbufferCHROMIUM),
},
{
"glFlushDriverCachesCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glFlushDriverCachesCHROMIUM),
},
{
"glGetLastFlushIdCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glGetLastFlushIdCHROMIUM),
},
{
"glSetActiveURLCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glSetActiveURLCHROMIUM),
},
{
"glContextVisibilityHintCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glContextVisibilityHintCHROMIUM),
},
{
"glGetGraphicsResetStatusKHR",
reinterpret_cast<GLES2FunctionPointer>(glGetGraphicsResetStatusKHR),
},
{
"glBlendBarrierKHR",
reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR),
},
{
"glBindFragDataLocationIndexedEXT",
reinterpret_cast<GLES2FunctionPointer>(
glBindFragDataLocationIndexedEXT),
},
{
"glBindFragDataLocationEXT",
reinterpret_cast<GLES2FunctionPointer>(glBindFragDataLocationEXT),
},
{
"glGetFragDataIndexEXT",
reinterpret_cast<GLES2FunctionPointer>(glGetFragDataIndexEXT),
},
{
"glInitializeDiscardableTextureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glInitializeDiscardableTextureCHROMIUM),
},
{
"glUnlockDiscardableTextureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glUnlockDiscardableTextureCHROMIUM),
},
{
"glLockDiscardableTextureCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glLockDiscardableTextureCHROMIUM),
},
{
"glWindowRectanglesEXT",
reinterpret_cast<GLES2FunctionPointer>(glWindowRectanglesEXT),
},
{
"glCreateGpuFenceCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glCreateGpuFenceCHROMIUM),
},
{
"glCreateClientGpuFenceCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glCreateClientGpuFenceCHROMIUM),
},
{
"glWaitGpuFenceCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glWaitGpuFenceCHROMIUM),
},
{
"glDestroyGpuFenceCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glDestroyGpuFenceCHROMIUM),
},
{
"glInvalidateReadbackBufferShadowDataCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glInvalidateReadbackBufferShadowDataCHROMIUM),
},
{
"glFramebufferTextureMultiviewOVR",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferTextureMultiviewOVR),
},
{
"glMaxShaderCompilerThreadsKHR",
reinterpret_cast<GLES2FunctionPointer>(glMaxShaderCompilerThreadsKHR),
},
{
"glCreateAndTexStorage2DSharedImageCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glCreateAndTexStorage2DSharedImageCHROMIUM),
},
{
"glBeginSharedImageAccessDirectCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glBeginSharedImageAccessDirectCHROMIUM),
},
{
"glEndSharedImageAccessDirectCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(
glEndSharedImageAccessDirectCHROMIUM),
},
{
"glConvertRGBAToYUVAMailboxesINTERNAL",
reinterpret_cast<GLES2FunctionPointer>(
glConvertRGBAToYUVAMailboxesINTERNAL),
},
{
"glConvertYUVAMailboxesToRGBINTERNAL",
reinterpret_cast<GLES2FunctionPointer>(
glConvertYUVAMailboxesToRGBINTERNAL),
},
{
"glConvertYUVAMailboxesToTextureINTERNAL",
reinterpret_cast<GLES2FunctionPointer>(
glConvertYUVAMailboxesToTextureINTERNAL),
},
{
"glCopySharedImageINTERNAL",
reinterpret_cast<GLES2FunctionPointer>(glCopySharedImageINTERNAL),
},
{
"glCopySharedImageToTextureINTERNAL",
reinterpret_cast<GLES2FunctionPointer>(
glCopySharedImageToTextureINTERNAL),
},
{
"glReadbackARGBImagePixelsINTERNAL",
reinterpret_cast<GLES2FunctionPointer>(
glReadbackARGBImagePixelsINTERNAL),
},
{
"glWritePixelsYUVINTERNAL",
reinterpret_cast<GLES2FunctionPointer>(glWritePixelsYUVINTERNAL),
},
{
"glEnableiOES",
reinterpret_cast<GLES2FunctionPointer>(glEnableiOES),
},
{
"glDisableiOES",
reinterpret_cast<GLES2FunctionPointer>(glDisableiOES),
},
{
"glBlendEquationiOES",
reinterpret_cast<GLES2FunctionPointer>(glBlendEquationiOES),
},
{
"glBlendEquationSeparateiOES",
reinterpret_cast<GLES2FunctionPointer>(glBlendEquationSeparateiOES),
},
{
"glBlendFunciOES",
reinterpret_cast<GLES2FunctionPointer>(glBlendFunciOES),
},
{
"glBlendFuncSeparateiOES",
reinterpret_cast<GLES2FunctionPointer>(glBlendFuncSeparateiOES),
},
{
"glColorMaskiOES",
reinterpret_cast<GLES2FunctionPointer>(glColorMaskiOES),
},
{
"glIsEnablediOES",
reinterpret_cast<GLES2FunctionPointer>(glIsEnablediOES),
},
{
"glProvokingVertexANGLE",
reinterpret_cast<GLES2FunctionPointer>(glProvokingVertexANGLE),
},
{
"glFramebufferMemorylessPixelLocalStorageANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferMemorylessPixelLocalStorageANGLE),
},
{
"glFramebufferTexturePixelLocalStorageANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferTexturePixelLocalStorageANGLE),
},
{
"glFramebufferPixelLocalClearValuefvANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferPixelLocalClearValuefvANGLE),
},
{
"glFramebufferPixelLocalClearValueivANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferPixelLocalClearValueivANGLE),
},
{
"glFramebufferPixelLocalClearValueuivANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferPixelLocalClearValueuivANGLE),
},
{
"glBeginPixelLocalStorageANGLE",
reinterpret_cast<GLES2FunctionPointer>(glBeginPixelLocalStorageANGLE),
},
{
"glEndPixelLocalStorageANGLE",
reinterpret_cast<GLES2FunctionPointer>(glEndPixelLocalStorageANGLE),
},
{
"glPixelLocalStorageBarrierANGLE",
reinterpret_cast<GLES2FunctionPointer>(glPixelLocalStorageBarrierANGLE),
},
{
"glFramebufferPixelLocalStorageInterruptANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferPixelLocalStorageInterruptANGLE),
},
{
"glFramebufferPixelLocalStorageRestoreANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glFramebufferPixelLocalStorageRestoreANGLE),
},
{
"glGetFramebufferPixelLocalStorageParameterfvANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glGetFramebufferPixelLocalStorageParameterfvANGLE),
},
{
"glGetFramebufferPixelLocalStorageParameterivANGLE",
reinterpret_cast<GLES2FunctionPointer>(
glGetFramebufferPixelLocalStorageParameterivANGLE),
},
{
"glClipControlEXT",
reinterpret_cast<GLES2FunctionPointer>(glClipControlEXT),
},
{
"glPolygonModeANGLE",
reinterpret_cast<GLES2FunctionPointer>(glPolygonModeANGLE),
},
{
"glPolygonOffsetClampEXT",
reinterpret_cast<GLES2FunctionPointer>(glPolygonOffsetClampEXT),
},
{
nullptr,
nullptr,
},
};
} // namespace gles2
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
|