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
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h"
#include <algorithm>
#include <memory>
#include <string>
#include <string_view>
#include <utility>
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/notimplemented.h"
#include "base/strings/string_split.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "gpu/command_buffer/service/command_buffer_service.h"
#include "gpu/command_buffer/service/decoder_client.h"
#include "gpu/command_buffer/service/feature_info.h"
#include "gpu/command_buffer/service/gl_utils.h"
#include "gpu/command_buffer/service/gles2_external_framebuffer.h"
#include "gpu/command_buffer/service/gpu_fence_manager.h"
#include "gpu/command_buffer/service/gpu_tracer.h"
#include "gpu/command_buffer/service/multi_draw_manager.h"
#include "gpu/command_buffer/service/passthrough_discardable_manager.h"
#include "gpu/command_buffer/service/passthrough_program_cache.h"
#include "gpu/command_buffer/service/program_cache.h"
#include "gpu/command_buffer/service/service_utils.h"
#include "gpu/command_buffer/service/shared_image/shared_image_manager.h"
#include "gpu/command_buffer/service/shared_image/shared_image_representation.h"
#include "gpu/config/gpu_finch_features.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_utils.h"
#include "ui/gl/gl_version_info.h"
#include "ui/gl/gpu_switching_manager.h"
#include "ui/gl/init/gl_factory.h"
#include "ui/gl/progress_reporter.h"
#include "ui/gl/scoped_make_current.h"
#if BUILDFLAG(IS_WIN)
#include "gpu/command_buffer/service/shared_image/d3d_image_backing_factory.h"
#endif // BUILDFLAG(IS_WIN)
namespace gpu {
namespace gles2 {
namespace {
GLenum GetterForTextureTarget(GLenum target) {
switch (target) {
case GL_TEXTURE_2D:
return GL_TEXTURE_BINDING_2D;
case GL_TEXTURE_EXTERNAL_OES:
return GL_TEXTURE_BINDING_EXTERNAL_OES;
case GL_TEXTURE_RECTANGLE_ANGLE:
return GL_TEXTURE_BINDING_RECTANGLE_ANGLE;
default:
// Other targets not currently used.
NOTIMPLEMENTED();
return GL_TEXTURE_2D;
}
}
class ScopedFramebufferBindingReset {
public:
ScopedFramebufferBindingReset(gl::GLApi* api,
bool supports_separate_fbo_bindings)
: api_(api),
supports_separate_fbo_bindings_(supports_separate_fbo_bindings),
draw_framebuffer_(0),
read_framebuffer_(0) {
if (supports_separate_fbo_bindings_) {
api_->glGetIntegervFn(GL_DRAW_FRAMEBUFFER_BINDING, &draw_framebuffer_);
api_->glGetIntegervFn(GL_READ_FRAMEBUFFER_BINDING, &read_framebuffer_);
} else {
api_->glGetIntegervFn(GL_FRAMEBUFFER_BINDING, &draw_framebuffer_);
}
}
~ScopedFramebufferBindingReset() {
if (supports_separate_fbo_bindings_) {
api_->glBindFramebufferEXTFn(GL_DRAW_FRAMEBUFFER, draw_framebuffer_);
api_->glBindFramebufferEXTFn(GL_READ_FRAMEBUFFER, read_framebuffer_);
} else {
api_->glBindFramebufferEXTFn(GL_FRAMEBUFFER, draw_framebuffer_);
}
}
private:
raw_ptr<gl::GLApi> api_;
bool supports_separate_fbo_bindings_;
GLint draw_framebuffer_;
GLint read_framebuffer_;
};
class ScopedTextureBindingReset {
public:
// |texture_target| only supports GL_TEXTURE_2D, GL_TEXTURE_EXTERNAL_OES, and
// GL_TEXTURE_RECTANGLE_ANGLE.
ScopedTextureBindingReset(gl::GLApi* api, GLenum texture_target)
: api_(api), texture_target_(texture_target), texture_(0) {
api_->glGetIntegervFn(GetterForTextureTarget(texture_target_), &texture_);
}
~ScopedTextureBindingReset() {
api_->glBindTextureFn(texture_target_, texture_);
}
private:
raw_ptr<gl::GLApi> api_;
GLenum texture_target_;
GLint texture_;
};
class ScopedClearColorReset {
public:
explicit ScopedClearColorReset(gl::GLApi* api) : api_(api) {
api_->glGetFloatvFn(GL_COLOR_CLEAR_VALUE, clear_color_);
}
~ScopedClearColorReset() {
api_->glClearColorFn(clear_color_[0], clear_color_[1], clear_color_[2],
clear_color_[3]);
}
private:
raw_ptr<gl::GLApi> api_;
GLfloat clear_color_[4];
};
// Reset the color mask for buffer zero only.
class ScopedColorMaskZeroReset {
public:
explicit ScopedColorMaskZeroReset(gl::GLApi* api,
bool oes_draw_buffers_indexed)
: api_(api), oes_draw_buffers_indexed_(oes_draw_buffers_indexed) {
api_->glGetBooleanvFn(GL_COLOR_WRITEMASK, color_mask_);
}
~ScopedColorMaskZeroReset() {
if (oes_draw_buffers_indexed_) {
api_->glColorMaskiOESFn(0, color_mask_[0], color_mask_[1], color_mask_[2],
color_mask_[3]);
} else {
api_->glColorMaskFn(color_mask_[0], color_mask_[1], color_mask_[2],
color_mask_[3]);
}
}
private:
raw_ptr<gl::GLApi> api_;
const bool oes_draw_buffers_indexed_;
// The color mask, or the color mask of buffer zero, if
// OES_draw_buffers_indexed is enabled.
GLboolean color_mask_[4];
};
class ScopedScissorTestReset {
public:
explicit ScopedScissorTestReset(gl::GLApi* api) : api_(api) {
api_->glGetBooleanvFn(GL_SCISSOR_TEST, &scissor_test_);
}
~ScopedScissorTestReset() {
if (scissor_test_)
api_->glEnableFn(GL_SCISSOR_TEST);
else
api_->glDisableFn(GL_SCISSOR_TEST);
}
private:
raw_ptr<gl::GLApi> api_;
GLboolean scissor_test_;
};
template <typename ClientType, typename ServiceType, typename DeleteFunction>
void DeleteServiceObjects(ClientServiceMap<ClientType, ServiceType>* id_map,
bool have_context,
DeleteFunction delete_function) {
if (have_context) {
id_map->ForEach(delete_function);
}
id_map->Clear();
}
template <typename ClientType, typename ServiceType, typename ResultType>
bool GetClientID(const ClientServiceMap<ClientType, ServiceType>* map,
ResultType service_id,
ResultType* result) {
ClientType client_id = 0;
if (!map->GetClientID(static_cast<ServiceType>(service_id), &client_id)) {
return false;
}
*result = static_cast<ResultType>(client_id);
return true;
}
void RequestExtensions(gl::GLApi* api,
const gfx::ExtensionSet& requestable_extensions,
const char* const* extensions_to_request,
size_t count) {
for (size_t i = 0; i < count; i++) {
if (gfx::HasExtension(requestable_extensions, extensions_to_request[i])) {
// Request the intersection of the two sets
api->glRequestExtensionANGLEFn(extensions_to_request[i]);
}
}
}
void GL_APIENTRY PassthroughGLDebugMessageCallback(GLenum source,
GLenum type,
GLuint id,
GLenum severity,
GLsizei length,
const GLchar* message,
const GLvoid* user_param) {
DCHECK(user_param != nullptr);
GLES2DecoderPassthroughImpl* command_decoder =
static_cast<GLES2DecoderPassthroughImpl*>(const_cast<void*>(user_param));
command_decoder->OnDebugMessage(source, type, id, severity, length, message);
LogGLDebugMessage(source, type, id, severity, length, message,
command_decoder->GetLogger());
}
GLsizeiptr GL_APIENTRY
PassthroughGLBlobCacheGetCallback(const void* key,
GLsizeiptr key_size,
void* value,
GLsizeiptr value_size,
const void* user_param) {
DCHECK(user_param != nullptr);
GLES2DecoderPassthroughImpl* command_decoder =
static_cast<GLES2DecoderPassthroughImpl*>(const_cast<void*>(user_param));
return command_decoder->BlobCacheGet(key, key_size, value, value_size);
}
void GL_APIENTRY PassthroughGLBlobCacheSetCallback(const void* key,
GLsizeiptr key_size,
const void* value,
GLsizeiptr value_size,
const void* user_param) {
DCHECK(user_param != nullptr);
GLES2DecoderPassthroughImpl* command_decoder =
static_cast<GLES2DecoderPassthroughImpl*>(const_cast<void*>(user_param));
command_decoder->BlobCacheSet(key, key_size, value, value_size);
}
void RunCallbacks(std::vector<base::OnceClosure> callbacks) {
for (base::OnceClosure& callback : callbacks) {
std::move(callback).Run();
}
}
// Converts texture targets to texture binding types. Does not validate the
// input.
GLenum TextureTargetToTextureType(GLenum texture_target) {
switch (texture_target) {
case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
return GL_TEXTURE_CUBE_MAP;
default:
return texture_target;
}
}
void UpdateBoundTexturePassthroughSize(gl::GLApi* api,
TexturePassthrough* texture) {
GLint texture_memory_size = 0;
api->glGetTexParameterivFn(texture->target(), GL_MEMORY_SIZE_ANGLE,
&texture_memory_size);
texture->SetEstimatedSize(texture_memory_size);
}
void ReturnProgramInfoData(DecoderClient* client,
const std::vector<uint8_t>& info,
GLES2ReturnDataType type,
uint32_t program) {
// Limit the data size in order not to block the IO threads too long.
// https://docs.google.com/document/d/1qEfU0lAkeZ8lU06qtxv7ENGxRxExxztXu1LhIDNGqtU/edit?disco=AAAACksORlU
constexpr static size_t kMaxDataSize = 8 * 1024 * 1024;
if (info.size() > kMaxDataSize)
return;
std::vector<uint8_t> return_data;
return_data.resize(sizeof(cmds::GLES2ReturnProgramInfo) + info.size());
auto* return_program_info =
reinterpret_cast<cmds::GLES2ReturnProgramInfo*>(return_data.data());
return_program_info->return_data_header.return_data_type = type;
return_program_info->program_client_id = program;
memcpy(return_program_info->deserialized_buffer, info.data(), info.size());
client->HandleReturnData(
base::span<uint8_t>(return_data.data(), return_data.size()));
}
} // anonymous namespace
GLES2DecoderPassthroughImpl::ScopedPixelLocalStorageInterrupt::
ScopedPixelLocalStorageInterrupt(const GLES2DecoderPassthroughImpl* impl)
: impl_(impl) {
if (impl_->has_activated_pixel_local_storage_) {
impl_->api()->glFramebufferPixelLocalStorageInterruptANGLEFn();
}
}
GLES2DecoderPassthroughImpl::ScopedPixelLocalStorageInterrupt::
~ScopedPixelLocalStorageInterrupt() {
if (impl_->has_activated_pixel_local_storage_) {
impl_->api()->glFramebufferPixelLocalStorageRestoreANGLEFn();
}
}
PassthroughResources::PassthroughResources() : texture_object_map(nullptr) {}
PassthroughResources::~PassthroughResources() = default;
void PassthroughResources::SuspendSharedImageAccessIfNeeded() {
for (auto& [texture_id, shared_image_data] : texture_shared_image_map) {
shared_image_data.SuspendAccessIfNeeded();
}
}
bool PassthroughResources::ResumeSharedImageAccessIfNeeded(gl::GLApi* api) {
bool success = true;
for (auto& [texture_id, shared_image_data] : texture_shared_image_map) {
if (!shared_image_data.ResumeAccessIfNeeded(api)) {
success = false;
}
}
return success;
}
void PassthroughResources::Destroy(gl::GLApi* api,
gl::ProgressReporter* progress_reporter) {
bool have_context = !!api;
// Only delete textures that are not referenced by a TexturePassthrough
// object, they handle their own deletion once all references are lost
DeleteServiceObjects(
&texture_id_map, have_context,
[this, api, progress_reporter](GLuint client_id, GLuint texture) {
if (!texture_object_map.HasClientID(client_id)) {
api->glDeleteTexturesFn(1, &texture);
if (progress_reporter) {
progress_reporter->ReportProgress();
}
}
});
DeleteServiceObjects(
&buffer_id_map, have_context,
[api, progress_reporter](GLuint client_id, GLuint buffer) {
api->glDeleteBuffersARBFn(1, &buffer);
if (progress_reporter) {
progress_reporter->ReportProgress();
}
});
DeleteServiceObjects(
&renderbuffer_id_map, have_context,
[api, progress_reporter](GLuint client_id, GLuint renderbuffer) {
api->glDeleteRenderbuffersEXTFn(1, &renderbuffer);
if (progress_reporter) {
progress_reporter->ReportProgress();
}
});
DeleteServiceObjects(&sampler_id_map, have_context,
[api](GLuint client_id, GLuint sampler) {
api->glDeleteSamplersFn(1, &sampler);
});
DeleteServiceObjects(
&program_id_map, have_context,
[api, progress_reporter](GLuint client_id, GLuint program) {
api->glDeleteProgramFn(program);
if (progress_reporter) {
progress_reporter->ReportProgress();
}
});
DeleteServiceObjects(&shader_id_map, have_context,
[api](GLuint client_id, GLuint shader) {
api->glDeleteShaderFn(shader);
});
DeleteServiceObjects(&sync_id_map, have_context,
[api](GLuint client_id, uintptr_t sync) {
api->glDeleteSyncFn(reinterpret_cast<GLsync>(sync));
});
if (!have_context) {
texture_object_map.ForEach(
[](GLuint client_id, scoped_refptr<TexturePassthrough> texture) {
texture->MarkContextLost();
});
for (auto& pair : texture_shared_image_map) {
pair.second.representation()->OnContextLost();
}
}
texture_object_map.Clear();
texture_shared_image_map.clear();
}
PassthroughResources::SharedImageData::SharedImageData() = default;
PassthroughResources::SharedImageData::SharedImageData(
const GLES2DecoderPassthroughImpl* impl,
std::unique_ptr<GLTexturePassthroughImageRepresentation> representation)
: representation_(std::move(representation)) {
DCHECK(representation_);
// Note, that ideally we could defer clear till BeginAccess, but there is no
// enforcement that will require clients to call Begin/End access.
EnsureClear(impl);
}
PassthroughResources::SharedImageData::SharedImageData(
SharedImageData&& other) = default;
PassthroughResources::SharedImageData::~SharedImageData() = default;
PassthroughResources::SharedImageData&
PassthroughResources::SharedImageData::operator=(SharedImageData&& other) {
scoped_access_ = std::move(other.scoped_access_);
access_mode_ = std::move(other.access_mode_);
other.access_mode_.reset();
representation_ = std::move(other.representation_);
return *this;
}
void PassthroughResources::SharedImageData::EnsureClear(
const GLES2DecoderPassthroughImpl* impl) {
// To avoid unnessary overhead we don't enable robust initialization on shared
// gl context where all shared images are created, so we clear image here if
// necessary.
if (!representation_->IsCleared()) {
// Allow uncleared access as we're going to clear the image.
auto scoped_access = representation_->BeginScopedAccess(
GL_SHARED_IMAGE_ACCESS_MODE_READWRITE_CHROMIUM,
SharedImageRepresentation::AllowUnclearedAccess::kYes);
if (!scoped_access)
return;
auto texture = representation_->GetTexturePassthrough();
const bool use_oes_draw_buffers_indexed =
impl->features().oes_draw_buffers_indexed;
// Back up all state we are about to change.
gl::GLApi* api = impl->api();
GLES2DecoderPassthroughImpl::ScopedPixelLocalStorageInterrupt
scoped_pls_interrupt(impl);
ScopedFramebufferBindingReset fbo_reset(
api, false /* supports_seperate_fbo_bindings */);
ScopedTextureBindingReset texture_reset(api, texture->target());
ScopedClearColorReset clear_color_reset(api);
ScopedColorMaskZeroReset color_mask_reset(api,
use_oes_draw_buffers_indexed);
ScopedScissorTestReset scissor_test_reset(api);
// Generate a new framebuffer and bind the shared image's uncleared texture
// to it.
GLuint fbo = 0;
api->glGenFramebuffersEXTFn(1, &fbo);
api->glBindFramebufferEXTFn(GL_FRAMEBUFFER, fbo);
api->glBindTextureFn(texture->target(), texture->service_id());
api->glFramebufferTexture2DEXTFn(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
texture->target(), texture->service_id(),
0);
// Clear the bound framebuffer.
api->glClearColorFn(0, 0, 0, 0);
if (use_oes_draw_buffers_indexed)
api->glColorMaskiOESFn(0, true, true, true, true);
else
api->glColorMaskFn(true, true, true, true);
api->glDisableFn(GL_SCISSOR_TEST);
api->glClearFn(GL_COLOR_BUFFER_BIT);
// Delete the generated framebuffer.
api->glFramebufferTexture2DEXTFn(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
texture->target(), 0, 0);
api->glDeleteFramebuffersEXTFn(1, &fbo);
// Mark the shared image as cleared.
representation_->SetCleared();
}
}
bool PassthroughResources::SharedImageData::BeginAccess(GLenum mode,
gl::GLApi* api) {
DCHECK(!is_being_accessed());
// The image should have been cleared already when we created the texture if
// necessary.
scoped_access_ = representation_->BeginScopedAccess(
mode, SharedImageRepresentation::AllowUnclearedAccess::kNo);
if (scoped_access_) {
access_mode_.emplace(mode);
return true;
}
return false;
}
void PassthroughResources::SharedImageData::EndAccess() {
DCHECK(is_being_accessed());
scoped_access_.reset();
access_mode_.reset();
}
bool PassthroughResources::SharedImageData::ResumeAccessIfNeeded(
gl::GLApi* api) {
// Do not resume access if BeginAccess was never called or if a scoped access
// is already present.
if (!is_being_accessed() || scoped_access_) {
return true;
}
scoped_access_ = representation_->BeginScopedAccess(
access_mode_.value(),
SharedImageRepresentation::AllowUnclearedAccess::kNo);
return !!scoped_access_;
}
void PassthroughResources::SharedImageData::SuspendAccessIfNeeded() {
// Suspend access if shared image is being accessed and doesn't support
// concurrent read access on other clients or devices.
if (is_being_accessed() &&
representation_->NeedsSuspendAccessForDXGIKeyedMutex()) {
scoped_access_.reset();
}
}
GLES2DecoderPassthroughImpl::PendingQuery::PendingQuery() = default;
GLES2DecoderPassthroughImpl::PendingQuery::~PendingQuery() {
// Run all callbacks when a query is destroyed even if it did not complete.
// This avoids leaks due to outstandsing callbacks.
RunCallbacks(std::move(callbacks));
}
GLES2DecoderPassthroughImpl::PendingQuery::PendingQuery(PendingQuery&&) =
default;
GLES2DecoderPassthroughImpl::PendingQuery&
GLES2DecoderPassthroughImpl::PendingQuery::operator=(PendingQuery&&) = default;
GLES2DecoderPassthroughImpl::ActiveQuery::ActiveQuery() = default;
GLES2DecoderPassthroughImpl::ActiveQuery::~ActiveQuery() = default;
GLES2DecoderPassthroughImpl::ActiveQuery::ActiveQuery(ActiveQuery&&) = default;
GLES2DecoderPassthroughImpl::ActiveQuery&
GLES2DecoderPassthroughImpl::ActiveQuery::operator=(ActiveQuery&&) = default;
GLES2DecoderPassthroughImpl::BoundTexture::BoundTexture() = default;
GLES2DecoderPassthroughImpl::BoundTexture::~BoundTexture() = default;
GLES2DecoderPassthroughImpl::BoundTexture::BoundTexture(const BoundTexture&) =
default;
GLES2DecoderPassthroughImpl::BoundTexture::BoundTexture(BoundTexture&&) =
default;
GLES2DecoderPassthroughImpl::BoundTexture&
GLES2DecoderPassthroughImpl::BoundTexture::operator=(const BoundTexture&) =
default;
GLES2DecoderPassthroughImpl::BoundTexture&
GLES2DecoderPassthroughImpl::BoundTexture::operator=(BoundTexture&&) = default;
GLES2DecoderPassthroughImpl::PendingReadPixels::PendingReadPixels() = default;
GLES2DecoderPassthroughImpl::PendingReadPixels::~PendingReadPixels() = default;
GLES2DecoderPassthroughImpl::PendingReadPixels::PendingReadPixels(
PendingReadPixels&&) = default;
GLES2DecoderPassthroughImpl::PendingReadPixels&
GLES2DecoderPassthroughImpl::PendingReadPixels::operator=(PendingReadPixels&&) =
default;
GLES2DecoderPassthroughImpl::BufferShadowUpdate::BufferShadowUpdate() = default;
GLES2DecoderPassthroughImpl::BufferShadowUpdate::~BufferShadowUpdate() =
default;
GLES2DecoderPassthroughImpl::BufferShadowUpdate::BufferShadowUpdate(
BufferShadowUpdate&&) = default;
GLES2DecoderPassthroughImpl::BufferShadowUpdate&
GLES2DecoderPassthroughImpl::BufferShadowUpdate::operator=(
BufferShadowUpdate&&) = default;
GLES2DecoderPassthroughImpl::EmulatedDefaultFramebuffer::
EmulatedDefaultFramebuffer(const GLES2DecoderPassthroughImpl* impl)
: impl_(impl) {}
GLES2DecoderPassthroughImpl::EmulatedDefaultFramebuffer::
~EmulatedDefaultFramebuffer() = default;
bool GLES2DecoderPassthroughImpl::EmulatedDefaultFramebuffer::Initialize(
const gfx::Size& size) {
DCHECK(!size.IsEmpty());
ScopedPixelLocalStorageInterrupt scoped_pls_interrupt(impl_);
ScopedFramebufferBindingReset scoped_fbo_reset(
api(), impl_->supports_separate_fbo_bindings_);
ScopedTextureBindingReset scoped_texture_reset(api(), GL_TEXTURE_2D);
api()->glGenFramebuffersEXTFn(1, &framebuffer_service_id);
api()->glBindFramebufferEXTFn(GL_FRAMEBUFFER, framebuffer_service_id);
const auto format = impl_->emulated_default_framebuffer_format_;
GLuint color_buffer_texture = 0;
api()->glGenTexturesFn(1, &color_buffer_texture);
api()->glBindTextureFn(GL_TEXTURE_2D, color_buffer_texture);
api()->glTexParameteriFn(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
api()->glTexParameteriFn(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
api()->glTexParameteriFn(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
api()->glTexParameteriFn(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
api()->glTexImage2DFn(GL_TEXTURE_2D, 0, format, size.width(), size.height(),
0, format, GL_UNSIGNED_BYTE, nullptr);
texture = new TexturePassthrough(color_buffer_texture, GL_TEXTURE_2D);
UpdateBoundTexturePassthroughSize(api(), texture.get());
api()->glFramebufferTexture2DEXTFn(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
GL_TEXTURE_2D, texture->service_id(), 0);
// Check that the framebuffer is complete
if (api()->glCheckFramebufferStatusEXTFn(GL_FRAMEBUFFER) !=
GL_FRAMEBUFFER_COMPLETE) {
LOG(ERROR)
<< "GLES2DecoderPassthroughImpl::ResizeOffscreenFramebuffer failed "
<< "because the resulting framebuffer was not complete.";
return false;
}
return true;
}
void GLES2DecoderPassthroughImpl::EmulatedDefaultFramebuffer::Destroy(
bool have_context) {
if (have_context) {
api()->glDeleteFramebuffersEXTFn(1, &framebuffer_service_id);
framebuffer_service_id = 0;
} else {
texture->MarkContextLost();
}
texture = nullptr;
}
GLES2DecoderPassthroughImpl::GLES2DecoderPassthroughImpl(
DecoderClient* client,
CommandBufferServiceBase* command_buffer_service,
Outputter* outputter,
ContextGroup* group)
: GLES2Decoder(client, command_buffer_service, outputter),
commands_to_process_(0),
debug_marker_manager_(),
logger_(&debug_marker_manager_,
base::BindRepeating(&DecoderClient::OnConsoleMessage,
base::Unretained(client),
0),
group->gpu_preferences().disable_gl_error_limit),
surface_(),
context_(),
offscreen_(false),
group_(group),
feature_info_(new FeatureInfo(group->feature_info()->workarounds(),
group->gpu_feature_info())),
emulated_back_buffer_(nullptr),
bound_draw_framebuffer_(0),
bound_read_framebuffer_(0),
gpu_decoder_category_(TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(
TRACE_DISABLED_BY_DEFAULT("gpu.decoder"))),
gpu_trace_level_(2),
gpu_trace_commands_(false),
gpu_debug_commands_(false),
context_lost_(false),
reset_by_robustness_extension_(false),
lose_context_when_out_of_memory_(false) {
DCHECK(client);
DCHECK(group);
}
GLES2DecoderPassthroughImpl::~GLES2DecoderPassthroughImpl() = default;
GLES2Decoder::Error GLES2DecoderPassthroughImpl::DoCommands(
unsigned int num_commands,
const volatile void* buffer,
int num_entries,
int* entries_processed) {
if (gpu_debug_commands_) {
return DoCommandsImpl<true>(num_commands, buffer, num_entries,
entries_processed);
} else {
return DoCommandsImpl<false>(num_commands, buffer, num_entries,
entries_processed);
}
}
template <bool DebugImpl>
GLES2Decoder::Error GLES2DecoderPassthroughImpl::DoCommandsImpl(
unsigned int num_commands,
const volatile void* buffer,
int num_entries,
int* entries_processed) {
commands_to_process_ = num_commands;
error::Error result = error::kNoError;
const volatile CommandBufferEntry* cmd_data =
static_cast<const volatile CommandBufferEntry*>(buffer);
int process_pos = 0;
unsigned int command = 0;
while (process_pos < num_entries && result == error::kNoError &&
commands_to_process_--) {
const unsigned int size = cmd_data->value_header.size;
command = cmd_data->value_header.command;
if (size == 0) {
result = error::kInvalidSize;
break;
}
// size can't overflow because it is 21 bits.
if (static_cast<int>(size) + process_pos > num_entries) {
result = error::kOutOfBounds;
break;
}
if (DebugImpl && log_commands()) {
LOG(ERROR) << "[" << logger_.GetLogPrefix() << "]"
<< "cmd: " << GetCommandName(command);
}
const unsigned int arg_count = size - 1;
unsigned int command_index = command - kFirstGLES2Command;
if (command_index < std::size(command_info)) {
const CommandInfo& info = command_info[command_index];
unsigned int info_arg_count = static_cast<unsigned int>(info.arg_count);
if ((info.arg_flags == cmd::kFixed && arg_count == info_arg_count) ||
(info.arg_flags == cmd::kAtLeastN && arg_count >= info_arg_count)) {
bool doing_gpu_trace = false;
if (DebugImpl && gpu_trace_commands_) {
if (CMD_FLAG_GET_TRACE_LEVEL(info.cmd_flags) <= gpu_trace_level_) {
doing_gpu_trace = true;
gpu_tracer_->Begin(TRACE_DISABLED_BY_DEFAULT("gpu.decoder"),
GetCommandName(command), kTraceDecoder);
}
}
if (DebugImpl) {
VerifyServiceTextureObjectsExist();
}
uint32_t immediate_data_size = (arg_count - info_arg_count) *
sizeof(CommandBufferEntry); // NOLINT
if (info.cmd_handler) {
result = (this->*info.cmd_handler)(immediate_data_size, cmd_data);
} else {
result = error::kUnknownCommand;
}
if (DebugImpl && doing_gpu_trace) {
gpu_tracer_->End(kTraceDecoder);
}
} else {
result = error::kInvalidArguments;
}
} else {
result = DoCommonCommand(command, arg_count, cmd_data);
}
if (result == error::kNoError && context_lost_) {
result = error::kLostContext;
}
if (result != error::kDeferCommandUntilLater) {
process_pos += size;
cmd_data += size;
}
}
if (entries_processed)
*entries_processed = process_pos;
#if BUILDFLAG(IS_MAC)
// Aggressively call glFlush on macOS. This is the only fix that has been
// found so far to avoid crashes on Intel drivers. The workaround
// isn't needed for WebGL contexts, though.
// https://crbug.com/863817
if (!feature_info_->IsWebGLContext())
context_->FlushForDriverCrashWorkaround();
#endif
return result;
}
void GLES2DecoderPassthroughImpl::ExitCommandProcessingEarly() {
commands_to_process_ = 0;
}
base::WeakPtr<DecoderContext> GLES2DecoderPassthroughImpl::AsWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
gpu::ContextResult GLES2DecoderPassthroughImpl::Initialize(
const scoped_refptr<gl::GLSurface>& surface,
const scoped_refptr<gl::GLContext>& context,
bool offscreen,
const DisallowedFeatures& disallowed_features,
const ContextCreationAttribs& attrib_helper) {
TRACE_EVENT0("gpu", "GLES2DecoderPassthroughImpl::Initialize");
CHECK(gl::GetGLImplementation() == gl::kGLImplementationEGLANGLE)
<< "Running WebGL through passthrough command decoder without ANGLE's "
<< "validation is a security risk";
DCHECK(context->IsCurrent(surface.get()));
api_ = gl::g_current_gl_context;
// Take ownership of the context and surface. The surface can be replaced
// with SetSurface.
context_ = context;
surface_ = surface;
offscreen_ = offscreen;
// For WebGL contexts, log GL errors so they appear in devtools. Otherwise
// only enable debug logging if requested.
bool log_non_errors =
group_->gpu_preferences().enable_gpu_driver_debug_logging;
InitializeGLDebugLogging(log_non_errors, PassthroughGLDebugMessageCallback,
this);
// Create GPU Tracer for timing values.
gpu_tracer_ = std::make_unique<GPUTracer>(this);
gpu_fence_manager_ = std::make_unique<GpuFenceManager>();
multi_draw_manager_ = std::make_unique<MultiDrawManager>(
MultiDrawManager::IndexStorageType::Pointer);
auto result =
group_->Initialize(this, attrib_helper.context_type, disallowed_features);
if (result != gpu::ContextResult::kSuccess) {
// Must not destroy ContextGroup if it is not initialized.
group_ = nullptr;
Destroy(true);
return result;
}
// Extensions that are enabled via emulation on the client side or needed for
// basic command buffer functionality. Make sure they are always enabled.
if (IsWebGLContextType(attrib_helper.context_type)) {
// Grab the extensions that are requestable
gfx::ExtensionSet requestable_extensions(
gl::GetRequestableGLExtensionsFromCurrentContext());
static constexpr const char* kRequiredFunctionalityExtensions[] = {
"GL_ANGLE_blob_cache",
"GL_ANGLE_framebuffer_blit",
#if BUILDFLAG(IS_FUCHSIA)
"GL_ANGLE_memory_object_fuchsia",
#endif
"GL_ANGLE_memory_size",
"GL_ANGLE_native_id",
#if BUILDFLAG(IS_FUCHSIA)
"GL_ANGLE_semaphore_fuchsia",
#endif
"GL_ANGLE_texture_storage_external",
"GL_ANGLE_texture_usage",
"GL_CHROMIUM_bind_uniform_location",
"GL_CHROMIUM_sync_query",
"GL_EXT_debug_marker",
"GL_EXT_memory_object",
"GL_EXT_memory_object_fd",
"GL_EXT_semaphore",
"GL_EXT_semaphore_fd",
"GL_KHR_debug",
"GL_NV_fence",
"GL_OES_EGL_image",
"GL_OES_EGL_image_external",
"GL_OES_EGL_image_external_essl3",
#if BUILDFLAG(IS_APPLE)
"GL_ANGLE_texture_rectangle",
#endif
"GL_ANGLE_vulkan_image",
};
RequestExtensions(api(), requestable_extensions,
kRequiredFunctionalityExtensions,
std::size(kRequiredFunctionalityExtensions));
if (request_optional_extensions_) {
static constexpr const char* kOptionalFunctionalityExtensions[] = {
"GL_ANGLE_depth_texture",
"GL_ANGLE_framebuffer_multisample",
"GL_ANGLE_get_tex_level_parameter",
"GL_ANGLE_instanced_arrays",
"GL_ANGLE_memory_object_flags",
"GL_ANGLE_pack_reverse_row_order",
"GL_ANGLE_translated_shader_source",
"GL_CHROMIUM_path_rendering",
"GL_EXT_blend_minmax",
"GL_EXT_discard_framebuffer",
"GL_EXT_disjoint_timer_query",
"GL_EXT_multisampled_render_to_texture",
"GL_EXT_occlusion_query_boolean",
"GL_EXT_sRGB",
"GL_EXT_sRGB_write_control",
"GL_EXT_texture_format_BGRA8888",
"GL_EXT_texture_norm16",
"GL_EXT_texture_rg",
"GL_EXT_texture_sRGB_decode",
"GL_EXT_texture_storage",
"GL_EXT_unpack_subimage",
"GL_KHR_parallel_shader_compile",
"GL_KHR_robust_buffer_access_behavior",
#if BUILDFLAG(IS_CHROMEOS)
// Required for Webgl to display in overlay on ChromeOS devices.
// TODO(crbug.com/40244202): Consider for other platforms.
"GL_MESA_framebuffer_flip_y",
#endif
"GL_NV_pack_subimage",
"GL_OES_depth32",
"GL_OES_packed_depth_stencil",
"GL_OES_rgb8_rgba8",
"GL_OES_vertex_array_object",
"NV_EGL_stream_consumer_external",
};
RequestExtensions(api(), requestable_extensions,
kOptionalFunctionalityExtensions,
std::size(kOptionalFunctionalityExtensions));
}
context->ReinitializeDynamicBindings();
}
// Each context initializes its own feature info because some extensions may
// be enabled dynamically. Don't disallow any features, leave it up to ANGLE
// to dynamically enable extensions.
InitializeFeatureInfo(attrib_helper.context_type, DisallowedFeatures(),
false);
// Check for required extensions
// TODO(geofflang): verify
// feature_info_->feature_flags().angle_robust_resource_initialization and
// api()->glIsEnabledFn(GL_ROBUST_RESOURCE_INITIALIZATION_ANGLE)
#define FAIL_INIT_IF_NOT(feature, message) \
if (!(feature)) { \
Destroy(true); \
LOG(ERROR) << "ContextResult::kFatalFailure: " << (message); \
return gpu::ContextResult::kFatalFailure; \
}
FAIL_INIT_IF_NOT(feature_info_->feature_flags().angle_robust_client_memory,
"missing GL_ANGLE_robust_client_memory");
FAIL_INIT_IF_NOT(
feature_info_->feature_flags().chromium_bind_generates_resource,
"missing GL_CHROMIUM_bind_generates_resource");
FAIL_INIT_IF_NOT(feature_info_->feature_flags().chromium_copy_texture,
"missing GL_CHROMIUM_copy_texture");
FAIL_INIT_IF_NOT(feature_info_->feature_flags().angle_client_arrays,
"missing GL_ANGLE_client_arrays");
FAIL_INIT_IF_NOT(api()->glIsEnabledFn(GL_CLIENT_ARRAYS_ANGLE) == GL_FALSE,
"GL_ANGLE_client_arrays shouldn't be enabled");
FAIL_INIT_IF_NOT(feature_info_->feature_flags().angle_webgl_compatibility ==
IsWebGLContextType(attrib_helper.context_type),
"missing GL_ANGLE_webgl_compatibility");
FAIL_INIT_IF_NOT(feature_info_->feature_flags().angle_request_extension,
"missing GL_ANGLE_request_extension");
FAIL_INIT_IF_NOT(feature_info_->feature_flags().khr_debug,
"missing GL_KHR_debug");
FAIL_INIT_IF_NOT(!attrib_helper.fail_if_major_perf_caveat ||
!feature_info_->feature_flags().is_software_webgl,
"fail_if_major_perf_caveat + software gl");
FAIL_INIT_IF_NOT(!attrib_helper.enable_gpu_rasterization,
"GPU rasterization not supported");
FAIL_INIT_IF_NOT(!IsES31ForTestingContextType(attrib_helper.context_type) ||
feature_info_->gl_version_info().IsAtLeastGLES(3, 1),
"ES 3.1 context type requires an ES 3.1 ANGLE context");
#undef FAIL_INIT_IF_NOT
if (feature_info_->feature_flags().angle_blob_cache) {
api()->glBlobCacheCallbacksANGLEFn(PassthroughGLBlobCacheSetCallback,
PassthroughGLBlobCacheGetCallback, this);
}
bind_generates_resource_ = group_->bind_generates_resource();
resources_ = group_->passthrough_resources();
// Query information about the texture units
GLint num_texture_units = 0;
api()->glGetIntegervFn(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS,
&num_texture_units);
if (num_texture_units > static_cast<GLint>(kMaxTextureUnits)) {
Destroy(true);
LOG(ERROR) << "kMaxTextureUnits (" << kMaxTextureUnits
<< ") must be at least GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS ("
<< num_texture_units << ").";
return gpu::ContextResult::kFatalFailure;
}
active_texture_unit_ = 0;
// Initialize the tracked buffer bindings
bound_buffers_[GL_ARRAY_BUFFER] = 0;
bound_buffers_[GL_ELEMENT_ARRAY_BUFFER] = 0;
if (feature_info_->gl_version_info().IsAtLeastGLES(3, 0) ||
feature_info_->feature_flags().ext_pixel_buffer_object) {
bound_buffers_[GL_PIXEL_PACK_BUFFER] = 0;
bound_buffers_[GL_PIXEL_UNPACK_BUFFER] = 0;
}
if (feature_info_->gl_version_info().IsAtLeastGLES(3, 0)) {
bound_buffers_[GL_COPY_READ_BUFFER] = 0;
bound_buffers_[GL_COPY_WRITE_BUFFER] = 0;
bound_buffers_[GL_TRANSFORM_FEEDBACK_BUFFER] = 0;
bound_buffers_[GL_UNIFORM_BUFFER] = 0;
}
if (feature_info_->gl_version_info().IsAtLeastGLES(3, 1)) {
bound_buffers_[GL_ATOMIC_COUNTER_BUFFER] = 0;
bound_buffers_[GL_SHADER_STORAGE_BUFFER] = 0;
bound_buffers_[GL_DRAW_INDIRECT_BUFFER] = 0;
bound_buffers_[GL_DISPATCH_INDIRECT_BUFFER] = 0;
}
bound_element_array_buffer_dirty_ = false;
lose_context_when_out_of_memory_ =
attrib_helper.lose_context_when_out_of_memory;
GLint max_2d_texture_size = 0;
api()->glGetIntegervFn(GL_MAX_TEXTURE_SIZE, &max_2d_texture_size);
api()->glGetIntegervFn(GL_MAX_RENDERBUFFER_SIZE, &max_renderbuffer_size_);
max_offscreen_framebuffer_size_ =
std::min(max_2d_texture_size, max_renderbuffer_size_);
if (offscreen_) {
emulated_default_framebuffer_format_ = GL_RGB;
CheckErrorCallbackState();
emulated_back_buffer_ = std::make_unique<EmulatedDefaultFramebuffer>(this);
// Some ChromeOS platforms (particularly MediaTek devices), there are driver
// limitations on the minimum size of a buffer. Thus, we set the initial
// size to 64x64 here instead of 1x1.
gfx::Size initial_size(64, 64);
if (!emulated_back_buffer_->Initialize(initial_size)) {
bool was_lost = CheckResetStatus();
Destroy(true);
LOG(ERROR) << (was_lost ? "ContextResult::kTransientFailure: "
: "ContextResult::kFatalFailure: ")
<< "Resize of emulated back buffer failed";
return was_lost ? gpu::ContextResult::kTransientFailure
: gpu::ContextResult::kFatalFailure;
}
if (CheckErrorCallbackState()) {
Destroy(true);
// Errors are considered fatal, including OOM.
LOG(ERROR)
<< "ContextResult::kFatalFailure: "
"Creation of the offscreen framebuffer failed because errors were "
"generated.";
return gpu::ContextResult::kFatalFailure;
}
framebuffer_id_map_.SetIDMapping(
0, emulated_back_buffer_->framebuffer_service_id);
// Bind the emulated default framebuffer and initialize the viewport
api()->glBindFramebufferEXTFn(
GL_FRAMEBUFFER, emulated_back_buffer_->framebuffer_service_id);
api()->glViewportFn(0, 0, initial_size.width(), initial_size.height());
}
#if BUILDFLAG(IS_MAC)
// On mac we need the ANGLE_texture_rectangle extension to support IOSurface
// backbuffers, but we don't want it exposed to WebGL user shaders. This
// disables support for it in the shader compiler. We then enable it
// temporarily when necessary; see
// ScopedEnableTextureRectangleInShaderCompiler.
if (feature_info_->IsWebGLContext())
api()->glDisableFn(GL_TEXTURE_RECTANGLE_ANGLE);
#endif
// TEMPORARY: Set primitive restart to enabled by default for WebGL2. Clear
// errors afterwards so that when this state is initialized and validated in
// ANGLE, it will not generate errors during command buffer initialization.
if (feature_info_->context_type() == CONTEXT_TYPE_WEBGL2) {
// If WebGL 2, the PRIMITIVE_RESTART_FIXED_INDEX should be always enabled.
// See the section <Primitive Restart is Always Enabled> in WebGL 2 spec:
// https://www.khronos.org/registry/webgl/specs/latest/2.0/#4.1.4
api()->glEnableFn(GL_PRIMITIVE_RESTART_FIXED_INDEX);
CheckErrorCallbackState();
}
// Register this object as a GPU switching observer.
if (feature_info_->IsWebGLContext()) {
ui::GpuSwitchingManager::GetInstance()->AddObserver(this);
}
// Deprecation warning for SwiftShader WebGL fallback
if (feature_info_->IsWebGLContext() &&
gl::GetANGLEImplementation() == gl::ANGLEImplementation::kSwiftShader &&
!base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableUnsafeSwiftShader)) {
constexpr const char* kSwiftShaderFallbackDeprcationMessage =
"Automatic fallback to software WebGL has been deprecated. Please use "
"the --enable-unsafe-swiftshader "
"(about:flags#enable-unsafe-swiftshader) flag to opt in to lower "
"security guarantees for trusted content.";
logger_.LogMessage(__FILE__, __LINE__,
kSwiftShaderFallbackDeprcationMessage);
}
set_initialized();
return gpu::ContextResult::kSuccess;
}
void GLES2DecoderPassthroughImpl::Destroy(bool have_context) {
if (have_context && feature_info_->feature_flags().angle_blob_cache) {
api()->glBlobCacheCallbacksANGLEFn(nullptr, nullptr, nullptr);
}
if (have_context) {
FlushErrors();
}
// Destroy all pending read pixels operations
for (PendingReadPixels& pending_read_pixels : pending_read_pixels_) {
if (have_context) {
api()->glDeleteBuffersARBFn(1, &pending_read_pixels.buffer_service_id);
} else {
pending_read_pixels.fence->Invalidate();
}
}
pending_read_pixels_.clear();
for (auto& bound_texture_type : bound_textures_) {
for (auto& bound_texture : bound_texture_type) {
if (!have_context && bound_texture.texture) {
bound_texture.texture->MarkContextLost();
}
bound_texture.texture = nullptr;
}
}
for (PendingQuery& pending_query : pending_queries_) {
if (!have_context) {
if (pending_query.commands_completed_fence) {
pending_query.commands_completed_fence->Invalidate();
}
if (pending_query.buffer_shadow_update_fence) {
pending_query.buffer_shadow_update_fence->Invalidate();
}
}
}
pending_queries_.clear();
for (PendingReadPixels& pending_read_pixels : pending_read_pixels_) {
if (!have_context) {
if (pending_read_pixels.fence) {
pending_read_pixels.fence->Invalidate();
}
}
}
pending_read_pixels_.clear();
DeleteServiceObjects(&framebuffer_id_map_, have_context,
[this](GLuint client_id, GLuint framebuffer) {
api()->glDeleteFramebuffersEXTFn(1, &framebuffer);
});
DeleteServiceObjects(&transform_feedback_id_map_, have_context,
[this](GLuint client_id, GLuint transform_feedback) {
api()->glDeleteTransformFeedbacksFn(
1, &transform_feedback);
});
DeleteServiceObjects(
&query_id_map_, have_context, [this](GLuint client_id, GLuint query) {
// glDeleteQueries is not loaded unless GL_EXT_occlusion_query_boolean
// is present. All queries must be emulated so they don't need to be
// deleted.
if (feature_info_->feature_flags().occlusion_query_boolean) {
api()->glDeleteQueriesFn(1, &query);
}
});
DeleteServiceObjects(&vertex_array_id_map_, have_context,
[this](GLuint client_id, GLuint vertex_array) {
api()->glDeleteVertexArraysOESFn(1, &vertex_array);
});
// Destroy the emulated backbuffer
if (emulated_back_buffer_) {
emulated_back_buffer_->Destroy(have_context);
emulated_back_buffer_.reset();
}
if (external_default_framebuffer_) {
external_default_framebuffer_->Destroy(have_context);
external_default_framebuffer_.reset();
}
if (gpu_fence_manager_.get()) {
gpu_fence_manager_->Destroy(have_context);
gpu_fence_manager_.reset();
}
// Destroy the GPU Tracer which may own some in process GPU Timings.
if (gpu_tracer_) {
gpu_tracer_->Destroy(have_context);
gpu_tracer_.reset();
}
if (multi_draw_manager_.get()) {
multi_draw_manager_.reset();
}
if (!have_context) {
for (auto& fence : deschedule_until_finished_fences_) {
fence->Invalidate();
}
}
deschedule_until_finished_fences_.clear();
// Unregister this object as a GPU switching observer.
if (feature_info_->IsWebGLContext()) {
ui::GpuSwitchingManager::GetInstance()->RemoveObserver(this);
}
// Destroy the surface before the context, some surface destructors make GL
// calls.
surface_ = nullptr;
if (group_) {
// `resources_` depends on `group_`. It must be cleared before we set
// `group_` to nullptr.
resources_ = nullptr;
group_->Destroy(this, have_context);
group_ = nullptr;
}
if (have_context) {
api()->glDebugMessageCallbackFn(nullptr, nullptr);
}
if (context_.get()) {
context_->ReleaseCurrent(nullptr);
//`api_` might depend on `context_`. It must be cleared before we set
//`context_` to nullptr.
api_ = nullptr;
context_ = nullptr;
}
}
void GLES2DecoderPassthroughImpl::SetSurface(
const scoped_refptr<gl::GLSurface>& surface) {
DCHECK(context_->IsCurrent(nullptr));
DCHECK(surface_.get());
surface_ = surface;
}
void GLES2DecoderPassthroughImpl::ReleaseSurface() {
if (!context_.get())
return;
if (WasContextLost()) {
DLOG(ERROR) << " GLES2DecoderImpl: Trying to release lost context.";
return;
}
context_->ReleaseCurrent(surface_.get());
surface_ = nullptr;
}
void GLES2DecoderPassthroughImpl::SetDefaultFramebufferSharedImage(
const Mailbox& mailbox,
int samples,
bool preserve,
bool needs_depth,
bool needs_stencil) {
if (!offscreen_)
return;
if (!external_default_framebuffer_) {
external_default_framebuffer_ = std::make_unique<GLES2ExternalFramebuffer>(
/*passthrough=*/true, *group_->feature_info(),
group_->shared_image_representation_factory());
}
if (!external_default_framebuffer_->AttachSharedImage(
mailbox, samples, preserve, needs_depth, needs_stencil)) {
return;
}
GLuint default_framebuffer_id;
if (external_default_framebuffer_->IsSharedImageAttached()) {
default_framebuffer_id = external_default_framebuffer_->GetFramebufferId();
} else {
default_framebuffer_id = emulated_back_buffer_->framebuffer_service_id;
}
framebuffer_id_map_.RemoveClientID(0);
framebuffer_id_map_.SetIDMapping(0, default_framebuffer_id);
// Note, there is member variable `supports_separate_fbo_bindings_` that is
// used across this class, but it's never initialized with the real value
// (defaults to false) which is likely a bug. To avoid any code changes
// outside of the feature flag we don't use it here.
const bool supports_separate_fbo_bindings =
feature_info_->feature_flags().chromium_framebuffer_multisample ||
feature_info_->IsWebGL2OrES3Context();
if (supports_separate_fbo_bindings) {
if (bound_draw_framebuffer_ == 0) {
api()->glBindFramebufferEXTFn(GL_DRAW_FRAMEBUFFER,
default_framebuffer_id);
}
if (bound_read_framebuffer_ == 0) {
api()->glBindFramebufferEXTFn(GL_READ_FRAMEBUFFER,
default_framebuffer_id);
}
} else {
DCHECK_EQ(bound_draw_framebuffer_, bound_read_framebuffer_);
if (bound_draw_framebuffer_ == 0) {
api()->glBindFramebufferEXTFn(GL_FRAMEBUFFER, default_framebuffer_id);
}
}
}
bool GLES2DecoderPassthroughImpl::MakeCurrent() {
if (!context_.get())
return false;
if (WasContextLost()) {
LOG(ERROR) << " GLES2DecoderPassthroughImpl: Trying to make lost context "
"current.";
return false;
}
if (!context_->MakeCurrent(surface_.get())) {
LOG(ERROR)
<< " GLES2DecoderPassthroughImpl: Context lost during MakeCurrent.";
MarkContextLost(error::kMakeCurrentFailed);
group_->LoseContexts(error::kUnknown);
return false;
}
DCHECK_EQ(api(), gl::g_current_gl_context);
if (CheckResetStatus()) {
LOG(ERROR) << " GLES2DecoderPassthroughImpl: Context reset detected after "
"MakeCurrent.";
group_->LoseContexts(error::kUnknown);
return false;
}
ProcessReadPixels(false);
ProcessQueries(false);
return true;
}
gpu::gles2::GLES2Util* GLES2DecoderPassthroughImpl::GetGLES2Util() {
return nullptr;
}
gl::GLContext* GLES2DecoderPassthroughImpl::GetGLContext() {
return context_.get();
}
gl::GLSurface* GLES2DecoderPassthroughImpl::GetGLSurface() {
return surface_.get();
}
gpu::gles2::ContextGroup* GLES2DecoderPassthroughImpl::GetContextGroup() {
return group_.get();
}
const FeatureInfo* GLES2DecoderPassthroughImpl::GetFeatureInfo() const {
return group_->feature_info();
}
gpu::Capabilities GLES2DecoderPassthroughImpl::GetCapabilities() {
DCHECK(initialized());
Capabilities caps;
PopulateNumericCapabilities(&caps, feature_info_.get());
caps.egl_image_external =
feature_info_->feature_flags().oes_egl_image_external;
caps.egl_image_external_essl3 =
feature_info_->feature_flags().oes_egl_image_external_essl3;
caps.texture_format_bgra8888 =
feature_info_->feature_flags().ext_texture_format_bgra8888;
caps.texture_format_etc1_npot =
feature_info_->feature_flags().oes_compressed_etc1_rgb8_texture &&
!feature_info_->workarounds().etc1_power_of_two_only;
caps.sync_query = feature_info_->feature_flags().chromium_sync_query;
caps.texture_rg = feature_info_->feature_flags().ext_texture_rg;
caps.texture_norm16 = feature_info_->feature_flags().ext_texture_norm16;
caps.texture_half_float_linear =
feature_info_->feature_flags().enable_texture_half_float_linear;
caps.image_ycbcr_420v =
feature_info_->feature_flags().chromium_image_ycbcr_420v;
caps.image_ar30 = feature_info_->feature_flags().chromium_image_ar30;
caps.image_ab30 = feature_info_->feature_flags().chromium_image_ab30;
caps.image_ycbcr_p010 =
feature_info_->feature_flags().chromium_image_ycbcr_p010;
if (feature_info_->workarounds().webgl_or_caps_max_texture_size) {
caps.max_texture_size =
std::min(caps.max_texture_size,
feature_info_->workarounds().webgl_or_caps_max_texture_size);
}
caps.max_copy_texture_chromium_size =
feature_info_->workarounds().max_copy_texture_chromium_size;
caps.render_buffer_format_bgra8888 =
feature_info_->feature_flags().ext_render_buffer_format_bgra8888;
caps.gpu_rasterization = false;
caps.msaa_is_slow = MSAAIsSlow(feature_info_->workarounds());
caps.avoid_stencil_buffers =
feature_info_->workarounds().avoid_stencil_buffers;
caps.supports_rgb_to_yuv_conversion = true;
// Technically, YUV readback is handled on the client side, but enable it here
// so that clients can use this to detect support.
caps.supports_yuv_readback = true;
caps.chromium_gpu_fence = feature_info_->feature_flags().chromium_gpu_fence;
caps.mesa_framebuffer_flip_y =
feature_info_->feature_flags().mesa_framebuffer_flip_y;
caps.gpu_memory_buffer_formats =
feature_info_->feature_flags().gpu_memory_buffer_formats;
caps.angle_rgbx_internal_format =
feature_info_->feature_flags().angle_rgbx_internal_format;
#if BUILDFLAG(IS_CHROMEOS)
PopulateDRMCapabilities(&caps, feature_info_.get());
#endif
return caps;
}
gpu::GLCapabilities GLES2DecoderPassthroughImpl::GetGLCapabilities() {
CHECK(initialized());
GLCapabilities caps;
PopulateGLCapabilities(&caps, feature_info_.get());
CHECK_EQ(caps.bind_generates_resource_chromium != GL_FALSE,
group_->bind_generates_resource());
caps.occlusion_query_boolean =
feature_info_->feature_flags().occlusion_query_boolean;
caps.timer_queries = feature_info_->feature_flags().ext_disjoint_timer_query;
if (feature_info_->workarounds().webgl_or_caps_max_texture_size) {
caps.max_texture_size =
std::min(caps.max_texture_size,
feature_info_->workarounds().webgl_or_caps_max_texture_size);
}
caps.sync_query = feature_info_->feature_flags().chromium_sync_query;
return caps;
}
void GLES2DecoderPassthroughImpl::RestoreState(const ContextState* prev_state) {
}
void GLES2DecoderPassthroughImpl::RestoreActiveTexture() const {}
void GLES2DecoderPassthroughImpl::RestoreAllTextureUnitAndSamplerBindings(
const ContextState* prev_state) const {}
void GLES2DecoderPassthroughImpl::RestoreActiveTextureUnitBinding(
unsigned int target) const {}
void GLES2DecoderPassthroughImpl::RestoreBufferBinding(unsigned int target) {}
void GLES2DecoderPassthroughImpl::RestoreBufferBindings() const {}
void GLES2DecoderPassthroughImpl::RestoreFramebufferBindings() const {}
void GLES2DecoderPassthroughImpl::RestoreRenderbufferBindings() {}
void GLES2DecoderPassthroughImpl::RestoreGlobalState() const {}
void GLES2DecoderPassthroughImpl::RestoreProgramBindings() const {}
void GLES2DecoderPassthroughImpl::RestoreTextureState(unsigned service_id) {}
void GLES2DecoderPassthroughImpl::RestoreTextureUnitBindings(
unsigned unit) const {}
void GLES2DecoderPassthroughImpl::RestoreVertexAttribArray(unsigned index) {}
void GLES2DecoderPassthroughImpl::RestoreAllExternalTextureBindingsIfNeeded() {}
void GLES2DecoderPassthroughImpl::RestoreDeviceWindowRectangles() const {}
void GLES2DecoderPassthroughImpl::ClearAllAttributes() const {}
void GLES2DecoderPassthroughImpl::RestoreAllAttributes() const {}
void GLES2DecoderPassthroughImpl::SetIgnoreCachedStateForTest(bool ignore) {}
void GLES2DecoderPassthroughImpl::SetForceShaderNameHashingForTest(bool force) {
}
gpu::QueryManager* GLES2DecoderPassthroughImpl::GetQueryManager() {
return nullptr;
}
void GLES2DecoderPassthroughImpl::SetQueryCallback(unsigned int query_client_id,
base::OnceClosure callback) {
GLuint service_id = query_id_map_.GetServiceIDOrInvalid(query_client_id);
for (auto& pending_query : pending_queries_) {
if (pending_query.service_id == service_id) {
pending_query.callbacks.push_back(std::move(callback));
return;
}
}
VLOG(1) << "GLES2DecoderPassthroughImpl::SetQueryCallback: No pending query "
"with ID "
<< query_client_id << ". Running the callback immediately.";
std::move(callback).Run();
}
void GLES2DecoderPassthroughImpl::CancelAllQueries() {
// clear all pending queries.
pending_queries_.clear();
query_id_map_.Clear();
}
gpu::gles2::GpuFenceManager* GLES2DecoderPassthroughImpl::GetGpuFenceManager() {
return gpu_fence_manager_.get();
}
gpu::gles2::FramebufferManager*
GLES2DecoderPassthroughImpl::GetFramebufferManager() {
return nullptr;
}
gpu::gles2::TransformFeedbackManager*
GLES2DecoderPassthroughImpl::GetTransformFeedbackManager() {
return nullptr;
}
gpu::gles2::VertexArrayManager*
GLES2DecoderPassthroughImpl::GetVertexArrayManager() {
return nullptr;
}
bool GLES2DecoderPassthroughImpl::HasPendingQueries() const {
return !pending_queries_.empty();
}
void GLES2DecoderPassthroughImpl::ProcessPendingQueries(bool did_finish) {
// TODO(geofflang): If this returned an error, store it somewhere.
ProcessQueries(did_finish);
}
bool GLES2DecoderPassthroughImpl::HasMoreIdleWork() const {
return gpu_tracer_->HasTracesToProcess() || !pending_read_pixels_.empty();
}
void GLES2DecoderPassthroughImpl::PerformIdleWork() {
gpu_tracer_->ProcessTraces();
ProcessReadPixels(false);
}
bool GLES2DecoderPassthroughImpl::HasPollingWork() const {
return deschedule_until_finished_fences_.size() >= 2;
}
void GLES2DecoderPassthroughImpl::PerformPollingWork() {
ProcessDescheduleUntilFinished();
}
bool GLES2DecoderPassthroughImpl::GetServiceTextureId(
uint32_t client_texture_id,
uint32_t* service_texture_id) {
return resources_->texture_id_map.GetServiceID(client_texture_id,
service_texture_id);
}
TextureBase* GLES2DecoderPassthroughImpl::GetTextureBase(uint32_t client_id) {
scoped_refptr<TexturePassthrough> texture;
if (resources_->texture_object_map.GetServiceID(client_id, &texture)) {
return texture.get();
} else {
return nullptr;
}
}
bool GLES2DecoderPassthroughImpl::ClearLevel(Texture* texture,
unsigned target,
int level,
unsigned format,
unsigned type,
int xoffset,
int yoffset,
int width,
int height) {
return true;
}
bool GLES2DecoderPassthroughImpl::ClearCompressedTextureLevel(Texture* texture,
unsigned target,
int level,
unsigned format,
int width,
int height) {
return true;
}
bool GLES2DecoderPassthroughImpl::ClearCompressedTextureLevel3D(
Texture* texture,
unsigned target,
int level,
unsigned format,
int width,
int height,
int depth) {
return true;
}
bool GLES2DecoderPassthroughImpl::IsCompressedTextureFormat(unsigned format) {
return false;
}
bool GLES2DecoderPassthroughImpl::ClearLevel3D(Texture* texture,
unsigned target,
int level,
unsigned format,
unsigned type,
int width,
int height,
int depth) {
return true;
}
gpu::gles2::ErrorState* GLES2DecoderPassthroughImpl::GetErrorState() {
return nullptr;
}
void GLES2DecoderPassthroughImpl::WaitForReadPixels(
base::OnceClosure callback) {}
bool GLES2DecoderPassthroughImpl::WasContextLost() const {
return context_lost_;
}
bool GLES2DecoderPassthroughImpl::WasContextLostByRobustnessExtension() const {
return WasContextLost() && reset_by_robustness_extension_;
}
void GLES2DecoderPassthroughImpl::MarkContextLost(
error::ContextLostReason reason) {
// Only lose the context once.
if (WasContextLost()) {
return;
}
// Don't make GL calls in here, the context might not be current.
command_buffer_service()->SetContextLostReason(reason);
context_lost_ = true;
}
gpu::gles2::Logger* GLES2DecoderPassthroughImpl::GetLogger() {
return &logger_;
}
void GLES2DecoderPassthroughImpl::OnGpuSwitched(
gl::GpuPreference active_gpu_heuristic) {
// Send OnGpuSwitched notification to renderer process via decoder client.
client()->OnGpuSwitched(active_gpu_heuristic);
}
void GLES2DecoderPassthroughImpl::BeginDecoding() {
gpu_tracer_->BeginDecoding();
gpu_trace_commands_ = gpu_tracer_->IsTracing() && *gpu_decoder_category_;
gpu_debug_commands_ = log_commands() || debug() || gpu_trace_commands_;
#if BUILDFLAG(IS_WIN)
if (!resources_->ResumeSharedImageAccessIfNeeded(api())) {
LOG(ERROR) << " GLES2DecoderPassthroughImpl: Failed to resume shared "
"image access.";
group_->LoseContexts(error::kUnknown);
}
#endif
auto it = active_queries_.find(GL_COMMANDS_ISSUED_CHROMIUM);
if (it != active_queries_.end()) {
DCHECK_EQ(it->second.command_processing_start_time, base::TimeTicks());
it->second.command_processing_start_time = base::TimeTicks::Now();
}
if (has_activated_pixel_local_storage_) {
api()->glFramebufferPixelLocalStorageRestoreANGLEFn();
}
}
void GLES2DecoderPassthroughImpl::EndDecoding() {
if (has_activated_pixel_local_storage_) {
api()->glFramebufferPixelLocalStorageInterruptANGLEFn();
}
#if BUILDFLAG(IS_WIN)
resources_->SuspendSharedImageAccessIfNeeded();
#endif
gpu_tracer_->EndDecoding();
auto it = active_queries_.find(GL_COMMANDS_ISSUED_CHROMIUM);
if (it != active_queries_.end()) {
DCHECK_NE(it->second.command_processing_start_time, base::TimeTicks());
it->second.active_time +=
(base::TimeTicks::Now() - it->second.command_processing_start_time);
it->second.command_processing_start_time = base::TimeTicks();
}
}
const gpu::gles2::ContextState* GLES2DecoderPassthroughImpl::GetContextState() {
return nullptr;
}
scoped_refptr<ShaderTranslatorInterface>
GLES2DecoderPassthroughImpl::GetTranslator(GLenum type) {
return nullptr;
}
void GLES2DecoderPassthroughImpl::OnDebugMessage(GLenum source,
GLenum type,
GLuint id,
GLenum severity,
GLsizei length,
const GLchar* message) {
if (type == GL_DEBUG_TYPE_ERROR && source == GL_DEBUG_SOURCE_API) {
had_error_callback_ = true;
}
}
GLsizeiptr GLES2DecoderPassthroughImpl::BlobCacheGet(const void* key,
GLsizeiptr key_size,
void* value,
GLsizeiptr value_size) {
PassthroughProgramCache* cache = get_passthrough_program_cache();
if (!cache) {
return 0;
}
if (key_size < 0) {
return 0;
}
const uint8_t* key_begin = reinterpret_cast<const uint8_t*>(key);
PassthroughProgramCache::Key entry_key(key_begin, key_begin + key_size);
return cache->Get(entry_key, value, value_size);
}
void GLES2DecoderPassthroughImpl::BlobCacheSet(const void* key,
GLsizeiptr key_size,
const void* value,
GLsizeiptr value_size) {
PassthroughProgramCache* cache = get_passthrough_program_cache();
if (!cache) {
return;
}
if (key_size < 0 || value_size < 0) {
return;
}
const uint8_t* key_begin = reinterpret_cast<const uint8_t*>(key);
PassthroughProgramCache::Key entry_key(key_begin, key_begin + key_size);
const uint8_t* value_begin = reinterpret_cast<const uint8_t*>(value);
PassthroughProgramCache::Value entry_value(value_begin,
value_begin + value_size);
cache->Set(
std::move(entry_key), std::move(entry_value),
base::BindRepeating(&DecoderClient::CacheBlob, base::Unretained(client()),
gpu::GpuDiskCacheType::kGlShaders));
}
void GLES2DecoderPassthroughImpl::SetCopyTextureResourceManagerForTest(
CopyTextureCHROMIUMResourceManager* copy_texture_resource_manager) {
NOTIMPLEMENTED();
}
void GLES2DecoderPassthroughImpl::SetCopyTexImageBlitterForTest(
CopyTexImageResourceManager* copy_tex_image_blit) {
NOTIMPLEMENTED();
}
const char* GLES2DecoderPassthroughImpl::GetCommandName(
unsigned int command_id) const {
if (command_id >= kFirstGLES2Command && command_id < kNumCommands) {
return gles2::GetCommandName(static_cast<CommandId>(command_id));
}
return GetCommonCommandName(static_cast<cmd::CommandId>(command_id));
}
void GLES2DecoderPassthroughImpl::SetOptionalExtensionsRequestedForTesting(
bool request_extensions) {
request_optional_extensions_ = request_extensions;
}
void GLES2DecoderPassthroughImpl::InitializeFeatureInfo(
ContextType context_type,
const DisallowedFeatures& disallowed_features,
bool force_reinitialize) {
feature_info_->Initialize(context_type, true /* is_passthrough_cmd_decoder */,
disallowed_features, force_reinitialize);
}
template <typename T>
error::Error GLES2DecoderPassthroughImpl::PatchGetNumericResults(GLenum pname,
GLsizei length,
T* params) {
// Likely a gl error if no parameters were returned
if (length < 1) {
return error::kNoError;
}
switch (pname) {
case GL_NUM_EXTENSIONS:
// Currently handled on the client side.
params[0] = 0;
break;
case GL_TEXTURE_BINDING_2D:
case GL_TEXTURE_BINDING_CUBE_MAP:
case GL_TEXTURE_BINDING_2D_ARRAY:
case GL_TEXTURE_BINDING_3D:
if (*params != 0 &&
!GetClientID(&resources_->texture_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_ARRAY_BUFFER_BINDING:
case GL_ELEMENT_ARRAY_BUFFER_BINDING:
case GL_PIXEL_PACK_BUFFER_BINDING:
case GL_PIXEL_UNPACK_BUFFER_BINDING:
case GL_TRANSFORM_FEEDBACK_BUFFER_BINDING:
case GL_COPY_READ_BUFFER_BINDING:
case GL_COPY_WRITE_BUFFER_BINDING:
case GL_UNIFORM_BUFFER_BINDING:
case GL_DISPATCH_INDIRECT_BUFFER_BINDING:
case GL_DRAW_INDIRECT_BUFFER_BINDING:
if (*params != 0 &&
!GetClientID(&resources_->buffer_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_RENDERBUFFER_BINDING:
if (*params != 0 &&
!GetClientID(&resources_->renderbuffer_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_SAMPLER_BINDING:
if (*params != 0 &&
!GetClientID(&resources_->sampler_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_ACTIVE_PROGRAM:
if (*params != 0 &&
!GetClientID(&resources_->program_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_FRAMEBUFFER_BINDING:
case GL_READ_FRAMEBUFFER_BINDING:
if (*params != 0 && !GetClientID(&framebuffer_id_map_, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_TRANSFORM_FEEDBACK_BINDING:
if (*params != 0 &&
!GetClientID(&transform_feedback_id_map_, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_VERTEX_ARRAY_BINDING:
if (*params != 0 &&
!GetClientID(&vertex_array_id_map_, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_MAX_PIXEL_LOCAL_STORAGE_PLANES_ANGLE:
// Impose an upper bound on the number ANGLE_shader_pixel_local_storage
// planes so we can stack-allocate load/store ops.
*params = std::min<T>(*params, kPassthroughMaxPLSPlanes);
break;
default:
break;
}
return error::kNoError;
}
// Instantiate templated functions
#define INSTANTIATE_PATCH_NUMERIC_RESULTS(type) \
template error::Error GLES2DecoderPassthroughImpl::PatchGetNumericResults( \
GLenum, GLsizei, type*)
INSTANTIATE_PATCH_NUMERIC_RESULTS(GLint);
INSTANTIATE_PATCH_NUMERIC_RESULTS(GLint64);
INSTANTIATE_PATCH_NUMERIC_RESULTS(GLfloat);
INSTANTIATE_PATCH_NUMERIC_RESULTS(GLboolean);
#undef INSTANTIATE_PATCH_NUMERIC_RESULTS
template <typename T>
error::Error GLES2DecoderPassthroughImpl::PatchGetBufferResults(GLenum target,
GLenum pname,
GLsizei bufsize,
GLsizei* length,
T* params) {
if (pname != GL_BUFFER_ACCESS_FLAGS) {
return error::kNoError;
}
// If there was no error, the buffer target should exist
DCHECK(bound_buffers_.find(target) != bound_buffers_.end());
if (target == GL_ELEMENT_ARRAY_BUFFER) {
LazilyUpdateCurrentlyBoundElementArrayBuffer();
}
GLuint current_client_buffer = bound_buffers_[target];
auto mapped_buffer_info_iter =
resources_->mapped_buffer_map.find(current_client_buffer);
if (mapped_buffer_info_iter == resources_->mapped_buffer_map.end()) {
// Buffer is not mapped, nothing to do
return error::kNoError;
}
// Buffer is mapped, patch the result with the original access flags
DCHECK_GE(bufsize, 1);
DCHECK_EQ(*length, 1);
params[0] = mapped_buffer_info_iter->second.original_access;
return error::kNoError;
}
template error::Error GLES2DecoderPassthroughImpl::PatchGetBufferResults(
GLenum target,
GLenum pname,
GLsizei bufsize,
GLsizei* length,
GLint64* params);
template error::Error GLES2DecoderPassthroughImpl::PatchGetBufferResults(
GLenum target,
GLenum pname,
GLsizei bufsize,
GLsizei* length,
GLint* params);
error::Error GLES2DecoderPassthroughImpl::
PatchGetFramebufferPixelLocalStorageParameterivANGLE(GLint plane,
GLenum pname,
GLsizei length,
GLint* params) {
// Likely a gl error if no parameters were returned
if (length < 1) {
return error::kNoError;
}
switch (pname) {
case GL_PIXEL_LOCAL_TEXTURE_NAME_ANGLE:
if (*params != 0 &&
!GetClientID(&resources_->texture_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
}
return error::kNoError;
}
error::Error
GLES2DecoderPassthroughImpl::PatchGetFramebufferAttachmentParameter(
GLenum target,
GLenum attachment,
GLenum pname,
GLsizei length,
GLint* params) {
// Likely a gl error if no parameters were returned
if (length < 1) {
return error::kNoError;
}
switch (pname) {
// If the attached object name was requested, it needs to be converted back
// to a client id.
case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: {
GLint object_type = GL_NONE;
api()->glGetFramebufferAttachmentParameterivEXTFn(
target, attachment, GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE,
&object_type);
switch (object_type) {
case GL_TEXTURE:
if (!GetClientID(&resources_->texture_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_RENDERBUFFER:
if (!GetClientID(&resources_->renderbuffer_id_map, *params, params)) {
return error::kInvalidArguments;
}
break;
case GL_NONE:
// Default framebuffer, don't transform the result
break;
default:
NOTREACHED();
}
} break;
// If the framebuffer is an emulated default framebuffer, all attachment
// object types are GL_FRAMEBUFFER_DEFAULT
case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
if (IsEmulatedFramebufferBound(target)) {
*params = GL_FRAMEBUFFER_DEFAULT;
}
break;
default:
break;
}
return error::kNoError;
}
// static
std::unique_ptr<GLES2DecoderPassthroughImpl::LazySharedContextState>
GLES2DecoderPassthroughImpl::LazySharedContextState::Create(
GLES2DecoderPassthroughImpl* impl) {
auto context =
std::make_unique<GLES2DecoderPassthroughImpl::LazySharedContextState>(
impl);
if (!context->Initialize()) {
return nullptr;
}
return context;
}
GLES2DecoderPassthroughImpl::LazySharedContextState::LazySharedContextState(
GLES2DecoderPassthroughImpl* impl)
: impl_(impl) {}
GLES2DecoderPassthroughImpl::LazySharedContextState::~LazySharedContextState() {
if (shared_context_state_) {
ScopedPixelLocalStorageInterrupt scoped_pls_interrupt(impl_);
ui::ScopedMakeCurrent smc(shared_context_state_->context(),
shared_context_state_->surface());
shared_context_state_.reset();
}
}
bool GLES2DecoderPassthroughImpl::LazySharedContextState::Initialize() {
auto gl_surface = gl::init::CreateOffscreenGLSurface(
impl_->context_->GetGLDisplayEGL(), gfx::Size());
if (!gl_surface) {
impl_->InsertError(
GL_INVALID_OPERATION,
"ContextResult::kFatalFailure: Failed to create GL Surface "
"for SharedContextState");
return false;
}
gl::GLContextAttribs attribs;
attribs.bind_generates_resource = false;
attribs.global_texture_share_group = true;
attribs.global_semaphore_share_group = true;
attribs.robust_resource_initialization = true;
attribs.robust_buffer_access = true;
attribs.allow_client_arrays = false;
auto gl_context = gl::init::CreateGLContext(impl_->context_->share_group(),
gl_surface.get(), attribs);
if (!gl_context) {
LOG(ERROR) << "Failed to create GLES3 context, fallback to GLES2.";
attribs.client_major_es_version = 2;
attribs.client_minor_es_version = 0;
gl_context = gl::init::CreateGLContext(impl_->context_->share_group(),
gl_surface.get(), attribs);
}
if (!gl_context) {
impl_->InsertError(
GL_INVALID_OPERATION,
"ContextResult::kFatalFailure: Failed to create GL Context "
"for SharedContextState");
return false;
}
// Make current context using `gl_context` and `gl_surface`
ScopedPixelLocalStorageInterrupt scoped_pls_interrupt(impl_);
ui::ScopedMakeCurrent smc(gl_context.get(), gl_surface.get());
ContextGroup* group = impl_->GetContextGroup();
const GpuPreferences& gpu_preferences = group->gpu_preferences();
const GpuDriverBugWorkarounds& workarounds =
group->feature_info()->workarounds();
// TODO(crbug.com/40064510): Add copying shared image to GL Texture support
// within Graphite.
shared_context_state_ = base::MakeRefCounted<SharedContextState>(
impl_->context_->share_group(), std::move(gl_surface),
std::move(gl_context),
/*use_virtualized_gl_contexts=*/false, base::DoNothing(),
GrContextType::kGL);
auto feature_info = base::MakeRefCounted<gles2::FeatureInfo>(
workarounds, group->gpu_feature_info());
if (!shared_context_state_->InitializeGL(gpu_preferences, feature_info)) {
impl_->InsertError(GL_INVALID_OPERATION,
"ContextResult::kFatalFailure: Failed to Initialize GL "
"for SharedContextState");
return false;
}
if (!shared_context_state_->InitializeSkia(gpu_preferences, workarounds,
/*cache=*/nullptr)) {
impl_->InsertError(GL_INVALID_OPERATION,
"ContextResult::kFatalFailure: Failed to Initialize "
"Skia for SharedContextState");
return false;
}
return true;
}
void GLES2DecoderPassthroughImpl::InsertError(GLenum error,
const std::string& message) {
errors_.insert(error);
LogGLDebugMessage(GL_DEBUG_SOURCE_API, GL_DEBUG_TYPE_ERROR, error,
GL_DEBUG_SEVERITY_HIGH, message.length(), message.c_str(),
GetLogger());
}
GLenum GLES2DecoderPassthroughImpl::PopError() {
GLenum error = GL_NO_ERROR;
if (!errors_.empty()) {
error = *errors_.begin();
errors_.erase(errors_.begin());
}
return error;
}
bool GLES2DecoderPassthroughImpl::FlushErrors() {
bool had_error = false;
GLenum error = glGetError();
while (error != GL_NO_ERROR) {
errors_.insert(error);
had_error = true;
// Check for context loss on out-of-memory errors
if (error == GL_OUT_OF_MEMORY && !WasContextLost() &&
lose_context_when_out_of_memory_) {
error::ContextLostReason other = error::kOutOfMemory;
if (CheckResetStatus()) {
other = error::kUnknown;
} else {
// Need to lose current context before broadcasting!
MarkContextLost(error::kOutOfMemory);
}
group_->LoseContexts(other);
break;
}
error = glGetError();
}
return had_error;
}
bool GLES2DecoderPassthroughImpl::IsIgnoredCap(GLenum cap) const {
switch (cap) {
case GL_DEBUG_OUTPUT:
return true;
case GL_PRIMITIVE_RESTART_FIXED_INDEX:
// Disable setting primitive restart at the command decoder level until
// it's blocked in ANGLE for WebGL contexts.
return feature_info_->IsWebGLContext();
default:
return false;
}
}
bool GLES2DecoderPassthroughImpl::CheckResetStatus() {
DCHECK(!WasContextLost());
DCHECK(context_->IsCurrent(nullptr));
// If the reason for the call was a GL error, we can try to determine the
// reset status more accurately.
GLenum driver_status = context_->CheckStickyGraphicsResetStatus();
if (driver_status == GL_NO_ERROR) {
return false;
}
switch (driver_status) {
case GL_GUILTY_CONTEXT_RESET:
MarkContextLost(error::kGuilty);
break;
case GL_INNOCENT_CONTEXT_RESET:
MarkContextLost(error::kInnocent);
break;
case GL_UNKNOWN_CONTEXT_RESET:
MarkContextLost(error::kUnknown);
break;
default:
NOTREACHED();
}
reset_by_robustness_extension_ = true;
return true;
}
bool GLES2DecoderPassthroughImpl::IsEmulatedQueryTarget(GLenum target) const {
switch (target) {
case GL_COMMANDS_COMPLETED_CHROMIUM:
case GL_READBACK_SHADOW_COPIES_UPDATED_CHROMIUM:
case GL_COMMANDS_ISSUED_CHROMIUM:
case GL_COMMANDS_ISSUED_TIMESTAMP_CHROMIUM:
case GL_ASYNC_PIXEL_PACK_COMPLETED_CHROMIUM:
case GL_GET_ERROR_QUERY_CHROMIUM:
case GL_PROGRAM_COMPLETION_QUERY_CHROMIUM:
return true;
default:
return false;
}
}
bool GLES2DecoderPassthroughImpl::OnlyHasPendingProgramCompletionQueries() {
return std::ranges::all_of(pending_queries_, [](const auto& query) {
return query.target == GL_PROGRAM_COMPLETION_QUERY_CHROMIUM;
});
}
PassthroughProgramCache*
GLES2DecoderPassthroughImpl::get_passthrough_program_cache() const {
return static_cast<PassthroughProgramCache*>(group_->get_program_cache());
}
error::Error GLES2DecoderPassthroughImpl::ProcessQueries(bool did_finish) {
bool program_completion_query_deferred = false;
while (!pending_queries_.empty()) {
PendingQuery& query = pending_queries_.front();
GLuint result_available = GL_FALSE;
GLuint64 result = 0;
switch (query.target) {
case GL_COMMANDS_COMPLETED_CHROMIUM:
DCHECK(query.commands_completed_fence != nullptr);
// Note: |did_finish| guarantees that the GPU has passed the fence but
// we cannot assume that GLFence::HasCompleted() will return true yet as
// that's not guaranteed by all GLFence implementations.
result_available =
did_finish || query.commands_completed_fence->HasCompleted();
result = result_available;
break;
case GL_COMMANDS_ISSUED_CHROMIUM:
result_available = GL_TRUE;
result = query.commands_issued_time.InMicroseconds();
break;
case GL_COMMANDS_ISSUED_TIMESTAMP_CHROMIUM:
result_available = GL_TRUE;
DCHECK_GT(
query.commands_issued_timestamp.since_origin().InMicroseconds(), 0);
result =
query.commands_issued_timestamp.since_origin().InMicroseconds();
break;
case GL_ASYNC_PIXEL_PACK_COMPLETED_CHROMIUM:
// Initialize the result to being available. Will be marked as
// unavailable if any pending read pixels operations reference this
// query.
result_available = GL_TRUE;
result = GL_TRUE;
for (const PendingReadPixels& pending_read_pixels :
pending_read_pixels_) {
if (pending_read_pixels.waiting_async_pack_queries.count(
query.service_id) > 0) {
// Async read pixel processing happens before query processing. If
// there was a finish then there should be no pending read pixels.
DCHECK(!did_finish);
result_available = GL_FALSE;
result = GL_FALSE;
break;
}
}
break;
case GL_READBACK_SHADOW_COPIES_UPDATED_CHROMIUM:
DCHECK(query.buffer_shadow_update_fence);
if (did_finish || query.buffer_shadow_update_fence->HasCompleted()) {
ReadBackBuffersIntoShadowCopies(query.buffer_shadow_updates);
result_available = GL_TRUE;
result = 0;
}
break;
case GL_GET_ERROR_QUERY_CHROMIUM:
result_available = GL_TRUE;
FlushErrors();
result = PopError();
break;
case GL_PROGRAM_COMPLETION_QUERY_CHROMIUM:
GLint status;
if (!api()->glIsProgramFn(query.program_service_id)) {
status = GL_TRUE;
} else {
api()->glGetProgramivFn(query.program_service_id,
GL_COMPLETION_STATUS_KHR, &status);
}
result_available = (status == GL_TRUE);
if (!result_available) {
// Move the query to the end of queue, so that other queries may have
// chance to be processed.
auto temp = std::move(query);
pending_queries_.pop_front();
pending_queries_.emplace_back(std::move(temp));
if (did_finish && !OnlyHasPendingProgramCompletionQueries()) {
continue;
} else {
program_completion_query_deferred = true;
}
result = 0;
} else {
GLint link_status = 0;
api()->glGetProgramivFn(query.program_service_id, GL_LINK_STATUS,
&link_status);
result = link_status;
// Send back all program information as early as possible to be cached
// at the client side.
GLuint program_client_id = 0u;
GetClientID(&resources_->program_id_map, query.program_service_id,
&program_client_id);
// TODO(jie.a.chen@intel.com): Merge the all return data into 1 IPC
// message if it becomes a concern.
std::vector<uint8_t> program_info;
error::Error error =
DoGetProgramInfoCHROMIUM(program_client_id, &program_info);
if (error == error::kNoError) {
ReturnProgramInfoData(client(), program_info,
GLES2ReturnDataType::kES2ProgramInfo,
program_client_id);
}
if (feature_info_->IsWebGL2OrES3OrHigherContext()) {
std::vector<uint8_t> uniform_blocks;
error =
DoGetUniformBlocksCHROMIUM(program_client_id, &uniform_blocks);
if (error == error::kNoError) {
ReturnProgramInfoData(client(), uniform_blocks,
GLES2ReturnDataType::kES3UniformBlocks,
program_client_id);
}
std::vector<uint8_t> transform_feedback_varyings;
error = DoGetTransformFeedbackVaryingsCHROMIUM(
program_client_id, &transform_feedback_varyings);
if (error == error::kNoError) {
ReturnProgramInfoData(
client(), transform_feedback_varyings,
GLES2ReturnDataType::kES3TransformFeedbackVaryings,
program_client_id);
}
std::vector<uint8_t> uniforms;
error = DoGetUniformsES3CHROMIUM(program_client_id, &uniforms);
if (error == error::kNoError) {
ReturnProgramInfoData(client(), uniforms,
GLES2ReturnDataType::kES3Uniforms,
program_client_id);
}
}
}
break;
default:
DCHECK(!IsEmulatedQueryTarget(query.target));
if (did_finish) {
result_available = GL_TRUE;
} else {
api()->glGetQueryObjectuivFn(
query.service_id, GL_QUERY_RESULT_AVAILABLE, &result_available);
}
if (result_available == GL_TRUE) {
if (feature_info_->feature_flags().ext_disjoint_timer_query) {
api()->glGetQueryObjectui64vFn(query.service_id, GL_QUERY_RESULT,
&result);
} else {
GLuint temp_result = 0;
api()->glGetQueryObjectuivFn(query.service_id, GL_QUERY_RESULT,
&temp_result);
result = temp_result;
}
}
break;
}
if (!result_available) {
break;
}
// Mark the query as complete
query.sync->result = result;
base::subtle::Release_Store(&query.sync->process_count, query.submit_count);
pending_queries_.pop_front();
}
// If api()->glFinishFn() has been called, all of our queries should be
// completed.
DCHECK(!did_finish || pending_queries_.empty() ||
program_completion_query_deferred);
return error::kNoError;
}
void GLES2DecoderPassthroughImpl::RemovePendingQuery(GLuint service_id) {
auto pending_iter = std::ranges::find(pending_queries_, service_id,
&PendingQuery::service_id);
if (pending_iter != pending_queries_.end()) {
QuerySync* sync = pending_iter->sync;
sync->result = 0;
base::subtle::Release_Store(&sync->process_count,
pending_iter->submit_count);
pending_queries_.erase(pending_iter);
}
}
void GLES2DecoderPassthroughImpl::ReadBackBuffersIntoShadowCopies(
const BufferShadowUpdateMap& updates) {
if (updates.empty()) {
return;
}
GLint old_binding = 0;
api()->glGetIntegervFn(GL_ARRAY_BUFFER_BINDING, &old_binding);
for (const auto& u : updates) {
GLuint client_id = u.first;
GLuint service_id = 0;
if (!resources_->buffer_id_map.GetServiceID(client_id, &service_id)) {
// Buffer no longer exists, this shadow update should have been removed by
// DoDeleteBuffers
NOTREACHED();
}
const auto& update = u.second;
void* shadow = update.shm->GetDataAddress(update.shm_offset, update.size);
DCHECK(shadow);
api()->glBindBufferFn(GL_ARRAY_BUFFER, service_id);
GLint already_mapped = GL_TRUE;
api()->glGetBufferParameterivFn(GL_ARRAY_BUFFER, GL_BUFFER_MAPPED,
&already_mapped);
if (already_mapped) {
// The buffer is already mapped by the client. It's okay that the shadow
// copy will be out-of-date, because the client will never read it:
// * Client issues READBACK_SHADOW_COPIES_UPDATED_CHROMIUM query
// * Client maps buffer
// * Client receives signal that the query completed
// * Client unmaps buffer - invalidating the shadow copy
// * Client maps buffer to read back - hits the round-trip path
continue;
}
void* mapped = api()->glMapBufferRangeFn(GL_ARRAY_BUFFER, 0, update.size,
GL_MAP_READ_BIT);
if (!mapped) {
DLOG(ERROR) << "glMapBufferRange unexpectedly returned NULL";
MarkContextLost(error::kOutOfMemory);
group_->LoseContexts(error::kUnknown);
return;
}
memcpy(shadow, mapped, update.size);
bool unmap_ok = api()->glUnmapBufferFn(GL_ARRAY_BUFFER);
if (unmap_ok == GL_FALSE) {
DLOG(ERROR) << "glUnmapBuffer unexpectedly returned GL_FALSE";
MarkContextLost(error::kUnknown);
group_->LoseContexts(error::kUnknown);
return;
}
}
// Restore original GL_ARRAY_BUFFER binding
api()->glBindBufferFn(GL_ARRAY_BUFFER, old_binding);
}
error::Error GLES2DecoderPassthroughImpl::ProcessReadPixels(bool did_finish) {
while (!pending_read_pixels_.empty()) {
const PendingReadPixels& pending_read_pixels = pending_read_pixels_.front();
if (did_finish || pending_read_pixels.fence->HasCompleted()) {
using Result = cmds::ReadPixels::Result;
Result* result = nullptr;
if (pending_read_pixels.result_shm_id != 0) {
result = GetSharedMemoryAs<Result*>(
pending_read_pixels.result_shm_id,
pending_read_pixels.result_shm_offset, sizeof(*result));
if (!result) {
api()->glDeleteBuffersARBFn(1,
&pending_read_pixels.buffer_service_id);
pending_read_pixels_.pop_front();
break;
}
}
void* pixels =
GetSharedMemoryAs<void*>(pending_read_pixels.pixels_shm_id,
pending_read_pixels.pixels_shm_offset,
pending_read_pixels.pixels_size);
if (!pixels) {
api()->glDeleteBuffersARBFn(1, &pending_read_pixels.buffer_service_id);
pending_read_pixels_.pop_front();
break;
}
api()->glBindBufferFn(GL_PIXEL_PACK_BUFFER,
pending_read_pixels.buffer_service_id);
void* data = nullptr;
if (feature_info_->feature_flags().map_buffer_range) {
data = api()->glMapBufferRangeFn(GL_PIXEL_PACK_BUFFER, 0,
pending_read_pixels.pixels_size,
GL_MAP_READ_BIT);
} else {
data = api()->glMapBufferFn(GL_PIXEL_PACK_BUFFER, GL_READ_ONLY);
}
if (!data) {
InsertError(GL_OUT_OF_MEMORY, "Failed to map pixel pack buffer.");
pending_read_pixels_.pop_front();
break;
}
memcpy(pixels, data, pending_read_pixels.pixels_size);
api()->glUnmapBufferFn(GL_PIXEL_PACK_BUFFER);
api()->glBindBufferFn(GL_PIXEL_PACK_BUFFER,
resources_->buffer_id_map.GetServiceIDOrInvalid(
bound_buffers_[GL_PIXEL_PACK_BUFFER]));
api()->glDeleteBuffersARBFn(1, &pending_read_pixels.buffer_service_id);
if (result != nullptr) {
result->success = 1;
}
pending_read_pixels_.pop_front();
}
}
// If api()->glFinishFn() has been called, all of our fences should be
// completed.
DCHECK(!did_finish || pending_read_pixels_.empty());
return error::kNoError;
}
void GLES2DecoderPassthroughImpl::ProcessDescheduleUntilFinished() {
if (deschedule_until_finished_fences_.size() < 2) {
return;
}
DCHECK_EQ(2u, deschedule_until_finished_fences_.size());
if (!deschedule_until_finished_fences_[0]->HasCompleted()) {
return;
}
TRACE_EVENT_NESTABLE_ASYNC_END0(
"cc", "GLES2DecoderPassthroughImpl::DescheduleUntilFinished",
TRACE_ID_LOCAL(this));
deschedule_until_finished_fences_.pop_front();
client()->OnRescheduleAfterFinished();
}
void GLES2DecoderPassthroughImpl::UpdateTextureBinding(
GLenum target,
GLuint client_id,
TexturePassthrough* texture) {
GLuint texture_service_id = texture ? texture->service_id() : 0;
size_t cur_texture_unit = active_texture_unit_;
auto& target_bound_textures =
bound_textures_[static_cast<size_t>(GLenumToTextureTarget(target))];
for (size_t bound_texture_index = 0;
bound_texture_index < target_bound_textures.size();
bound_texture_index++) {
if (target_bound_textures[bound_texture_index].client_id == client_id) {
// Update the active texture unit if needed
if (bound_texture_index != cur_texture_unit) {
api()->glActiveTextureFn(
static_cast<GLenum>(GL_TEXTURE0 + bound_texture_index));
cur_texture_unit = bound_texture_index;
}
// Update the texture binding
api()->glBindTextureFn(target, texture_service_id);
target_bound_textures[bound_texture_index].texture = texture;
}
}
// Reset the active texture unit if it was changed
if (cur_texture_unit != active_texture_unit_) {
api()->glActiveTextureFn(
static_cast<GLenum>(GL_TEXTURE0 + active_texture_unit_));
}
}
void GLES2DecoderPassthroughImpl::RebindTexture(TexturePassthrough* texture) {
DCHECK(texture != nullptr);
size_t cur_texture_unit = active_texture_unit_;
GLenum target = texture->target();
auto& target_bound_textures =
bound_textures_[static_cast<size_t>(GLenumToTextureTarget(target))];
for (size_t bound_texture_index = 0;
bound_texture_index < target_bound_textures.size();
bound_texture_index++) {
if (target_bound_textures[bound_texture_index].texture == texture) {
// Update the active texture unit if needed
if (bound_texture_index != cur_texture_unit) {
api()->glActiveTextureFn(
static_cast<GLenum>(GL_TEXTURE0 + bound_texture_index));
cur_texture_unit = bound_texture_index;
}
// Update the texture binding
api()->glBindTextureFn(target, texture->service_id());
}
}
// Reset the active texture unit if it was changed
if (cur_texture_unit != active_texture_unit_) {
api()->glActiveTextureFn(
static_cast<GLenum>(GL_TEXTURE0 + active_texture_unit_));
}
}
void GLES2DecoderPassthroughImpl::UpdateTextureSizeFromTexturePassthrough(
TexturePassthrough* texture,
GLuint client_id) {
if (texture == nullptr) {
return;
}
CheckErrorCallbackState();
GLenum target = texture->target();
TextureTarget internal_texture_type = GLenumToTextureTarget(target);
BoundTexture& bound_texture =
bound_textures_[static_cast<size_t>(internal_texture_type)]
[active_texture_unit_];
bool needs_rebind = bound_texture.texture == texture;
if (needs_rebind) {
glBindTexture(target, texture->service_id());
}
UpdateBoundTexturePassthroughSize(api(), texture);
// If a client ID is available, notify the discardable manager of the size
// change
if (client_id != 0) {
group_->passthrough_discardable_manager()->UpdateTextureSize(
client_id, group_.get(), texture->estimated_size());
}
if (needs_rebind) {
GLuint old_texture =
bound_texture.texture ? bound_texture.texture->service_id() : 0;
glBindTexture(target, old_texture);
}
DCHECK(!CheckErrorCallbackState());
}
void GLES2DecoderPassthroughImpl::UpdateTextureSizeFromTarget(GLenum target) {
GLenum texture_type = TextureTargetToTextureType(target);
TextureTarget internal_texture_type = GLenumToTextureTarget(texture_type);
DCHECK(internal_texture_type != TextureTarget::kUnkown);
BoundTexture& bound_texture =
bound_textures_[static_cast<size_t>(internal_texture_type)]
[active_texture_unit_];
UpdateTextureSizeFromTexturePassthrough(bound_texture.texture.get(),
bound_texture.client_id);
}
void GLES2DecoderPassthroughImpl::UpdateTextureSizeFromClientID(
GLuint client_id) {
scoped_refptr<TexturePassthrough> texture;
if (resources_->texture_object_map.GetServiceID(client_id, &texture) &&
texture != nullptr) {
UpdateTextureSizeFromTexturePassthrough(texture.get(), client_id);
}
}
void GLES2DecoderPassthroughImpl::
LazilyUpdateCurrentlyBoundElementArrayBuffer() {
if (!bound_element_array_buffer_dirty_)
return;
GLint service_element_array_buffer = 0;
api_->glGetIntegervFn(GL_ELEMENT_ARRAY_BUFFER_BINDING,
&service_element_array_buffer);
GLuint client_element_array_buffer = 0;
if (service_element_array_buffer != 0) {
GetClientID(&resources_->buffer_id_map,
static_cast<GLuint>(service_element_array_buffer),
&client_element_array_buffer);
}
bound_buffers_[GL_ELEMENT_ARRAY_BUFFER] = client_element_array_buffer;
bound_element_array_buffer_dirty_ = false;
}
error::Error GLES2DecoderPassthroughImpl::HandleSetActiveURLCHROMIUM(
uint32_t immediate_data_size,
const volatile void* cmd_data) {
const volatile cmds::SetActiveURLCHROMIUM& c =
*static_cast<const volatile cmds::SetActiveURLCHROMIUM*>(cmd_data);
Bucket* url_bucket = GetBucket(c.url_bucket_id);
static constexpr size_t kMaxStrLen = 1024;
if (!url_bucket || url_bucket->size() == 0 ||
url_bucket->size() > kMaxStrLen + 1) {
return error::kInvalidArguments;
}
size_t size = url_bucket->size() - 1;
const char* url_str = url_bucket->GetDataAs<const char*>(0, size);
if (!url_str)
return error::kInvalidArguments;
GURL url(std::string_view(url_str, size));
client()->SetActiveURL(std::move(url));
return error::kNoError;
}
void GLES2DecoderPassthroughImpl::VerifyServiceTextureObjectsExist() {
resources_->texture_object_map.ForEach(
[this](GLuint client_id, scoped_refptr<TexturePassthrough> texture) {
DCHECK_EQ(GL_TRUE, api()->glIsTextureFn(texture->service_id()));
});
}
bool GLES2DecoderPassthroughImpl::IsEmulatedFramebufferBound(
GLenum target) const {
if (!emulated_back_buffer_ && !external_default_framebuffer_) {
return false;
}
if ((target == GL_FRAMEBUFFER || target == GL_DRAW_FRAMEBUFFER) &&
bound_draw_framebuffer_ == 0) {
return true;
}
if (target == GL_READ_FRAMEBUFFER && bound_read_framebuffer_ == 0) {
return true;
}
return false;
}
// static
GLES2DecoderPassthroughImpl::TextureTarget
GLES2DecoderPassthroughImpl::GLenumToTextureTarget(GLenum target) {
switch (target) {
case GL_TEXTURE_2D:
return TextureTarget::k2D;
case GL_TEXTURE_CUBE_MAP:
return TextureTarget::kCubeMap;
case GL_TEXTURE_2D_ARRAY:
return TextureTarget::k2DArray;
case GL_TEXTURE_3D:
return TextureTarget::k3D;
case GL_TEXTURE_2D_MULTISAMPLE:
return TextureTarget::k2DMultisample;
case GL_TEXTURE_EXTERNAL_OES:
return TextureTarget::kExternal;
case GL_TEXTURE_RECTANGLE_ANGLE:
return TextureTarget::kRectangle;
case GL_TEXTURE_BUFFER:
return TextureTarget::kBuffer;
case GL_TEXTURE_CUBE_MAP_ARRAY:
return TextureTarget::kCubeMapArray;
case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
return TextureTarget::k2DMultisampleArray;
default:
return TextureTarget::kUnkown;
}
}
bool GLES2DecoderPassthroughImpl::CheckErrorCallbackState() {
bool had_error_ = had_error_callback_;
had_error_callback_ = false;
if (had_error_) {
// Make sure lose-context-on-OOM logic is triggered as early as possible.
FlushErrors();
}
return had_error_;
}
#define GLES2_CMD_OP(name) \
{ \
&GLES2DecoderPassthroughImpl::Handle##name, \
cmds::name::kArgFlags, \
cmds::name::cmd_flags, \
sizeof(cmds::name) / sizeof(CommandBufferEntry) - 1, \
}, /* NOLINT */
constexpr GLES2DecoderPassthroughImpl::CommandInfo
GLES2DecoderPassthroughImpl::command_info[] = {
GLES2_COMMAND_LIST(GLES2_CMD_OP)};
#undef GLES2_CMD_OP
} // namespace gles2
} // namespace gpu
|