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
|
#pragma once
#ifndef DOXYGEN_GENERATING_OUTPUT
namespace Jazz2::Shaders
{
constexpr std::uint64_t Version = 8;
constexpr char LightingVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec4 vTexCoords;
out vec4 vColor;
void main() {
vec2 aPosition = vec2(0.5 - float(gl_VertexID >> 1), 0.5 - float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vTexCoords = texRect;
vColor = vec4(color.x, color.y, aPosition.x * 2.0, aPosition.y * 2.0);
}
)";
constexpr char BatchedLightingVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
struct Instance
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
layout (std140) uniform InstancesBlock
{
#ifndef BATCH_SIZE
#define BATCH_SIZE (585) // 64 Kb / 112 b
#endif
Instance[BATCH_SIZE] instances;
} block;
out vec4 vTexCoords;
out vec4 vColor;
#define i block.instances[gl_VertexID / 6]
void main() {
vec2 aPosition = vec2(-0.5 + float(((gl_VertexID + 2) / 3) % 2), -0.5 + float(((gl_VertexID + 1) / 3) % 2));
vec4 position = vec4(aPosition.x * i.spriteSize.x, aPosition.y * i.spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * i.modelMatrix * position;
vTexCoords = i.texRect;
vColor = vec4(i.color.x, i.color.y, aPosition.x * 2.0, aPosition.y * 2.0);
}
)";
constexpr char LightingFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec4 vTexCoords;
in vec4 vColor;
out vec4 fragColor;
float lightBlend(float t) {
return t * t * t;
}
void main() {
vec2 center = vTexCoords.xy;
float radiusNear = vTexCoords.z;
float intensity = vColor.r;
float brightness = vColor.g;
float dist = length(vColor.zw);
if (dist > 1.0) {
fragColor = vec4(0.0, 0.0, 0.0, 1.0);
return;
}
// TODO: Normal maps
/*vec4 clrNormal = texture(uTexture, vec2(gl_FragCoord) / ViewSize);
vec3 normal = normalize(clrNormal.xyz - vec3(0.5, 0.5, 0.5));
normal.z = -normal.z;
vec3 lightDir = vec3((center.x - gl_FragCoord.x), (center.y - gl_FragCoord.y), 0);
// Diffuse lighting
float diffuseFactor = 1.0 - max(dot(normal, normalize(lightDir)), 0.0);
diffuseFactor = diffuseFactor * 0.8 + 0.2;*/
float diffuseFactor = 1.0f;
float strength = diffuseFactor * lightBlend(clamp(1.0 - ((dist - radiusNear) / (1.0 - radiusNear)), 0.0, 1.0));
fragColor = vec4(strength * intensity, strength * brightness, 0.0, 1.0);
}
)";
constexpr char BlurFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
uniform vec2 uPixelOffset;
uniform vec2 uDirection;
in vec2 vTexCoords;
out vec4 fragColor;
void main() {
vec4 color = vec4(0.0);
vec2 off1 = vec2(1.3846153846) * uPixelOffset * uDirection;
vec2 off2 = vec2(3.2307692308) * uPixelOffset * uDirection;
color += texture(uTexture, vTexCoords) * 0.2270270270;
color += texture(uTexture, vTexCoords + off1) * 0.3162162162;
color += texture(uTexture, vTexCoords - off1) * 0.3162162162;
color += texture(uTexture, vTexCoords + off2) * 0.0702702703;
color += texture(uTexture, vTexCoords - off2) * 0.0702702703;
fragColor = color;
}
)";
constexpr char DownsampleFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
uniform vec2 uPixelOffset;
in vec2 vTexCoords;
out vec4 fragColor;
void main() {
vec4 color = texture(uTexture, vTexCoords);
color += texture(uTexture, vTexCoords + vec2(0.0, uPixelOffset.y));
color += texture(uTexture, vTexCoords + vec2(uPixelOffset.x, 0.0));
color += texture(uTexture, vTexCoords + uPixelOffset);
fragColor = vec4(0.25) * color;
}
)";
constexpr char CombineVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vTexCoords;
out vec2 vViewSize;
out vec2 vViewSizeInv;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vTexCoords = vec2(aPosition.x * texRect.x + texRect.y, aPosition.y * texRect.z + texRect.w);
vViewSize = spriteSize;
vViewSizeInv = vec2(1.0) / spriteSize;
}
)";
constexpr char CombineFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
uniform sampler2D uTextureLighting;
uniform sampler2D uTextureBlurHalf;
uniform sampler2D uTextureBlurQuarter;
uniform vec4 uAmbientColor;
uniform float uTime;
in vec2 vTexCoords;
in vec2 vViewSize;
in vec2 vViewSizeInv;
out vec4 fragColor;
vec2 hash2D(in vec2 p) {
float h = dot(p, vec2(12.9898, 78.233));
float h2 = dot(p, vec2(37.271, 377.632));
return -1.0 + 2.0 * vec2(fract(sin(h) * 43758.5453), fract(sin(h2) * 43758.5453));
}
vec2 noiseTexCoords(vec2 position) {
vec2 seed = position + fract(uTime * 0.01);
return clamp(position + hash2D(seed) * vViewSizeInv * 1.4, vec2(0.0), vec2(1.0));
}
void main() {
vec4 blur1 = texture(uTextureBlurHalf, vTexCoords);
vec4 blur2 = texture(uTextureBlurQuarter, vTexCoords);
vec4 main = texture(uTexture, vTexCoords);
vec4 light = texture(uTextureLighting, noiseTexCoords(vTexCoords));
vec4 blur = (blur1 + blur2) * vec4(0.5);
float gray = dot(blur.rgb, vec3(0.299, 0.587, 0.114));
blur = vec4(gray, gray, gray, blur.a);
fragColor = mix(mix(
main * (1.0 + light.g) + max(light.g - 0.7, 0.0) * vec4(1.0),
blur,
vec4(clamp((1.0 - light.r) / sqrt(max(uAmbientColor.w, 0.35)), 0.0, 1.0))
), uAmbientColor, vec4(1.0 - light.r));
fragColor.a = 1.0;
}
)";
constexpr char CombineWithWaterFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision highp float;
#endif
uniform sampler2D uTexture;
uniform sampler2D uTextureLighting;
uniform sampler2D uTextureBlurHalf;
uniform sampler2D uTextureBlurQuarter;
uniform sampler2D uTextureNoise;
uniform vec4 uAmbientColor;
uniform float uTime;
uniform vec2 uCameraPos;
uniform float uWaterLevel;
in vec2 vTexCoords;
in vec2 vViewSize;
in vec2 vViewSizeInv;
out vec4 fragColor;
vec2 hash2D(in vec2 p) {
float h = dot(p, vec2(12.9898, 78.233));
float h2 = dot(p, vec2(37.271, 377.632));
return -1.0 + 2.0 * vec2(fract(sin(h) * 43758.5453), fract(sin(h2) * 43758.5453));
}
vec2 noiseTexCoords(vec2 position) {
vec2 seed = position + fract(uTime * 0.01);
return clamp(position + hash2D(seed) * vViewSizeInv * 1.4, vec2(0.0), vec2(1.0));
}
float wave(float x, float time) {
float waveOffset = cos((x - time) * 60.0) * 0.004
+ cos((x - 2.0 * time) * 20.0) * 0.008
+ sin((x + 2.0 * time) * 35.0) * 0.01
+ cos((x + 4.0 * time) * 70.0) * 0.001;
return waveOffset * 0.4;
}
float aastep(float threshold, float value) {
float afwidth = length(vec2(dFdx(value), dFdy(value))) * 0.70710678118654757;
return smoothstep(threshold - afwidth, threshold + afwidth, value);
}
// Simplex Noise
vec3 permute(vec3 x) {
return mod(((x*34.0)+1.0)*x, 289.0);
}
float snoise(vec2 v) {
const vec4 C = vec4(0.211324865405187, 0.366025403784439, -0.577350269189626, 0.024390243902439);
vec2 i = floor(v + dot(v, C.yy));
vec2 x0 = v - i + dot(i, C.xx);
vec2 i1 = (x0.x > x0.y) ? vec2(1.0, 0.0) : vec2(0.0, 1.0);
vec4 x12 = x0.xyxy + C.xxzz;
x12.xy -= i1;
i = mod(i, 289.0);
vec3 p = permute(permute(i.y + vec3(0.0, i1.y, 1.0)) + i.x + vec3(0.0, i1.x, 1.0 ));
vec3 m = max(0.5 - vec3(dot(x0,x0), dot(x12.xy,x12.xy), dot(x12.zw, x12.zw)), 0.0);
m = m * m;
m = m * m;
vec3 x = 2.0 * fract(p * C.www) - 1.0;
vec3 h = abs(x) - 0.5;
vec3 ox = floor(x + 0.5);
vec3 a0 = x - ox;
m *= 1.79284291400159 - 0.85373472095314 * (a0 * a0 + h * h);
vec3 g;
g.x = a0.x * x0.x + h.x * x0.y;
g.yz = a0.yz * x12.xz + h.yz * x12.yw;
return 130.0 * dot(m, g);
}
void main() {
vec3 waterColor = vec3(0.4, 0.6, 0.8);
vec2 uvLocal = vTexCoords;
vec2 uvWorldCenter = (uCameraPos.xy * vViewSizeInv.xy);
vec2 uvWorld = uvLocal + uvWorldCenter;
float waveHeight = wave(uvWorld.x, uTime);
float isTexelBelow = aastep(waveHeight, uvLocal.y - uWaterLevel);
float isTexelAbove = 1.0 - isTexelBelow;
// Displacement
vec2 disPos = uvWorld * vec2(0.1) + vec2(mod(uTime * 0.4, 2.0));
vec2 dis = (texture(uTextureNoise, disPos).xy - vec2(0.5)) * vec2(0.01);
vec2 uv = clamp(uvLocal + (vec2(0.004 * sin(uTime * 16.0 + uvWorld.y * 20.0), 0.0) + dis) * vec2(isTexelBelow), vec2(0.0), vec2(1.0));
vec4 main = texture(uTexture, uv);
// Chromatic Aberration
float aberration = abs(uvLocal.x - 0.5) * 0.012;
float red = texture(uTexture, vec2(uv.x - aberration, uv.y)).r;
float blue = texture(uTexture, vec2(uv.x + aberration, uv.y)).b;
main.rgb = mix(main.rgb, waterColor * (0.4 + 1.2 * vec3(red, main.g, blue)), vec3(isTexelBelow * 0.5));
// Rays
vec2 uvNormalized = mod(uvLocal / vViewSizeInv, 720.0) / 720.0;
float noisePos = uvWorldCenter.x * 6.0 + uvLocal.x * 1.4 + uvWorldCenter.y * 0.5 + (1.0 - uvNormalized.x * 1.2 - uvNormalized.y) * -5.0;
float rays = snoise(vec2(noisePos, uTime * 5.0 + uvWorldCenter.y)) * 0.55 + 0.3;
main.rgb += vec3(rays * isTexelBelow * max(1.0 - uvLocal.y * 1.4, 0.0) * 0.6);
// Waves
float topDist = abs(uvLocal.y - uWaterLevel - waveHeight);
float isNearTop = 1.0 - aastep(vViewSizeInv.y * 2.8, topDist);
float isVeryNearTop = 1.0 - aastep(vViewSizeInv.y * (0.8 - 100.0 * waveHeight), topDist);
float topColorBlendFac = isNearTop * isTexelBelow * 0.6;
main.rgb = mix(main.rgb, texture(uTexture, vec2(uvLocal.x,
(uWaterLevel - uvLocal.y + uWaterLevel) * 0.97 - waveHeight + vViewSizeInv.y
)).rgb, vec3(topColorBlendFac));
main.rgb += vec3(0.2 * isVeryNearTop);
// Lighting
vec4 blur1 = texture(uTextureBlurHalf, uv);
vec4 blur2 = texture(uTextureBlurQuarter, uv);
vec4 light = texture(uTextureLighting, noiseTexCoords(uv));
vec4 blur = (blur1 + blur2) * vec4(0.5);
float gray = dot(blur.rgb, vec3(0.299, 0.587, 0.114));
blur = vec4(gray, gray, gray, blur.a);
float darknessStrength = (1.0 - light.r);
// Darkness above water
if (uWaterLevel < 0.4) {
float aboveWaterDarkness = isTexelAbove * (0.4 - uWaterLevel);
darknessStrength = min(1.0, darknessStrength + aboveWaterDarkness);
}
fragColor = mix(mix(
main * (1.0 + light.g) + max(light.g - 0.7, 0.0) * vec4(1.0),
blur,
vec4(clamp((1.0 - light.r) / sqrt(max(uAmbientColor.w, 0.35)), 0.0, 1.0))
), uAmbientColor, vec4(darknessStrength));
fragColor.a = 1.0;
}
)";
constexpr char CombineWithWaterLowFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
uniform sampler2D uTextureLighting;
uniform sampler2D uTextureBlurHalf;
uniform sampler2D uTextureBlurQuarter;
uniform vec4 uAmbientColor;
uniform float uTime;
uniform vec2 uCameraPos;
uniform float uWaterLevel;
in vec2 vTexCoords;
in vec2 vViewSize;
in vec2 vViewSizeInv;
out vec4 fragColor;
vec2 hash2D(in vec2 p) {
float h = dot(p, vec2(12.9898, 78.233));
float h2 = dot(p, vec2(37.271, 377.632));
return -1.0 + 2.0 * vec2(fract(sin(h) * 43758.5453), fract(sin(h2) * 43758.5453));
}
vec2 noiseTexCoords(vec2 position) {
vec2 seed = position + fract(uTime * 0.01);
return clamp(position + hash2D(seed) * vViewSizeInv * 1.4, vec2(0.0), vec2(1.0));
}
void main() {
vec3 waterColor = vec3(0.4, 0.6, 0.8);
vec2 uvLocal = vTexCoords;
vec2 uvWorldCenter = (uCameraPos.xy * vViewSizeInv.xy);
vec2 uvWorld = uvLocal + uvWorldCenter;
float isTexelBelow = 1.0 - step(uvLocal.y, uWaterLevel);
float isTexelAbove = 1.0 - isTexelBelow;
vec2 uv = clamp(uvLocal + vec2(0.008 * sin(uTime * 16.0 + uvWorld.y * 20.0) * isTexelBelow, 0.0), vec2(0.0), vec2(1.0));
vec4 main = texture(uTexture, uv);
// Waves
float topDist = abs(uvLocal.y - uWaterLevel);
float topGradient = max(1.0 - topDist, 0.0);
float isNearTop = 0.2 * topGradient * topGradient;
float isVeryNearTop = 1.0 - step(vViewSizeInv.y, topDist);
main.rgb = mix(main.rgb, waterColor, vec3(isTexelBelow * 0.4)) + vec3((isNearTop + 0.2 * isVeryNearTop) * isTexelBelow);
// Lighting
vec4 blur1 = texture(uTextureBlurHalf, uv);
vec4 blur2 = texture(uTextureBlurQuarter, uv);
vec4 light = texture(uTextureLighting, noiseTexCoords(uv));
vec4 blur = (blur1 + blur2) * vec4(0.5);
float gray = dot(blur.rgb, vec3(0.299, 0.587, 0.114));
blur = vec4(gray, gray, gray, blur.a);
float darknessStrength = (1.0 - light.r);
// Darkness above water
if (uWaterLevel < 0.4) {
float aboveWaterDarkness = isTexelAbove * (0.4 - uWaterLevel);
darknessStrength = min(1.0, darknessStrength + aboveWaterDarkness);
}
fragColor = mix(mix(
main * (1.0 + light.g) + max(light.g - 0.7, 0.0) * vec4(1.0),
blur,
vec4(clamp((1.0 - light.r) / sqrt(max(uAmbientColor.w, 0.35)), 0.0, 1.0))
), uAmbientColor, vec4(darknessStrength));
fragColor.a = 1.0;
}
)";
constexpr char TexturedBackgroundFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision highp float;
#endif
uniform sampler2D uTexture;
uniform vec2 uViewSize;
uniform vec2 uCameraPos;
uniform vec4 uHorizonColor;
uniform vec2 uShift;
in vec2 vTexCoords;
out vec4 fragColor;
vec2 hash2D(in vec2 p) {
float h = dot(p, vec2(12.9898, 78.233));
float h2 = dot(p, vec2(37.271, 377.632));
return -1.0 + 2.0 * vec2(fract(sin(h) * 43758.5453), fract(sin(h2) * 43758.5453));
}
vec3 voronoi(in vec2 p) {
vec2 n = floor(p);
vec2 f = fract(p);
vec2 mg, mr;
float md = 8.0;
for (int j = -1; j <= 1; ++j) {
for (int i = -1; i <= 1; ++i) {
vec2 g = vec2(float(i), float(j));
vec2 o = hash2D(n + g);
vec2 r = g + o - f;
float d = dot(r, r);
if (d < md) {
md = d;
mr = r;
mg = g;
}
}
}
return vec3(md, mr);
}
float addStarField(vec2 samplePosition, float threshold) {
vec3 starValue = voronoi(samplePosition);
if (starValue.x < threshold) {
float power = 1.0 - (starValue.x / threshold);
return min(power * power * power, 0.5);
}
return 0.0;
}
void main() {
// Distance to center of screen from top or bottom (1: center of screen, 0: edge of screen)
float distance = 1.3 - abs(2.0 * vTexCoords.y - 1.0);
float horizonDepth = pow(distance, 1.4);
float yShift = (vTexCoords.y > 0.5 ? 1.0 : 0.0);
float correction = ((uViewSize.x * 9.0) / (uViewSize.y * 16.0));
vec2 texturePos = vec2(
(uShift.x / 256.0) + (vTexCoords.x - 0.5 ) * (0.5 + (1.5 * horizonDepth)) * correction,
(uShift.y / 256.0) + (vTexCoords.y - yShift) * 1.4 * distance
);
vec4 texColor = texture(uTexture, texturePos);
#ifdef DITHER
texturePos += hash2D(vTexCoords * uViewSize + (uCameraPos + uShift) * 0.001).xy * 8.0 / uViewSize;
texColor = mix(texColor, texture(uTexture, texturePos), 0.333);
#endif
float horizonOpacity = clamp(pow(distance, 1.5) - 0.3, 0.0, 1.0);
vec4 horizonColorWithStars = vec4(uHorizonColor.xyz, 1.0);
if (uHorizonColor.w > 0.0) {
vec2 samplePosition = (vTexCoords * uViewSize / uViewSize.xx) + uCameraPos.xy * 0.00012;
horizonColorWithStars += vec4(addStarField(samplePosition * 7.0, 0.00008));
samplePosition = (vTexCoords * uViewSize / uViewSize.xx) + uCameraPos.xy * 0.00018 + 0.5;
horizonColorWithStars += vec4(addStarField(samplePosition * 7.0, 0.00008));
}
fragColor = mix(texColor, horizonColorWithStars, horizonOpacity);
fragColor.a = 1.0;
}
)";
constexpr char TexturedBackgroundCircleFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision highp float;
#endif
uniform sampler2D uTexture;
uniform vec2 uViewSize;
uniform vec2 uCameraPos;
uniform vec4 uHorizonColor;
uniform vec2 uShift;
in vec2 vTexCoords;
out vec4 fragColor;
#define INV_PI 0.31830988618379067153776752675
vec2 hash2D(in vec2 p) {
float h = dot(p, vec2(12.9898, 78.233));
float h2 = dot(p, vec2(37.271, 377.632));
return -1.0 + 2.0 * vec2(fract(sin(h) * 43758.5453), fract(sin(h2) * 43758.5453));
}
vec3 voronoi(in vec2 p) {
vec2 n = floor(p);
vec2 f = fract(p);
vec2 mg, mr;
float md = 8.0;
for (int j = -1; j <= 1; ++j) {
for (int i = -1; i <= 1; ++i) {
vec2 g = vec2(float(i), float(j));
vec2 o = hash2D(n + g);
vec2 r = g + o - f;
float d = dot(r, r);
if (d < md) {
md = d;
mr = r;
mg = g;
}
}
}
return vec3(md, mr);
}
float addStarField(vec2 samplePosition, float threshold) {
vec3 starValue = voronoi(samplePosition);
if (starValue.x < threshold) {
float power = 1.0 - (starValue.x / threshold);
return min(power * power * power, 0.5);
}
return 0.0;
}
void main() {
// Position of pixel on screen (between -1 and 1)
vec2 targetCoord = vec2(2.0) * vTexCoords - vec2(1.0);
// Aspect ratio correction, so display circle instead of ellipse
targetCoord.x *= uViewSize.x / uViewSize.y;
// Distance to center of screen
float distance = length(targetCoord);
// x-coordinate of tunnel
float xShift = (targetCoord.x == 0.0 ? sign(targetCoord.y) * 0.5 : atan(targetCoord.y, targetCoord.x) * INV_PI);
vec2 texturePos = vec2(
(xShift) * 1.0 + (uShift.x * 0.01),
(1.0 / distance) * 1.4 + (uShift.y * 0.002)
);
vec4 texColor = texture(uTexture, texturePos);
#ifdef DITHER
texturePos += hash2D(vTexCoords * uViewSize + (uCameraPos + uShift) * 0.001).xy * 8.0 / uViewSize;
texColor = mix(texColor, texture(uTexture, texturePos), 0.333);
#endif
float horizonOpacity = 1.0 - clamp(pow(distance, 1.4) - 0.3, 0.0, 1.0);
vec4 horizonColorWithStars = vec4(uHorizonColor.xyz, 1.0);
if (uHorizonColor.w > 0.0) {
vec2 samplePosition = (vTexCoords * uViewSize / uViewSize.xx) + uCameraPos.xy * 0.00012;
horizonColorWithStars += vec4(addStarField(samplePosition * 7.0, 0.00008));
samplePosition = (vTexCoords * uViewSize / uViewSize.xx) + uCameraPos.xy * 0.00018 + 0.5;
horizonColorWithStars += vec4(addStarField(samplePosition * 7.0, 0.00008));
}
fragColor = mix(texColor, horizonColorWithStars, horizonOpacity);
fragColor.a = 1.0;
}
)";
constexpr char ColorizedFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec4 vColor;
out vec4 fragColor;
void main() {
vec4 dye = vec4(1.0) + (vColor - vec4(0.5)) * vec4(4.0);
vec4 original = texture(uTexture, vTexCoords);
float average = (original.r + original.g + original.b) * 0.5;
vec4 gray = vec4(average, average, average, original.a);
fragColor = gray * dye;
}
)";
constexpr char TintedFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec4 vColor;
out vec4 fragColor;
void main() {
vec4 original = texture(uTexture, vTexCoords);
vec3 tinted = mix(original.rgb, vColor.rgb, 0.45);
fragColor = vec4(tinted.r, tinted.g, tinted.b, original.a * vColor.a);
}
)";
// Subtle shadow has been added in v2.5.0, previous implementation was:
// fragColor = mix(color, vec4(vColor.z, vColor.z, vColor.z, vColor.w), outline - color.a);
constexpr char OutlineFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec4 vColor;
out vec4 fragColor;
float aastep(float threshold, float value) {
float afwidth = length(vec2(dFdx(value), dFdy(value))) * 0.70710678118654757;
return smoothstep(threshold - afwidth, threshold + afwidth, value);
}
void main() {
vec2 size = vColor.xy;
float outline = texture(uTexture, vTexCoords + vec2(-size.x, 0)).a;
outline += texture(uTexture, vTexCoords + vec2(0, size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(size.x, 0)).a;
outline += texture(uTexture, vTexCoords + vec2(0, -size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(-size.x, size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(size.x, size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(-size.x, -size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(size.x, -size.y)).a;
outline = aastep(1.0, outline);
float outline2 = texture(uTexture, vTexCoords + vec2(-2.0 * size.x, 0)).a;
outline2 += texture(uTexture, vTexCoords + vec2(0, 2.0 * size.y)).a;
outline2 += texture(uTexture, vTexCoords + vec2(2.0 * size.x, 0)).a;
outline2 += texture(uTexture, vTexCoords + vec2(0, -2.0 * size.y)).a;
outline2 += texture(uTexture, vTexCoords + vec2(-2.0 * size.x, 2.0 * size.y)).a;
outline2 += texture(uTexture, vTexCoords + vec2(2.0 * size.x, 2.0 * size.y)).a;
outline2 += texture(uTexture, vTexCoords + vec2(-2.0 * size.x, -2.0 * size.y)).a;
outline2 += texture(uTexture, vTexCoords + vec2(2.0 * size.x, -2.0 * size.y)).a;
outline2 = aastep(1.0, outline2);
vec4 color = texture(uTexture, vTexCoords);
fragColor = mix(color,
mix(vec4(0.0, 0.0, 0.0, vColor.w * 0.5), vec4(vColor.z, vColor.z, vColor.z, vColor.w), outline),
max(outline, outline2) - color.a);
}
)";
constexpr char WhiteMaskFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec4 vColor;
out vec4 fragColor;
void main() {
vec4 tex = texture(uTexture, vTexCoords);
float color = min((0.299 * tex.r + 0.587 * tex.g + 0.114 * tex.b) * 6.0f, 1.0f);
fragColor = vec4(color, color, color, tex.a) * vColor;
}
)";
constexpr char PartialWhiteMaskFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec4 vColor;
out vec4 fragColor;
void main() {
vec4 tex = texture(uTexture, vTexCoords);
float color = min((0.299 * tex.r + 0.587 * tex.g + 0.114 * tex.b) * 2.5f, 1.0f);
fragColor = vec4(color, color, color, tex.a) * vColor;
}
)";
constexpr char FrozenMaskFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec4 vColor;
out vec4 fragColor;
float aastep(float threshold, float value) {
float afwidth = length(vec2(dFdx(value), dFdy(value))) * 0.70710678118654757;
return smoothstep(threshold - afwidth, threshold + afwidth, value);
}
void main() {
vec2 size = vColor.xy * vColor.a * 2.0;
vec4 tex = texture(uTexture, vTexCoords);
vec4 tex1 = texture(uTexture, vTexCoords + vec2(-size.x, 0));
vec4 tex2 = texture(uTexture, vTexCoords + vec2(0, size.y));
vec4 tex3 = texture(uTexture, vTexCoords + vec2(size.x, 0));
vec4 tex4 = texture(uTexture, vTexCoords + vec2(0, -size.y));
float outline = tex1.a;
outline += tex2.a;
outline += tex3.a;
outline += tex4.a;
outline += texture(uTexture, vTexCoords + vec2(-size.x, size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(size.x, size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(-size.x, -size.y)).a;
outline += texture(uTexture, vTexCoords + vec2(size.x, -size.y)).a;
outline = aastep(1.0, outline);
vec4 color = (tex + tex + tex1 + tex2 + tex3 + tex4) / 6.0;
float grey = min((0.299 * color.r + 0.587 * color.g + 0.114 * color.b) * 2.6f, 1.0f);
fragColor = mix(tex, vec4(0.2 * grey, 0.2 + grey * 0.62, 0.6 + 0.2 * grey, outline * 0.95), vColor.a);
}
)";
constexpr char ShieldVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec4 vTexCoords;
out vec4 vColor;
out vec2 vPos;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vTexCoords = texRect;
vColor = color;
vPos = aPosition * vec2(2.0) - vec2(1.0);
}
)";
constexpr char BatchedShieldVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
struct Instance
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
layout (std140) uniform InstancesBlock
{
#ifndef BATCH_SIZE
#define BATCH_SIZE (585) // 64 Kb / 112 b
#endif
Instance[BATCH_SIZE] instances;
} block;
out vec4 vTexCoords;
out vec4 vColor;
out vec2 vPos;
#define i block.instances[gl_VertexID / 6]
void main() {
vec2 aPosition = vec2(1.0 - float(((gl_VertexID + 2) / 3) % 2), 1.0 - float(((gl_VertexID + 1) / 3) % 2));
vec4 position = vec4(aPosition.x * i.spriteSize.x, aPosition.y * i.spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * i.modelMatrix * position;
vTexCoords = i.texRect;
vColor = i.color;
vPos = aPosition * vec2(2.0) - vec2(1.0);
}
)";
constexpr char ShieldFireFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec4 vTexCoords;
in vec4 vColor;
in vec2 vPos;
out vec4 fragColor;
#define PI 3.1415926
float aastep(float threshold, float value) {
float afwidth = length(vec2(dFdx(value), dFdy(value))) * 0.70710678118654757;
return smoothstep(threshold - afwidth, threshold + afwidth, value);
}
float triangleWave(float x, float period) {
float p = x / period;
float f = fract(p);
return abs(f - 0.5) * 2.0;
}
void main() {
vec2 scale = vColor.xy;
vec2 shift1 = vTexCoords.xy;
vec2 shift2 = vTexCoords.zw;
float darkness = vColor.z;
float alpha = vColor.w;
float dist = length(vPos);
if (dist > 1.0) {
fragColor = vec4(0.0, 0.0, 0.0, 0.0);
return;
}
vec3 v = vec3(vPos.x, vPos.y, sqrt(1.0 - vPos.x * vPos.x - vPos.y * vPos.y));
vec3 n = normalize(v);
float b = dot(n, vec3(0.0, 0.0, 1.0));
vec2 q = vec2(0.5 - 0.5 * atan(n.z, n.x) / PI, -acos(vPos.y) / PI);
float isNearBorder = 1.0 - aastep(0.96, dist);
float mask1 = texture(uTexture, mod(shift1 + (q * scale), 1.0)).r;
float maskNormalized1 = max(1.0 - (abs(triangleWave(shift2.y + 0.5, 2.0) - mask1) * 6.0), 0.0);
float mask2 = texture(uTexture, mod(shift2 + (q * scale), 1.0)).r;
float maskNormalized2 = max(1.0 - (abs(triangleWave(shift1.x, 1.333) - mask2) * 6.0), 0.0);
float maskSum = min(maskNormalized1 + maskNormalized2, 1.0);
fragColor = vec4(mix(vec3(1.0, 0.3, 0.0), vec3(1.0, 1.0, 1.0), max((maskSum * 2.0) - 1.0, 0.0)) * darkness, min(maskSum * b * isNearBorder * 1.3 + 0.1, 1.0) * alpha);
}
)";
constexpr char ShieldLightningFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec4 vTexCoords;
in vec4 vColor;
in vec2 vPos;
out vec4 fragColor;
#define PI 3.1415926
float aastep(float threshold, float value) {
float afwidth = length(vec2(dFdx(value), dFdy(value))) * 0.70710678118654757;
return smoothstep(threshold - afwidth, threshold + afwidth, value);
}
float triangleWave(float x, float period) {
float p = x / period;
float f = fract(p);
return abs(f - 0.5) * 2.0;
}
void main() {
vec2 scale = vColor.xy;
vec2 shift1 = vTexCoords.xy;
vec2 shift2 = vTexCoords.zw;
float darkness = vColor.z;
float alpha = vColor.w;
float dist = length(vPos);
if (dist > 1.0) {
fragColor = vec4(0.0, 0.0, 0.0, 0.0);
return;
}
vec3 v = vec3(vPos.x, vPos.y, sqrt(1.0 - vPos.x * vPos.x - vPos.y * vPos.y));
vec3 n = normalize(v);
float b = dot(n, vec3(0.0, 0.0, 1.0));
vec2 q = vec2(0.5 - 0.5 * atan(n.z, n.x) / PI, -acos(vPos.y) / PI);
float isNearBorder = 1.0 - aastep(0.96, dist);
float mask = texture(uTexture, mod(shift1 + (q * scale), 1.0)).r;
float maskNormalized = max(1.0 - (abs(triangleWave(shift2.y + 0.5, 2.0) - mask) * 8.0), 0.0);
float isVeryNearBorder = 1.0 - aastep(0.024, abs(dist - 0.94));
float maskSum = max(maskNormalized, isVeryNearBorder);
fragColor = vec4(mix(vec3(0.1, 1.0, 0.0), vec3(1.0, 1.0, 1.0), max((maskSum * 2.0) - 1.0, 0.0)) * darkness, min(maskSum * b * isNearBorder * 1.3 + 0.1, 1.0) * alpha);
}
)";
constexpr char ResizeHQ2xVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vTexCoords0;
out vec4 vTexCoords1;
out vec4 vTexCoords2;
out vec4 vTexCoords3;
out vec4 vTexCoords4;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
float x = 0.5 / texRect.x;
float y = 0.5 / texRect.y;
vec2 dg1 = vec2( x, y);
vec2 dg2 = vec2(-x, y);
vec2 dx = vec2(x, 0.0);
vec2 dy = vec2(0.0, y);
vTexCoords0.xy = aPosition;
vTexCoords1.xy = aPosition - dg1;
vTexCoords1.zw = aPosition - dy;
vTexCoords2.xy = aPosition - dg2;
vTexCoords2.zw = aPosition + dx;
vTexCoords3.xy = aPosition + dg1;
vTexCoords3.zw = aPosition + dy;
vTexCoords4.xy = aPosition + dg2;
vTexCoords4.zw = aPosition - dx;
}
)";
constexpr char ResizeHQ2xFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
const float mx = 0.325;
const float k = -0.250;
const float max_w = 0.25;
const float min_w = -0.05;
const float lum_add = 0.25;
uniform sampler2D uTexture;
in vec2 vTexCoords0;
in vec4 vTexCoords1;
in vec4 vTexCoords2;
in vec4 vTexCoords3;
in vec4 vTexCoords4;
out vec4 fragColor;
void main() {
vec3 c00 = texture(uTexture, vTexCoords1.xy).xyz;
vec3 c10 = texture(uTexture, vTexCoords1.zw).xyz;
vec3 c20 = texture(uTexture, vTexCoords2.xy).xyz;
vec3 c01 = texture(uTexture, vTexCoords4.zw).xyz;
vec3 c11 = texture(uTexture, vTexCoords0.xy).xyz;
vec3 c21 = texture(uTexture, vTexCoords2.zw).xyz;
vec3 c02 = texture(uTexture, vTexCoords4.xy).xyz;
vec3 c12 = texture(uTexture, vTexCoords3.zw).xyz;
vec3 c22 = texture(uTexture, vTexCoords3.xy).xyz;
vec3 dt = vec3(1.0, 1.0, 1.0);
float md1 = dot(abs(c00 - c22), dt);
float md2 = dot(abs(c02 - c20), dt);
highp float w1 = dot(abs(c22 - c11), dt) * md2;
highp float w2 = dot(abs(c02 - c11), dt) * md1;
highp float w3 = dot(abs(c00 - c11), dt) * md2;
highp float w4 = dot(abs(c20 - c11), dt) * md1;
highp float t1 = w1 + w3;
highp float t2 = w2 + w4;
highp float ww = max(t1, t2) + 0.0001;
highp vec3 cx = (w1 * c00 + w2 * c20 + w3 * c22 + w4 * c02 + ww * c11) / (t1 + t2 + ww);
highp float lc1 = k / (0.12 * dot(c10 + c12 + cx, dt) + lum_add);
highp float lc2 = k / (0.12 * dot(c01 + c21 + cx, dt) + lum_add);
w1 = clamp(lc1 * dot(abs(cx - c10), dt) + mx, min_w, max_w);
w2 = clamp(lc2 * dot(abs(cx - c21), dt) + mx, min_w, max_w);
w3 = clamp(lc1 * dot(abs(cx - c12), dt) + mx, min_w, max_w);
w4 = clamp(lc2 * dot(abs(cx - c01), dt) + mx, min_w, max_w);
fragColor.xyz = w1 * c10 + w2 * c21 + w3 * c12 + w4 * c01 + (1.0 - w1 - w2 - w3 - w4) * cx;
fragColor.w = 1.0;
}
)";
constexpr char Resize3xBrzVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vPixelCoords;
out vec2 vTexCoords0;
out vec4 vTexCoords1;
out vec4 vTexCoords2;
out vec4 vTexCoords3;
out vec4 vTexCoords4;
out vec4 vTexCoords5;
out vec4 vTexCoords6;
out vec4 vTexCoords7;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
float dx = 1.0 / texRect.x;
float dy = 1.0 / texRect.y;
vec2 texCoord = aPosition + vec2(0.0000001, 0.0000001);
vPixelCoords = texCoord * texRect.xy;
vTexCoords0 = texCoord;
vTexCoords1 = texCoord.xxxy + vec4( -dx, 0, dx, -2.0*dy); // A1 B1 C1
vTexCoords2 = texCoord.xxxy + vec4( -dx, 0, dx, -dy); // A B C
vTexCoords3 = texCoord.xxxy + vec4( -dx, 0, dx, 0); // D E F
vTexCoords4 = texCoord.xxxy + vec4( -dx, 0, dx, dy); // G H I
vTexCoords5 = texCoord.xxxy + vec4( -dx, 0, dx, 2.0*dy); // G5 H5 I5
vTexCoords6 = texCoord.xyyy + vec4(-2.0*dx, -dy, 0, dy); // A0 D0 G0
vTexCoords7 = texCoord.xyyy + vec4( 2.0*dx, -dy, 0, dy); // C4 F4 I4
}
)";
constexpr char Resize3xBrzFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
#define BLEND_NONE 0
#define BLEND_NORMAL 1
#define BLEND_DOMINANT 2
#define LUMINANCE_WEIGHT 1.0
#define EQUAL_COLOR_TOLERANCE 30.0/255.0
#define STEEP_DIRECTION_THRESHOLD 2.2
#define DOMINANT_DIRECTION_THRESHOLD 3.6
const float one_third = 1.0 / 3.0;
const float two_third = 2.0 / 3.0;
uniform sampler2D uTexture;
in vec2 vPixelCoords;
in vec2 vTexCoords0;
in vec4 vTexCoords1;
in vec4 vTexCoords2;
in vec4 vTexCoords3;
in vec4 vTexCoords4;
in vec4 vTexCoords5;
in vec4 vTexCoords6;
in vec4 vTexCoords7;
out vec4 fragColor;
float Reduce(vec3 color) {
return dot(color, vec3(65536.0, 256.0, 1.0));
}
float DistYCbCr(vec3 pixA, vec3 pixB) {
const vec3 w = vec3(0.2627, 0.6780, 0.0593);
const float scaleB = 0.5 / (1.0 - w.b);
const float scaleR = 0.5 / (1.0 - w.r);
vec3 diff = pixA - pixB;
float Y = dot(diff, w);
float Cb = scaleB * (diff.b - Y);
float Cr = scaleR * (diff.r - Y);
return sqrt( ((LUMINANCE_WEIGHT * Y) * (LUMINANCE_WEIGHT * Y)) + (Cb * Cb) + (Cr * Cr) );
}
bool IsPixEqual(vec3 pixA, vec3 pixB) {
return (DistYCbCr(pixA, pixB) < EQUAL_COLOR_TOLERANCE);
}
bool IsBlendingNeeded(ivec4 blend) {
return any(notEqual(blend, ivec4(BLEND_NONE)));
}
void ScalePixel(ivec4 blend, vec3 k[9], inout vec3 dst[9]) {
float v0 = Reduce(k[0]);
float v4 = Reduce(k[4]);
float v5 = Reduce(k[5]);
float v7 = Reduce(k[7]);
float v8 = Reduce(k[8]);
float dist_01_04 = DistYCbCr(k[1], k[4]);
float dist_03_08 = DistYCbCr(k[3], k[8]);
bool haveShallowLine = (STEEP_DIRECTION_THRESHOLD * dist_01_04 <= dist_03_08) && (v0 != v4) && (v5 != v4);
bool haveSteepLine = (STEEP_DIRECTION_THRESHOLD * dist_03_08 <= dist_01_04) && (v0 != v8) && (v7 != v8);
bool needBlend = (blend[2] != BLEND_NONE);
bool doLineBlend = ( blend[2] >= BLEND_DOMINANT ||
!((blend[1] != BLEND_NONE && !IsPixEqual(k[0], k[4])) ||
(blend[3] != BLEND_NONE && !IsPixEqual(k[0], k[8])) ||
(IsPixEqual(k[4], k[3]) && IsPixEqual(k[3], k[2]) && IsPixEqual(k[2], k[1]) && IsPixEqual(k[1], k[8]) && !IsPixEqual(k[0], k[2]))));
vec3 blendPix = (DistYCbCr(k[0], k[1]) <= DistYCbCr(k[0], k[3])) ? k[1] : k[3];
dst[1] = mix(dst[1], blendPix, (needBlend && doLineBlend) ? ((haveSteepLine) ? 0.750 : ((haveShallowLine) ? 0.250 : 0.125)) : 0.000);
dst[2] = mix(dst[2], blendPix, (needBlend) ? ((doLineBlend) ? ((!haveShallowLine && !haveSteepLine) ? 0.875 : 1.000) : 0.4545939598) : 0.000);
dst[3] = mix(dst[3], blendPix, (needBlend && doLineBlend) ? ((haveShallowLine) ? 0.750 : ((haveSteepLine) ? 0.250 : 0.125)) : 0.000);
dst[4] = mix(dst[4], blendPix, (needBlend && doLineBlend && haveShallowLine) ? 0.250 : 0.000);
dst[8] = mix(dst[8], blendPix, (needBlend && doLineBlend && haveSteepLine) ? 0.250 : 0.000);
}
void main() {
vec2 f = fract(vPixelCoords);
vec3 src[25];
src[21] = texture(uTexture, vTexCoords1.xw).rgb;
src[22] = texture(uTexture, vTexCoords1.yw).rgb;
src[23] = texture(uTexture, vTexCoords1.zw).rgb;
src[ 6] = texture(uTexture, vTexCoords2.xw).rgb;
src[ 7] = texture(uTexture, vTexCoords2.yw).rgb;
src[ 8] = texture(uTexture, vTexCoords2.zw).rgb;
src[ 5] = texture(uTexture, vTexCoords3.xw).rgb;
src[ 0] = texture(uTexture, vTexCoords3.yw).rgb;
src[ 1] = texture(uTexture, vTexCoords3.zw).rgb;
src[ 4] = texture(uTexture, vTexCoords4.xw).rgb;
src[ 3] = texture(uTexture, vTexCoords4.yw).rgb;
src[ 2] = texture(uTexture, vTexCoords4.zw).rgb;
src[15] = texture(uTexture, vTexCoords5.xw).rgb;
src[14] = texture(uTexture, vTexCoords5.yw).rgb;
src[13] = texture(uTexture, vTexCoords5.zw).rgb;
src[19] = texture(uTexture, vTexCoords6.xy).rgb;
src[18] = texture(uTexture, vTexCoords6.xz).rgb;
src[17] = texture(uTexture, vTexCoords6.xw).rgb;
src[ 9] = texture(uTexture, vTexCoords7.xy).rgb;
src[10] = texture(uTexture, vTexCoords7.xz).rgb;
src[11] = texture(uTexture, vTexCoords7.xw).rgb;
float v[9];
v[0] = Reduce(src[0]);
v[1] = Reduce(src[1]);
v[2] = Reduce(src[2]);
v[3] = Reduce(src[3]);
v[4] = Reduce(src[4]);
v[5] = Reduce(src[5]);
v[6] = Reduce(src[6]);
v[7] = Reduce(src[7]);
v[8] = Reduce(src[8]);
ivec4 blendResult = ivec4(BLEND_NONE);
if (!((v[0] == v[1] && v[3] == v[2]) || (v[0] == v[3] && v[1] == v[2]))) {
float dist_03_01 = DistYCbCr(src[ 4], src[ 0]) + DistYCbCr(src[ 0], src[ 8]) + DistYCbCr(src[14], src[ 2]) + DistYCbCr(src[ 2], src[10]) + (4.0 * DistYCbCr(src[ 3], src[ 1]));
float dist_00_02 = DistYCbCr(src[ 5], src[ 3]) + DistYCbCr(src[ 3], src[13]) + DistYCbCr(src[ 7], src[ 1]) + DistYCbCr(src[ 1], src[11]) + (4.0 * DistYCbCr(src[ 0], src[ 2]));
bool dominantGradient = (DOMINANT_DIRECTION_THRESHOLD * dist_03_01) < dist_00_02;
blendResult[2] = ((dist_03_01 < dist_00_02) && (v[0] != v[1]) && (v[0] != v[3])) ? ((dominantGradient) ? BLEND_DOMINANT : BLEND_NORMAL) : BLEND_NONE;
}
if (!((v[5] == v[0] && v[4] == v[3]) || (v[5] == v[4] && v[0] == v[3]))) {
float dist_04_00 = DistYCbCr(src[17] , src[ 5]) + DistYCbCr(src[ 5], src[ 7]) + DistYCbCr(src[15], src[ 3]) + DistYCbCr(src[ 3], src[ 1]) + (4.0 * DistYCbCr(src[ 4], src[ 0]));
float dist_05_03 = DistYCbCr(src[18] , src[ 4]) + DistYCbCr(src[ 4], src[14]) + DistYCbCr(src[ 6], src[ 0]) + DistYCbCr(src[ 0], src[ 2]) + (4.0 * DistYCbCr(src[ 5], src[ 3]));
bool dominantGradient = (DOMINANT_DIRECTION_THRESHOLD * dist_05_03) < dist_04_00;
blendResult[3] = ((dist_04_00 > dist_05_03) && (v[0] != v[5]) && (v[0] != v[3])) ? ((dominantGradient) ? BLEND_DOMINANT : BLEND_NORMAL) : BLEND_NONE;
}
if (!((v[7] == v[8] && v[0] == v[1]) || (v[7] == v[0] && v[8] == v[1]))) {
float dist_00_08 = DistYCbCr(src[ 5], src[ 7]) + DistYCbCr(src[ 7], src[23]) + DistYCbCr(src[ 3], src[ 1]) + DistYCbCr(src[ 1], src[ 9]) + (4.0 * DistYCbCr(src[ 0], src[ 8]));
float dist_07_01 = DistYCbCr(src[ 6], src[ 0]) + DistYCbCr(src[ 0], src[ 2]) + DistYCbCr(src[22], src[ 8]) + DistYCbCr(src[ 8], src[10]) + (4.0 * DistYCbCr(src[ 7], src[ 1]));
bool dominantGradient = (DOMINANT_DIRECTION_THRESHOLD * dist_07_01) < dist_00_08;
blendResult[1] = ((dist_00_08 > dist_07_01) && (v[0] != v[7]) && (v[0] != v[1])) ? ((dominantGradient) ? BLEND_DOMINANT : BLEND_NORMAL) : BLEND_NONE;
}
if (!((v[6] == v[7] && v[5] == v[0]) || (v[6] == v[5] && v[7] == v[0]))) {
float dist_05_07 = DistYCbCr(src[18], src[ 6]) + DistYCbCr(src[ 6], src[22]) + DistYCbCr(src[ 4], src[ 0]) + DistYCbCr(src[ 0], src[ 8]) + (4.0 * DistYCbCr(src[ 5], src[ 7]));
float dist_06_00 = DistYCbCr(src[19], src[ 5]) + DistYCbCr(src[ 5], src[ 3]) + DistYCbCr(src[21], src[ 7]) + DistYCbCr(src[ 7], src[ 1]) + (4.0 * DistYCbCr(src[ 6], src[ 0]));
bool dominantGradient = (DOMINANT_DIRECTION_THRESHOLD * dist_05_07) < dist_06_00;
blendResult[0] = ((dist_05_07 < dist_06_00) && (v[0] != v[5]) && (v[0] != v[7])) ? ((dominantGradient) ? BLEND_DOMINANT : BLEND_NORMAL) : BLEND_NONE;
}
vec3 dst[9];
dst[0] = src[0];
dst[1] = src[0];
dst[2] = src[0];
dst[3] = src[0];
dst[4] = src[0];
dst[5] = src[0];
dst[6] = src[0];
dst[7] = src[0];
dst[8] = src[0];
// Scale pixel
if (IsBlendingNeeded(blendResult)) {
vec3 k[9];
vec3 tempDst8;
vec3 tempDst7;
k[8] = src[8];
k[7] = src[7];
k[6] = src[6];
k[5] = src[5];
k[4] = src[4];
k[3] = src[3];
k[2] = src[2];
k[1] = src[1];
k[0] = src[0];
ScalePixel(blendResult.xyzw, k, dst);
k[8] = src[6];
k[7] = src[5];
k[6] = src[4];
k[5] = src[3];
k[4] = src[2];
k[3] = src[1];
k[2] = src[8];
k[1] = src[7];
tempDst8 = dst[8];
tempDst7 = dst[7];
dst[8] = dst[6];
dst[7] = dst[5];
dst[6] = dst[4];
dst[5] = dst[3];
dst[4] = dst[2];
dst[3] = dst[1];
dst[2] = tempDst8;
dst[1] = tempDst7;
ScalePixel(blendResult.wxyz, k, dst);
k[8] = src[4];
k[7] = src[3];
k[6] = src[2];
k[5] = src[1];
k[4] = src[8];
k[3] = src[7];
k[2] = src[6];
k[1] = src[5];
tempDst8 = dst[8];
tempDst7 = dst[7];
dst[8] = dst[6];
dst[7] = dst[5];
dst[6] = dst[4];
dst[5] = dst[3];
dst[4] = dst[2];
dst[3] = dst[1];
dst[2] = tempDst8;
dst[1] = tempDst7;
ScalePixel(blendResult.zwxy, k, dst);
k[8] = src[2];
k[7] = src[1];
k[6] = src[8];
k[5] = src[7];
k[4] = src[6];
k[3] = src[5];
k[2] = src[4];
k[1] = src[3];
tempDst8 = dst[8];
tempDst7 = dst[7];
dst[8] = dst[6];
dst[7] = dst[5];
dst[6] = dst[4];
dst[5] = dst[3];
dst[4] = dst[2];
dst[3] = dst[1];
dst[2] = tempDst8;
dst[1] = tempDst7;
ScalePixel(blendResult.yzwx, k, dst);
tempDst8 = dst[8];
tempDst7 = dst[7];
dst[8] = dst[6];
dst[7] = dst[5];
dst[6] = dst[4];
dst[5] = dst[3];
dst[4] = dst[2];
dst[3] = dst[1];
dst[2] = tempDst8;
dst[1] = tempDst7;
}
vec3 res = mix(mix(dst[6], mix(dst[7], dst[8], step(two_third, f.x)), step(one_third, f.x)),
mix(mix(dst[5], mix(dst[0], dst[1], step(two_third, f.x)), step(one_third, f.x)),
mix(dst[4], mix(dst[3], dst[2], step(two_third, f.x)), step(one_third, f.x)), step(two_third, f.y)),
step(one_third, f.y));
fragColor = vec4(res, 1.0);
}
)";
constexpr char ResizeSabrVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vTexSize;
out vec2 tc;
out vec4 xyp_1_2_3;
out vec4 xyp_5_10_15;
out vec4 xyp_6_7_8;
out vec4 xyp_9_14_9;
out vec4 xyp_11_12_13;
out vec4 xyp_16_17_18;
out vec4 xyp_21_22_23;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vTexSize = texRect.xy;
tc = aPosition * vec2(1.0004, 1.0);
float x = 1.0 / vTexSize.x;
float y = 1.0 / vTexSize.y;
xyp_1_2_3 = tc.xxxy + vec4( -x, 0.0, x, -2.0 * y);
xyp_6_7_8 = tc.xxxy + vec4( -x, 0.0, x, -y);
xyp_11_12_13 = tc.xxxy + vec4( -x, 0.0, x, 0.0);
xyp_16_17_18 = tc.xxxy + vec4( -x, 0.0, x, y);
xyp_21_22_23 = tc.xxxy + vec4( -x, 0.0, x, 2.0 * y);
xyp_5_10_15 = tc.xyyy + vec4(-2.0 * x, -y, 0.0, y);
xyp_9_14_9 = tc.xyyy + vec4( 2.0 * x, -y, 0.0, y);
}
)";
constexpr char ResizeSabrFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vTexSize;
in vec2 tc;
in vec4 xyp_1_2_3;
in vec4 xyp_5_10_15;
in vec4 xyp_6_7_8;
in vec4 xyp_9_14_9;
in vec4 xyp_11_12_13;
in vec4 xyp_16_17_18;
in vec4 xyp_21_22_23;
out vec4 fragColor;
const vec4 Ai = vec4( 1.0, -1.0, -1.0, 1.0);
const vec4 B45 = vec4( 1.0, 1.0, -1.0, -1.0);
const vec4 C45 = vec4( 1.5, 0.5, -0.5, 0.5);
const vec4 B30 = vec4( 0.5, 2.0, -0.5, -2.0);
const vec4 C30 = vec4( 1.0, 1.0, -0.5, 0.0);
const vec4 B60 = vec4( 2.0, 0.5, -2.0, -0.5);
const vec4 C60 = vec4( 2.0, 0.0, -1.0, 0.5);
const vec4 M45 = vec4(0.4, 0.4, 0.4, 0.4);
const vec4 M30 = vec4(0.2, 0.4, 0.2, 0.4);
const vec4 M60 = M30.yxwz;
const vec4 Mshift = vec4(0.2);
const float coef = 2.0;
const vec4 threshold = vec4(0.32);
const vec3 lum = vec3(0.21, 0.72, 0.07);
bvec4 _and_(bvec4 A, bvec4 B) {
return bvec4(A.x && B.x, A.y && B.y, A.z && B.z, A.w && B.w);
}
bvec4 _or_(bvec4 A, bvec4 B) {
return bvec4(A.x || B.x, A.y || B.y, A.z || B.z, A.w || B.w);
}
vec4 lum_to(vec3 v0, vec3 v1, vec3 v2, vec3 v3) {
return vec4(dot(lum, v0), dot(lum, v1), dot(lum, v2), dot(lum, v3));
}
vec4 lum_df(vec4 A, vec4 B) {
return abs(A - B);
}
bvec4 lum_eq(vec4 A, vec4 B) {
return lessThan(lum_df(A, B), threshold);
}
vec4 lum_wd(vec4 a, vec4 b, vec4 c, vec4 d, vec4 e, vec4 f, vec4 g, vec4 h) {
return lum_df(a, b) + lum_df(a, c) + lum_df(d, e) + lum_df(d, f) + 4.0 * lum_df(g, h);
}
float c_df(vec3 c1, vec3 c2) {
vec3 df = abs(c1 - c2);
return df.r + df.g + df.b;
}
void main() {
// Get mask values by performing texture lookup with the uniform sampler
vec3 P1 = texture(uTexture, xyp_1_2_3.xw ).rgb;
vec3 P2 = texture(uTexture, xyp_1_2_3.yw ).rgb;
vec3 P3 = texture(uTexture, xyp_1_2_3.zw ).rgb;
vec3 P6 = texture(uTexture, xyp_6_7_8.xw ).rgb;
vec3 P7 = texture(uTexture, xyp_6_7_8.yw ).rgb;
vec3 P8 = texture(uTexture, xyp_6_7_8.zw ).rgb;
vec3 P11 = texture(uTexture, xyp_11_12_13.xw).rgb;
vec3 P12 = texture(uTexture, xyp_11_12_13.yw).rgb;
vec3 P13 = texture(uTexture, xyp_11_12_13.zw).rgb;
vec3 P16 = texture(uTexture, xyp_16_17_18.xw).rgb;
vec3 P17 = texture(uTexture, xyp_16_17_18.yw).rgb;
vec3 P18 = texture(uTexture, xyp_16_17_18.zw).rgb;
vec3 P21 = texture(uTexture, xyp_21_22_23.xw).rgb;
vec3 P22 = texture(uTexture, xyp_21_22_23.yw).rgb;
vec3 P23 = texture(uTexture, xyp_21_22_23.zw).rgb;
vec3 P5 = texture(uTexture, xyp_5_10_15.xy ).rgb;
vec3 P10 = texture(uTexture, xyp_5_10_15.xz ).rgb;
vec3 P15 = texture(uTexture, xyp_5_10_15.xw ).rgb;
vec3 P9 = texture(uTexture, xyp_9_14_9.xy ).rgb;
vec3 P14 = texture(uTexture, xyp_9_14_9.xz ).rgb;
vec3 P19 = texture(uTexture, xyp_9_14_9.xw ).rgb;
// Store luminance values of each point in groups of 4
// so that we may operate on all four corners at once
vec4 p7 = lum_to(P7, P11, P17, P13);
vec4 p8 = lum_to(P8, P6, P16, P18);
vec4 p11 = p7.yzwx; // P11, P17, P13, P7
vec4 p12 = lum_to(P12, P12, P12, P12);
vec4 p13 = p7.wxyz; // P13, P7, P11, P17
vec4 p14 = lum_to(P14, P2, P10, P22);
vec4 p16 = p8.zwxy; // P16, P18, P8, P6
vec4 p17 = p7.zwxy; // P17, P13, P7, P11
vec4 p18 = p8.wxyz; // P18, P8, P6, P16
vec4 p19 = lum_to(P19, P3, P5, P21);
vec4 p22 = p14.wxyz; // P22, P14, P2, P10
vec4 p23 = lum_to(P23, P9, P1, P15);
// Scale current texel coordinate to [0..1]
vec2 fp = fract(tc * vTexSize);
// Determine amount of "smoothing" or mixing that could be done on texel corners
vec4 ma45 = smoothstep(C45 - M45, C45 + M45, Ai * fp.y + B45 * fp.x);
vec4 ma30 = smoothstep(C30 - M30, C30 + M30, Ai * fp.y + B30 * fp.x);
vec4 ma60 = smoothstep(C60 - M60, C60 + M60, Ai * fp.y + B60 * fp.x);
vec4 marn = smoothstep(C45 - M45 + Mshift, C45 + M45 + Mshift, Ai * fp.y + B45 * fp.x);
// Perform edge weight calculations
vec4 e45 = lum_wd(p12, p8, p16, p18, p22, p14, p17, p13);
vec4 econt = lum_wd(p17, p11, p23, p13, p7, p19, p12, p18);
vec4 e30 = lum_df(p13, p16);
vec4 e60 = lum_df(p8, p17);
// Calculate rule results for interpolation
bvec4 r45_1 = _and_(notEqual(p12, p13), notEqual(p12, p17));
bvec4 r45_2 = _and_(not(lum_eq(p13, p7)), not(lum_eq(p13, p8)));
bvec4 r45_3 = _and_(not(lum_eq(p17, p11)), not(lum_eq(p17, p16)));
bvec4 r45_4_1 = _and_(not(lum_eq(p13, p14)), not(lum_eq(p13, p19)));
bvec4 r45_4_2 = _and_(not(lum_eq(p17, p22)), not(lum_eq(p17, p23)));
bvec4 r45_4 = _and_(lum_eq(p12, p18), _or_(r45_4_1, r45_4_2));
bvec4 r45_5 = _or_(lum_eq(p12, p16), lum_eq(p12, p8));
bvec4 r45 = _and_(r45_1, _or_(_or_(_or_(r45_2, r45_3), r45_4), r45_5));
bvec4 r30 = _and_(notEqual(p12, p16), notEqual(p11, p16));
bvec4 r60 = _and_(notEqual(p12, p8), notEqual(p7, p8));
// Combine rules with edge weights
bvec4 edr45 = _and_(lessThan(e45, econt), r45);
bvec4 edrrn = lessThanEqual(e45, econt);
bvec4 edr30 = _and_(lessThanEqual(coef * e30, e60), r30);
bvec4 edr60 = _and_(lessThanEqual(coef * e60, e30), r60);
// Finalize interpolation rules and cast to float (0.0 for false, 1.0 for true)
vec4 final45 = vec4(_and_(_and_(not(edr30), not(edr60)), edr45));
vec4 final30 = vec4(_and_(_and_(edr45, not(edr60)), edr30));
vec4 final60 = vec4(_and_(_and_(edr45, not(edr30)), edr60));
vec4 final36 = vec4(_and_(_and_(edr60, edr30), edr45));
vec4 finalrn = vec4(_and_(not(edr45), edrrn));
// Determine the color to mix with for each corner
vec4 px = step(lum_df(p12, p17), lum_df(p12, p13));
// Determine the mix amounts by combining the final rule result and corresponding
// mix amount for the rule in each corner
vec4 mac = final36 * max(ma30, ma60) + final30 * ma30 + final60 * ma60 + final45 * ma45 + finalrn * marn;
vec3 res1 = P12;
res1 = mix(res1, mix(P13, P17, px.x), mac.x);
res1 = mix(res1, mix(P7, P13, px.y), mac.y);
res1 = mix(res1, mix(P11, P7, px.z), mac.z);
res1 = mix(res1, mix(P17, P11, px.w), mac.w);
vec3 res2 = P12;
res2 = mix(res2, mix(P17, P11, px.w), mac.w);
res2 = mix(res2, mix(P11, P7, px.z), mac.z);
res2 = mix(res2, mix(P7, P13, px.y), mac.y);
res2 = mix(res2, mix(P13, P17, px.x), mac.x);
fragColor = vec4(mix(res1, res2, step(c_df(P12, res1), c_df(P12, res2))), 1.0);
}
)";
constexpr char ResizeCleanEdgeVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 v_px;
out vec2 size;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
size = texRect.xy + 0.0001;
v_px = aPosition.xy * size;
}
)";
constexpr char ResizeCleanEdgeFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 v_px;
in vec2 size;
out vec4 fragColor;
#define SLOPE
#define CLEANUP
vec3 highestColor = vec3(1.,1.,1.);
float similarThreshold = 0.0;
float lineWidth = 1.0;
const float scale = 4.0;
const mat3 yuv_matrix = mat3(vec3(0.299, 0.587, 0.114), vec3(-0.169, -0.331, 0.5), vec3(0.5, -0.419, -0.081));
vec3 yuv(vec3 col){
mat3 yuv = transpose(yuv_matrix);
return yuv * col;
}
bool similar(vec4 col1, vec4 col2){
return (col1.a == 0. && col2.a == 0.) || distance(col1, col2) <= similarThreshold;
}
bool similar3(vec4 col1, vec4 col2, vec4 col3){
return similar(col1, col2) && similar(col2, col3);
}
bool similar4(vec4 col1, vec4 col2, vec4 col3, vec4 col4){
return similar(col1, col2) && similar(col2, col3) && similar(col3, col4);
}
bool similar5(vec4 col1, vec4 col2, vec4 col3, vec4 col4, vec4 col5){
return similar(col1, col2) && similar(col2, col3) && similar(col3, col4) && similar(col4, col5);
}
bool higher(vec4 thisCol, vec4 otherCol){
if(similar(thisCol, otherCol)) return false;
if(thisCol.a == otherCol.a){
// return yuv(thisCol.rgb).x > yuv(otherCol.rgb).x;
// return distance(yuv(thisCol.rgb), yuv(highestColor)) < distance(yuv(otherCol.rgb), yuv(highestColor));
return distance(thisCol.rgb, highestColor) < distance(otherCol.rgb, highestColor);
} else {
return thisCol.a > otherCol.a;
}
}
vec4 higherCol(vec4 thisCol, vec4 otherCol){
return higher(thisCol, otherCol) ? thisCol : otherCol;
}
float cd(vec4 col1, vec4 col2){
return distance(col1.rgba, col2.rgba);
}
float distToLine(vec2 testPt, vec2 pt1, vec2 pt2, vec2 dir){
vec2 lineDir = pt2 - pt1;
vec2 perpDir = vec2(lineDir.y, -lineDir.x);
vec2 dirToPt1 = pt1 - testPt;
return (dot(perpDir, dir) > 0.0 ? 1.0 : -1.0) * (dot(normalize(perpDir), dirToPt1));
}
vec4 sliceDist(vec2 point, vec2 mainDir, vec2 pointDir, vec4 ub, vec4 u, vec4 uf, vec4 uff, vec4 b, vec4 c, vec4 f, vec4 ff, vec4 db, vec4 d, vec4 df, vec4 dff, vec4 ddb, vec4 dd, vec4 ddf){
//clamped range prevents inacccurate identity (no change) result, feel free to disable if necessary
#ifdef SLOPE
float minWidth = 0.45;
float maxWidth = 1.142;
#else
float minWidth = 0.0;
float maxWidth = 1.4;
#endif
float _lineWidth = max(minWidth, min(maxWidth, lineWidth));
point = mainDir * (point - 0.5) + 0.5; //flip point
//edge detection
float distAgainst = 4.0*cd(f,d) + cd(uf,c) + cd(c,db) + cd(ff,df) + cd(df,dd);
float distTowards = 4.0*cd(c,df) + cd(u,f) + cd(f,dff) + cd(b,d) + cd(d,ddf);
bool shouldSlice =
(distAgainst < distTowards)
|| (distAgainst < distTowards + 0.001) && !higher(c, f); //equivalent edges edge case
if(similar4(f, d, b, u) && similar4(uf, df, db, ub) && !similar(c, f)){ //checkerboard edge case
shouldSlice = false;
}
if(!shouldSlice) return vec4(-1.0);
//only applicable for very large lineWidth (>1.3)
// if(similar3(c, f, df)){ //don't make slice for same color
// return vec4(-1.0);
// }
float dist = 1.0;
bool flip = false;
vec2 center = vec2(0.5,0.5);
#ifdef SLOPE
if(similar3(f, d, db) && !similar3(f, d, b) && !similar(uf, db)){ //lower shallow 2:1 slant
if(similar(c, df) && higher(c, f)){ //single pixel wide diagonal, dont flip
} else {
//priority edge cases
if(higher(c, f)){
flip = true;
}
if(similar(u, f) && !similar(c, df) && !higher(c, u)){
flip = true;
}
}
if(flip){
dist = _lineWidth-distToLine(point, center+vec2(1.5, -1.0)*pointDir, center+vec2(-0.5, 0.0)*pointDir, -pointDir); //midpoints of neighbor two-pixel groupings
} else {
dist = distToLine(point, center+vec2(1.5, 0.0)*pointDir, center+vec2(-0.5, 1.0)*pointDir, pointDir); //midpoints of neighbor two-pixel groupings
}
//cleanup slant transitions
#ifdef CLEANUP
if(!flip && similar(c, uf) && !(similar3(c, uf, uff) && !similar3(c, uf, ff) && !similar(d, uff))){ //shallow
float dist2 = distToLine(point, center+vec2(2.0, -1.0)*pointDir, center+vec2(-0.0, 1.0)*pointDir, pointDir);
dist = min(dist, dist2);
}
#endif
dist -= (_lineWidth/2.0);
return dist <= 0.0 ? ((cd(c,f) <= cd(c,d)) ? f : d) : vec4(-1.0);
} else if(similar3(uf, f, d) && !similar3(u, f, d) && !similar(uf, db)){ //forward steep 2:1 slant
if(similar(c, df) && higher(c, d)){ //single pixel wide diagonal, dont flip
} else {
//priority edge cases
if(higher(c, d)){
flip = true;
}
if(similar(b, d) && !similar(c, df) && !higher(c, d)){
flip = true;
}
}
if(flip){
dist = _lineWidth-distToLine(point, center+vec2(0.0, -0.5)*pointDir, center+vec2(-1.0, 1.5)*pointDir, -pointDir); //midpoints of neighbor two-pixel groupings
} else {
dist = distToLine(point, center+vec2(1.0, -0.5)*pointDir, center+vec2(0.0, 1.5)*pointDir, pointDir); //midpoints of neighbor two-pixel groupings
}
//cleanup slant transitions
#ifdef CLEANUP
if(!flip && similar(c, db) && !(similar3(c, db, ddb) && !similar3(c, db, dd) && !similar(f, ddb))){ //steep
float dist2 = distToLine(point, center+vec2(1.0, 0.0)*pointDir, center+vec2(-1.0, 2.0)*pointDir, pointDir);
dist = min(dist, dist2);
}
#endif
dist -= (_lineWidth/2.0);
return dist <= 0.0 ? ((cd(c,f) <= cd(c,d)) ? f : d) : vec4(-1.0);
} else
#endif
if(similar(f, d)) { //45 diagonal
if(similar(c, df) && higher(c, f)){ //single pixel diagonal along neighbors, dont flip
if(!similar(c, dd) && !similar(c, ff)){ //line against triple color stripe edge case
flip = true;
}
} else {
//priority edge cases
if(higher(c, f)){
flip = true;
}
if(!similar(c, b) && similar4(b, f, d, u)){
flip = true;
}
}
//single pixel 2:1 slope, dont flip
if((( (similar(f, db) && similar3(u, f, df)) || (similar(uf, d) && similar3(b, d, df)) ) && !similar(c, df))){
flip = true;
}
if(flip){
dist = _lineWidth-distToLine(point, center+vec2(1.0, -1.0)*pointDir, center+vec2(-1.0, 1.0)*pointDir, -pointDir); //midpoints of own diagonal pixels
} else {
dist = distToLine(point, center+vec2(1.0, 0.0)*pointDir, center+vec2(0.0, 1.0)*pointDir, pointDir); //midpoints of corner neighbor pixels
}
//cleanup slant transitions
#ifdef SLOPE
#ifdef CLEANUP
if(!flip && similar3(c, uf, uff) && !similar3(c, uf, ff) && !similar(d, uff)){ //shallow
float dist2 = distToLine(point, center+vec2(1.5, 0.0)*pointDir, center+vec2(-0.5, 1.0)*pointDir, pointDir);
dist = max(dist, dist2);
}
if(!flip && similar3(ddb, db, c) && !similar3(dd, db, c) && !similar(ddb, f)){ //steep
float dist2 = distToLine(point, center+vec2(1.0, -0.5)*pointDir, center+vec2(0.0, 1.5)*pointDir, pointDir);
dist = max(dist, dist2);
}
#endif
#endif
dist -= (_lineWidth/2.0);
return dist <= 0.0 ? ((cd(c,f) <= cd(c,d)) ? f : d) : vec4(-1.0);
}
#ifdef SLOPE
else if(similar3(ff, df, d) && !similar3(ff, df, c) && !similar(uff, d)){ //far corner of shallow slant
if(similar(f, dff) && higher(f, ff)){ //single pixel wide diagonal, dont flip
} else {
//priority edge cases
if(higher(f, ff)){
flip = true;
}
if(similar(uf, ff) && !similar(f, dff) && !higher(f, uf)){
flip = true;
}
}
if(flip){
dist = _lineWidth-distToLine(point, center+vec2(1.5+1.0, -1.0)*pointDir, center+vec2(-0.5+1.0, 0.0)*pointDir, -pointDir); //midpoints of neighbor two-pixel groupings
} else {
dist = distToLine(point, center+vec2(1.5+1.0, 0.0)*pointDir, center+vec2(-0.5+1.0, 1.0)*pointDir, pointDir); //midpoints of neighbor two-pixel groupings
}
dist -= (_lineWidth/2.0);
return dist <= 0.0 ? ((cd(f,ff) <= cd(f,df)) ? ff : df) : vec4(-1.0);
} else if(similar3(f, df, dd) && !similar3(c, df, dd) && !similar(f, ddb)){ //far corner of steep slant
if(similar(d, ddf) && higher(d, dd)){ //single pixel wide diagonal, dont flip
} else {
//priority edge cases
if(higher(d, dd)){
flip = true;
}
if(similar(db, dd) && !similar(d, ddf) && !higher(d, dd)){
flip = true;
}
// if(!higher(d, dd)){
// return vec4(1.0);
// flip = true;
// }
}
if(flip){
dist = _lineWidth-distToLine(point, center+vec2(0.0, -0.5+1.0)*pointDir, center+vec2(-1.0, 1.5+1.0)*pointDir, -pointDir); //midpoints of neighbor two-pixel groupings
} else {
dist = distToLine(point, center+vec2(1.0, -0.5+1.0)*pointDir, center+vec2(0.0, 1.5+1.0)*pointDir, pointDir); //midpoints of neighbor two-pixel groupings
}
dist -= (_lineWidth/2.0);
return dist <= 0.0 ? ((cd(d,df) <= cd(d,dd)) ? df : dd) : vec4(-1.0);
}
#endif
return vec4(-1.0);
}
void main() {
vec2 local = fract(v_px);
vec2 px = ceil(v_px);
vec2 pointDir = round(local)*2.0-1.0;
//neighbor pixels
//Up, Down, Forward, and Back
//relative to quadrant of current location within pixel
vec4 uub = texture(uTexture, (px+vec2(-1.0,-2.0)*pointDir)/size);
vec4 uu = texture(uTexture, (px+vec2( 0.0,-2.0)*pointDir)/size);
vec4 uuf = texture(uTexture, (px+vec2( 1.0,-2.0)*pointDir)/size);
vec4 ubb = texture(uTexture, (px+vec2(-2.0,-2.0)*pointDir)/size);
vec4 ub = texture(uTexture, (px+vec2(-1.0,-1.0)*pointDir)/size);
vec4 u = texture(uTexture, (px+vec2( 0.0,-1.0)*pointDir)/size);
vec4 uf = texture(uTexture, (px+vec2( 1.0,-1.0)*pointDir)/size);
vec4 uff = texture(uTexture, (px+vec2( 2.0,-1.0)*pointDir)/size);
vec4 bb = texture(uTexture, (px+vec2(-2.0, 0.0)*pointDir)/size);
vec4 b = texture(uTexture, (px+vec2(-1.0, 0.0)*pointDir)/size);
vec4 c = texture(uTexture, (px+vec2( 0.0, 0.0)*pointDir)/size);
vec4 f = texture(uTexture, (px+vec2( 1.0, 0.0)*pointDir)/size);
vec4 ff = texture(uTexture, (px+vec2( 2.0, 0.0)*pointDir)/size);
vec4 dbb = texture(uTexture, (px+vec2(-2.0, 1.0)*pointDir)/size);
vec4 db = texture(uTexture, (px+vec2(-1.0, 1.0)*pointDir)/size);
vec4 d = texture(uTexture, (px+vec2( 0.0, 1.0)*pointDir)/size);
vec4 df = texture(uTexture, (px+vec2( 1.0, 1.0)*pointDir)/size);
vec4 dff = texture(uTexture, (px+vec2( 2.0, 1.0)*pointDir)/size);
vec4 ddb = texture(uTexture, (px+vec2(-1.0, 2.0)*pointDir)/size);
vec4 dd = texture(uTexture, (px+vec2( 0.0, 2.0)*pointDir)/size);
vec4 ddf = texture(uTexture, (px+vec2( 1.0, 2.0)*pointDir)/size);
vec4 col = c;
//c_orner, b_ack, and u_p slices
// (slices from neighbor pixels will only ever reach these 3 quadrants
vec4 c_col = sliceDist(local, vec2( 1.0, 1.0), pointDir, ub, u, uf, uff, b, c, f, ff, db, d, df, dff, ddb, dd, ddf);
vec4 b_col = sliceDist(local, vec2(-1.0, 1.0), pointDir, uf, u, ub, ubb, f, c, b, bb, df, d, db, dbb, ddf, dd, ddb);
vec4 u_col = sliceDist(local, vec2( 1.0,-1.0), pointDir, db, d, df, dff, b, c, f, ff, ub, u, uf, uff, uub, uu, uuf);
if(c_col.r >= 0.0){
col = c_col;
}
if(b_col.r >= 0.0){
col = b_col;
}
if(u_col.r >= 0.0){
col = u_col;
}
fragColor = col;
}
)";
constexpr char ResizeCrtScanlinesVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out highp vec2 vPixelCoords;
out vec2 vTexCoords;
out highp vec2 vOutputSize;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vPixelCoords = aPosition * spriteSize.xy;
vTexCoords = aPosition;
vOutputSize = spriteSize.xy;
}
)";
constexpr char ResizeCrtScanlinesFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in highp vec2 vPixelCoords;
in vec2 vTexCoords;
in highp vec2 vOutputSize;
out vec4 fragColor;
vec3 toYiq(vec3 value) {
const mat3 yiqmat = mat3(
0.2989, 0.5870, 0.1140,
0.5959, -0.2744, -0.3216,
0.2115, -0.5229, 0.3114);
return value * yiqmat;
}
vec3 fromYiq(vec3 value) {
const mat3 rgbmat = mat3(
1.0, 0.956, 0.6210,
1.0, -0.2720, -0.6474,
1.0, -1.1060, 1.7046);
return value * rgbmat;
}
void main() {
float y = vPixelCoords.y;
vec2 uv0 = vec2(vTexCoords.x, y / vOutputSize.y);
vec3 t0 = texture(uTexture, uv0).rgb;
float ymod = mod(vPixelCoords.y, 3.0);
if (ymod > 2.0) {
vec2 uv1 = vec2(vTexCoords.x, (y + 1.0) / vOutputSize.y);
vec3 t1 = texture(uTexture, uv1).rgb;
fragColor.rgb = (t0 + t1) * 0.25;
} else {
t0 = toYiq(t0);
t0.r *= 1.1;
t0 = fromYiq(t0);
fragColor.rgb = t0;
}
fragColor.a = 1.0;
}
)";
constexpr char ResizeCrtVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vTexCoords;
out vec2 vTexSize;
out vec2 vViewSize;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vTexCoords = aPosition;
vTexSize = texRect.xy;
vViewSize = spriteSize;
}
)";
constexpr char ResizeCrtShadowMaskFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
#define hardScan -6.0 /*-8.0*/
#define hardPix -3.0
#define warpX 0.031
#define warpY 0.041
#define maskDark 0.55
#define maskLight 1.5
#define scaleInLinearGamma 1
#define brightboost 1.0
#define hardBloomScan -2.0
#define hardBloomPix -1.5
#define bloomAmount 1.0/12.0 /*1.0/16.0*/
#define shape 2.0
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec2 vTexSize;
in vec2 vViewSize;
out vec4 fragColor;
#ifdef SIMPLE_LINEAR_GAMMA
float ToLinear1(float c) {
return c;
}
vec3 ToLinear(vec3 c) {
return c;
}
vec3 ToSrgb(vec3 c) {
return pow(c, 1.0 / 2.2);
}
#else
float ToLinear1(float c) {
if (scaleInLinearGamma==0) return c;
return(c<=0.04045)?c/12.92:pow((c+0.055)/1.055,2.4);
}
vec3 ToLinear(vec3 c) {
if (scaleInLinearGamma==0) return c;
return vec3(ToLinear1(c.r),ToLinear1(c.g),ToLinear1(c.b));
}
float ToSrgb1(float c) {
if (scaleInLinearGamma==0) return c;
return(c<0.0031308?c*12.92:1.055*pow(c,0.41666)-0.055);
}
vec3 ToSrgb(vec3 c) {
if (scaleInLinearGamma==0) return c;
return vec3(ToSrgb1(c.r),ToSrgb1(c.g),ToSrgb1(c.b));
}
#endif
// Nearest emulated sample given floating point position and texel offset.
// Also zero's off screen.
vec3 Fetch(vec2 pos, vec2 off, vec2 texture_size) {
pos=(floor(pos*texture_size.xy+off)+vec2(0.5,0.5))/texture_size.xy;
#ifdef SIMPLE_LINEAR_GAMMA
return ToLinear(vec3(brightboost) * pow(texture(uTexture,pos.xy).rgb, 2.2));
#else
return ToLinear(vec3(brightboost) * texture(uTexture,pos.xy).rgb);
#endif
}
// Distance in emulated pixels to nearest texel
vec2 Dist(vec2 pos, vec2 texture_size) {
pos=pos*texture_size.xy;
return -((pos-floor(pos))-vec2(0.5, 0.5));
}
// 1D Gaussian
float Gaus(float pos,float scale) {
return exp2(scale*pow(abs(pos),shape));
}
// 3-tap Gaussian filter along horz line
vec3 Horz3(vec2 pos, float off, vec2 texture_size) {
vec3 b=Fetch(pos,vec2(-1.0,off),texture_size);
vec3 c=Fetch(pos,vec2( 0.0,off),texture_size);
vec3 d=Fetch(pos,vec2( 1.0,off),texture_size);
float dst=Dist(pos, texture_size).x;
// Convert distance to weight.
float scale=hardPix;
float wb=Gaus(dst-1.0,scale);
float wc=Gaus(dst+0.0,scale);
float wd=Gaus(dst+1.0,scale);
// Return filtered sample.
return (b*wb+c*wc+d*wd)/(wb+wc+wd);
}
// 5-tap Gaussian filter along horz line
vec3 Horz5(vec2 pos, float off, vec2 texture_size) {
vec3 a=Fetch(pos,vec2(-2.0,off),texture_size);
vec3 b=Fetch(pos,vec2(-1.0,off),texture_size);
vec3 c=Fetch(pos,vec2( 0.0,off),texture_size);
vec3 d=Fetch(pos,vec2( 1.0,off),texture_size);
vec3 e=Fetch(pos,vec2( 2.0,off),texture_size);
float dst=Dist(pos, texture_size).x;
// Convert distance to weight.
float scale=hardPix;
float wa=Gaus(dst-2.0,scale);
float wb=Gaus(dst-1.0,scale);
float wc=Gaus(dst+0.0,scale);
float wd=Gaus(dst+1.0,scale);
float we=Gaus(dst+2.0,scale);
// Return filtered sample.
return (a*wa+b*wb+c*wc+d*wd+e*we)/(wa+wb+wc+wd+we);
}
// 7-tap Gaussian filter along horz line
vec3 Horz7(vec2 pos, float off, vec2 texture_size) {
vec3 a=Fetch(pos,vec2(-3.0,off),texture_size);
vec3 b=Fetch(pos,vec2(-2.0,off),texture_size);
vec3 c=Fetch(pos,vec2(-1.0,off),texture_size);
vec3 d=Fetch(pos,vec2( 0.0,off),texture_size);
vec3 e=Fetch(pos,vec2( 1.0,off),texture_size);
vec3 f=Fetch(pos,vec2( 2.0,off),texture_size);
vec3 g=Fetch(pos,vec2( 3.0,off),texture_size);
float dst=Dist(pos, texture_size).x;
// Convert distance to weight.
float scale=hardBloomPix;
float wa=Gaus(dst-3.0,scale);
float wb=Gaus(dst-2.0,scale);
float wc=Gaus(dst-1.0,scale);
float wd=Gaus(dst+0.0,scale);
float we=Gaus(dst+1.0,scale);
float wf=Gaus(dst+2.0,scale);
float wg=Gaus(dst+3.0,scale);
// Return filtered sample.
return (a*wa+b*wb+c*wc+d*wd+e*we+f*wf+g*wg)/(wa+wb+wc+wd+we+wf+wg);
}
// Return scanline weight
float Scan(vec2 pos,float off, vec2 texture_size) {
float dst=Dist(pos, texture_size).y;
return Gaus(dst+off,hardScan);
}
// Return scanline weight for bloom
float BloomScan(vec2 pos,float off, vec2 texture_size) {
float dst=Dist(pos, texture_size).y;
return Gaus(dst+off,hardBloomScan);
}
// Allow nearest three lines to effect pixel
vec3 Tri(vec2 pos, vec2 texture_size){
vec3 a=Horz3(pos,-1.0, texture_size);
vec3 b=Horz5(pos, 0.0, texture_size);
vec3 c=Horz3(pos, 1.0, texture_size);
float wa=Scan(pos,-1.0, texture_size);
float wb=Scan(pos, 0.0, texture_size);
float wc=Scan(pos, 1.0, texture_size);
return a*wa+b*wb+c*wc;
}
// Small bloom
vec3 Bloom(vec2 pos, vec2 texture_size) {
vec3 a=Horz5(pos,-2.0, texture_size);
vec3 b=Horz7(pos,-1.0, texture_size);
vec3 c=Horz7(pos, 0.0, texture_size);
vec3 d=Horz7(pos, 1.0, texture_size);
vec3 e=Horz5(pos, 2.0, texture_size);
float wa=BloomScan(pos,-2.0, texture_size);
float wb=BloomScan(pos,-1.0, texture_size);
float wc=BloomScan(pos, 0.0, texture_size);
float wd=BloomScan(pos, 1.0, texture_size);
float we=BloomScan(pos, 2.0, texture_size);
return a*wa+b*wb+c*wc+d*wd+e*we;
}
// Distortion of scanlines, and end of screen alpha
vec2 Warp(vec2 pos) {
pos=pos*2.0-1.0;
pos*=vec2(1.0+(pos.y*pos.y)*warpX,1.0+(pos.x*pos.x)*warpY);
return pos*0.5+0.5;
}
// Shadow mask
vec3 Mask(vec2 pos) {
vec3 mask = vec3(maskDark,maskDark,maskDark);
pos.xy=floor(pos.xy*vec2(1.0,0.5));
pos.x+=pos.y*3.0;
pos.x=fract(pos.x/6.0);
if(pos.x<0.333)mask.r=maskLight;
else if(pos.x<0.666)mask.g=maskLight;
else mask.b=maskLight;
return mask;
}
vec4 crt_lottes(vec2 texture_size, vec2 video_size, vec2 output_size, vec2 tex) {
vec2 pos=Warp(tex.xy*(texture_size.xy/video_size.xy))*(video_size.xy/texture_size.xy);
vec3 outColor = Tri(pos, texture_size);
outColor.rgb+=Bloom(pos, texture_size)*bloomAmount;
outColor.rgb*=Mask(floor(tex.xy*(texture_size.xy/video_size.xy)*output_size.xy)+vec2(0.5,0.5));
return vec4(ToSrgb(outColor.rgb),1.0);
}
void main() {
fragColor = crt_lottes(vTexSize, vTexSize, vViewSize, vTexCoords);
}
)";
constexpr char ResizeCrtApertureGrilleFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
#define hardScan -8.0
#define hardPix -3.0
#define warpX 0.0155
#define warpY 0.0205
#define maskDark 0.7
#define maskLight 1.5
#define scaleInLinearGamma 1
#define brightboost 1.1
#define hardBloomScan -2.0
#define hardBloomPix -1.5
#define bloomAmount 1.0/16.0
#define shape 2.0
uniform sampler2D uTexture;
in vec2 vTexCoords;
in vec2 vTexSize;
in vec2 vViewSize;
out vec4 fragColor;
#ifdef SIMPLE_LINEAR_GAMMA
float ToLinear1(float c) {
return c;
}
vec3 ToLinear(vec3 c) {
return c;
}
vec3 ToSrgb(vec3 c) {
return pow(c, 1.0 / 2.2);
}
#else
float ToLinear1(float c) {
if (scaleInLinearGamma==0) return c;
return(c<=0.04045)?c/12.92:pow((c+0.055)/1.055,2.4);
}
vec3 ToLinear(vec3 c) {
if (scaleInLinearGamma==0) return c;
return vec3(ToLinear1(c.r),ToLinear1(c.g),ToLinear1(c.b));
}
float ToSrgb1(float c) {
if (scaleInLinearGamma==0) return c;
return(c<0.0031308?c*12.92:1.055*pow(c,0.41666)-0.055);
}
vec3 ToSrgb(vec3 c) {
if (scaleInLinearGamma==0) return c;
return vec3(ToSrgb1(c.r),ToSrgb1(c.g),ToSrgb1(c.b));
}
#endif
// Nearest emulated sample given floating point position and texel offset.
// Also zero's off screen.
vec3 Fetch(vec2 pos, vec2 off, vec2 texture_size) {
pos=(floor(pos*texture_size.xy+off)+vec2(0.5,0.5))/texture_size.xy;
#ifdef SIMPLE_LINEAR_GAMMA
return ToLinear(vec3(brightboost) * pow(texture(uTexture,pos.xy).rgb, 2.2));
#else
return ToLinear(vec3(brightboost) * texture(uTexture,pos.xy).rgb);
#endif
}
// Distance in emulated pixels to nearest texel
vec2 Dist(vec2 pos, vec2 texture_size) {
pos=pos*texture_size.xy;
return -((pos-floor(pos))-vec2(0.5, 0.5));
}
// 1D Gaussian
float Gaus(float pos,float scale) {
return exp2(scale*pow(abs(pos),shape));
}
// 3-tap Gaussian filter along horz line
vec3 Horz3(vec2 pos, float off, vec2 texture_size) {
vec3 b=Fetch(pos,vec2(-1.0,off),texture_size);
vec3 c=Fetch(pos,vec2( 0.0,off),texture_size);
vec3 d=Fetch(pos,vec2( 1.0,off),texture_size);
float dst=Dist(pos, texture_size).x;
// Convert distance to weight.
float scale=hardPix;
float wb=Gaus(dst-1.0,scale);
float wc=Gaus(dst+0.0,scale);
float wd=Gaus(dst+1.0,scale);
// Return filtered sample.
return (b*wb+c*wc+d*wd)/(wb+wc+wd);
}
// 5-tap Gaussian filter along horz line
vec3 Horz5(vec2 pos, float off, vec2 texture_size) {
vec3 a=Fetch(pos,vec2(-2.0,off),texture_size);
vec3 b=Fetch(pos,vec2(-1.0,off),texture_size);
vec3 c=Fetch(pos,vec2( 0.0,off),texture_size);
vec3 d=Fetch(pos,vec2( 1.0,off),texture_size);
vec3 e=Fetch(pos,vec2( 2.0,off),texture_size);
float dst=Dist(pos, texture_size).x;
// Convert distance to weight.
float scale=hardPix;
float wa=Gaus(dst-2.0,scale);
float wb=Gaus(dst-1.0,scale);
float wc=Gaus(dst+0.0,scale);
float wd=Gaus(dst+1.0,scale);
float we=Gaus(dst+2.0,scale);
// Return filtered sample.
return (a*wa+b*wb+c*wc+d*wd+e*we)/(wa+wb+wc+wd+we);
}
// 7-tap Gaussian filter along horz line
vec3 Horz7(vec2 pos, float off, vec2 texture_size) {
vec3 a=Fetch(pos,vec2(-3.0,off),texture_size);
vec3 b=Fetch(pos,vec2(-2.0,off),texture_size);
vec3 c=Fetch(pos,vec2(-1.0,off),texture_size);
vec3 d=Fetch(pos,vec2( 0.0,off),texture_size);
vec3 e=Fetch(pos,vec2( 1.0,off),texture_size);
vec3 f=Fetch(pos,vec2( 2.0,off),texture_size);
vec3 g=Fetch(pos,vec2( 3.0,off),texture_size);
float dst=Dist(pos, texture_size).x;
// Convert distance to weight.
float scale=hardBloomPix;
float wa=Gaus(dst-3.0,scale);
float wb=Gaus(dst-2.0,scale);
float wc=Gaus(dst-1.0,scale);
float wd=Gaus(dst+0.0,scale);
float we=Gaus(dst+1.0,scale);
float wf=Gaus(dst+2.0,scale);
float wg=Gaus(dst+3.0,scale);
// Return filtered sample.
return (a*wa+b*wb+c*wc+d*wd+e*we+f*wf+g*wg)/(wa+wb+wc+wd+we+wf+wg);
}
// Return scanline weight
float Scan(vec2 pos,float off, vec2 texture_size) {
float dst=Dist(pos, texture_size).y;
return Gaus(dst+off,hardScan);
}
// Return scanline weight for bloom
float BloomScan(vec2 pos,float off, vec2 texture_size) {
float dst=Dist(pos, texture_size).y;
return Gaus(dst+off,hardBloomScan);
}
// Allow nearest three lines to effect pixel
vec3 Tri(vec2 pos, vec2 texture_size){
vec3 a=Horz3(pos,-1.0, texture_size);
vec3 b=Horz5(pos, 0.0, texture_size);
vec3 c=Horz3(pos, 1.0, texture_size);
float wa=Scan(pos,-1.0, texture_size);
float wb=Scan(pos, 0.0, texture_size);
float wc=Scan(pos, 1.0, texture_size);
return a*wa+b*wb+c*wc;
}
// Small bloom
vec3 Bloom(vec2 pos, vec2 texture_size) {
vec3 a=Horz5(pos,-2.0, texture_size);
vec3 b=Horz7(pos,-1.0, texture_size);
vec3 c=Horz7(pos, 0.0, texture_size);
vec3 d=Horz7(pos, 1.0, texture_size);
vec3 e=Horz5(pos, 2.0, texture_size);
float wa=BloomScan(pos,-2.0, texture_size);
float wb=BloomScan(pos,-1.0, texture_size);
float wc=BloomScan(pos, 0.0, texture_size);
float wd=BloomScan(pos, 1.0, texture_size);
float we=BloomScan(pos, 2.0, texture_size);
return a*wa+b*wb+c*wc+d*wd+e*we;
}
// Distortion of scanlines, and end of screen alpha
vec2 Warp(vec2 pos) {
pos=pos*2.0-1.0;
pos*=vec2(1.0+(pos.y*pos.y)*warpX,1.0+(pos.x*pos.x)*warpY);
return pos*0.5+0.5;
}
// Shadow mask
vec3 Mask(vec2 pos) {
vec3 mask = vec3(maskDark,maskDark,maskDark);
pos.x=fract(pos.x/3.0);
if(pos.x<0.333)mask.r=maskLight;
else if(pos.x<0.666)mask.g=maskLight;
else mask.b=maskLight;
return mask;
}
vec4 crt_lottes(vec2 texture_size, vec2 video_size, vec2 output_size, vec2 tex) {
vec2 pos=Warp(tex.xy*(texture_size.xy/video_size.xy))*(video_size.xy/texture_size.xy);
vec3 outColor = Tri(pos, texture_size);
outColor.rgb+=Bloom(pos, texture_size)*bloomAmount;
outColor.rgb*=Mask(floor(tex.xy*(texture_size.xy/video_size.xy)*output_size.xy)+vec2(0.5,0.5));
return vec4(ToSrgb(outColor.rgb),1.0);
}
void main() {
fragColor = crt_lottes(vTexSize, vTexSize, vViewSize, vTexCoords);
}
)";
constexpr char ResizeMonochromeVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vPixelCoords;
out vec2 vTexCoords;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vPixelCoords = aPosition * texRect.xy;
vTexCoords = aPosition;
}
)";
constexpr char ResizeMonochromeFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
mat4 bayerIndex = mat4(
vec4(0.0625, 0.5625, 0.1875, 0.6875),
vec4(0.8125, 0.3125, 0.9375, 0.4375),
vec4(0.25, 0.75, 0.125, 0.625),
vec4(1.0, 0.5, 0.875, 0.375));
uniform sampler2D uTexture;
in vec2 vPixelCoords;
in vec2 vTexCoords;
out vec4 fragColor;
float dither4x4(vec2 position, float brightness) {
float bayerValue = bayerIndex[int(position.x) % 4][int(position.y) % 4];
return brightness + (brightness < bayerValue ? -0.05 : 0.1);
}
void main() {
vec3 color = texture(uTexture, vTexCoords).rgb;
float gray = dot(((color - vec3(0.5)) * vec3(1.4, 1.2, 1.0)) + vec3(0.5), vec3(0.3, 0.7, 0.1));
gray = dither4x4(vPixelCoords, gray);
float palette = (abs(1.0 - gray) * 0.75) + 0.125;
if (palette < 0.25) {
color = vec3(0.675, 0.710, 0.420);
} else if (palette < 0.5) {
color = vec3(0.463, 0.518, 0.283);
} else if (palette < 0.75) {
color = vec3(0.247, 0.314, 0.247);
} else {
color = vec3(0.1, 0.134, 0.151);
}
fragColor = vec4(color, 1.0);
}
)";
constexpr char AntialiasingVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vPixelCoords;
out vec2 vTexSizeInv;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vPixelCoords = aPosition * texRect.xy + 0.5;
vTexSizeInv = 1.0 / texRect.xy;
}
)";
constexpr char AntialiasingFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
uniform sampler2D uTexture;
in vec2 vPixelCoords;
in vec2 vTexSizeInv;
out vec4 fragColor;
vec3 cubicHermite(vec3 A, vec3 B, vec3 C, vec3 D, float t) {
float t2 = t*t;
float t3 = t*t*t;
vec3 a = -A/2.0 + (3.0*B)/2.0 - (3.0*C)/2.0 + D/2.0;
vec3 b = A - (5.0*B)/2.0 + 2.0*C - D / 2.0;
vec3 c = -A/2.0 + C/2.0;
vec3 d = B;
return a*t3 + b*t2 + c*t + d;
}
void main() {
vec2 frac = fract(vPixelCoords);
vec2 pixel = floor(vPixelCoords) * vTexSizeInv - vec2(vTexSizeInv * 0.5);
vec2 vTexSizeInv2 = 2.0 * vTexSizeInv;
vec3 C00 = texture(uTexture, pixel + vec2(-vTexSizeInv.x, -vTexSizeInv.y)).rgb;
vec3 C10 = texture(uTexture, pixel + vec2(0.0, -vTexSizeInv.y)).rgb;
vec3 C20 = texture(uTexture, pixel + vec2(vTexSizeInv.x, -vTexSizeInv.y)).rgb;
vec3 C30 = texture(uTexture, pixel + vec2(vTexSizeInv2.x, -vTexSizeInv.y)).rgb;
vec3 C01 = texture(uTexture, pixel + vec2(-vTexSizeInv.x, 0.0)).rgb;
vec3 C11 = texture(uTexture, pixel + vec2(0.0, 0.0)).rgb;
vec3 C21 = texture(uTexture, pixel + vec2(vTexSizeInv.x, 0.0)).rgb;
vec3 C31 = texture(uTexture, pixel + vec2(vTexSizeInv2.x, 0.0)).rgb;
vec3 C02 = texture(uTexture, pixel + vec2(-vTexSizeInv.x , vTexSizeInv.y)).rgb;
vec3 C12 = texture(uTexture, pixel + vec2(0.0, vTexSizeInv.y)).rgb;
vec3 C22 = texture(uTexture, pixel + vec2(vTexSizeInv.x , vTexSizeInv.y)).rgb;
vec3 C32 = texture(uTexture, pixel + vec2(vTexSizeInv2.x, vTexSizeInv.y)).rgb;
vec3 C03 = texture(uTexture, pixel + vec2(-vTexSizeInv.x, vTexSizeInv2.y)).rgb;
vec3 C13 = texture(uTexture, pixel + vec2(0.0, vTexSizeInv2.y)).rgb;
vec3 C23 = texture(uTexture, pixel + vec2(vTexSizeInv.x, vTexSizeInv2.y)).rgb;
vec3 C33 = texture(uTexture, pixel + vec2(vTexSizeInv2.x, vTexSizeInv2.y)).rgb;
vec3 CP0X = cubicHermite(C00, C10, C20, C30, frac.x);
vec3 CP1X = cubicHermite(C01, C11, C21, C31, frac.x);
vec3 CP2X = cubicHermite(C02, C12, C22, C32, frac.x);
vec3 CP3X = cubicHermite(C03, C13, C23, C33, frac.x);
fragColor = vec4(cubicHermite(CP0X, CP1X, CP2X, CP3X, frac.y), 1.0);
}
)";
constexpr char TransitionVs[] = "#line " DEATH_LINE_STRING "\n" R"(
uniform mat4 uProjectionMatrix;
uniform mat4 uViewMatrix;
layout (std140) uniform InstanceBlock
{
mat4 modelMatrix;
vec4 color;
vec4 texRect;
vec2 spriteSize;
};
out vec2 vTexCoords;
out vec2 vCorrection;
out float vProgressTime;
void main() {
vec2 aPosition = vec2(1.0 - float(gl_VertexID >> 1), float(gl_VertexID % 2));
vec4 position = vec4(aPosition.x * spriteSize.x, aPosition.y * spriteSize.y, 0.0, 1.0);
gl_Position = uProjectionMatrix * uViewMatrix * modelMatrix * position;
vTexCoords = vec2(aPosition.x * texRect.x + texRect.y, aPosition.y * texRect.z + texRect.w);
vCorrection = spriteSize / vec2(max(spriteSize.x, spriteSize.y));
vProgressTime = color.a;
}
)";
constexpr char TransitionFs[] = "#line " DEATH_LINE_STRING "\n" R"(
#ifdef GL_ES
precision mediump float;
#endif
in vec2 vTexCoords;
in vec2 vCorrection;
in float vProgressTime;
out vec4 fragColor;
float rand(vec2 xy) {
return fract(sin(dot(xy.xy, vec2(12.9898,78.233))) * 43758.5453);
}
float ease(float time) {
time *= 2.0;
if (time < 1.0) {
return 0.5 * time * time;
}
time -= 1.0;
return -0.5 * (time * (time - 2.0) - 1.0);
}
void main() {
vec2 uv = (vTexCoords - vec2(0.5)) * vCorrection;
float distance = length(uv);
float progressInner = vProgressTime - 0.22;
distance = (clamp(distance, progressInner, vProgressTime) - progressInner) / (vProgressTime - progressInner);
float mixValue = ease(distance);
float noise = 1.0 + rand(uv) * 0.1;
fragColor = vec4(0.0, 0.0, 0.0, mixValue * noise);
}
)";
}
#endif
|