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
|
// *** THIS FILE IS GENERATED - DO NOT EDIT ***
// See extension_helper_generator.py for modifications
/***************************************************************************
*
* Copyright (c) 2015-2025 The Khronos Group Inc.
* Copyright (c) 2015-2025 Valve Corporation
* Copyright (c) 2015-2025 LunarG, Inc.
* Copyright (c) 2015-2025 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
****************************************************************************/
// NOLINTBEGIN
#include "vk_extension_helper.h"
vvl::Extension GetExtension(std::string extension) {
static const vvl::unordered_map<std::string, vvl::Extension> extension_map{
{"VK_KHR_surface", vvl::Extension::_VK_KHR_surface},
{"VK_KHR_swapchain", vvl::Extension::_VK_KHR_swapchain},
{"VK_KHR_display", vvl::Extension::_VK_KHR_display},
{"VK_KHR_display_swapchain", vvl::Extension::_VK_KHR_display_swapchain},
{"VK_KHR_xlib_surface", vvl::Extension::_VK_KHR_xlib_surface},
{"VK_KHR_xcb_surface", vvl::Extension::_VK_KHR_xcb_surface},
{"VK_KHR_wayland_surface", vvl::Extension::_VK_KHR_wayland_surface},
{"VK_KHR_android_surface", vvl::Extension::_VK_KHR_android_surface},
{"VK_KHR_win32_surface", vvl::Extension::_VK_KHR_win32_surface},
{"VK_KHR_sampler_mirror_clamp_to_edge", vvl::Extension::_VK_KHR_sampler_mirror_clamp_to_edge},
{"VK_KHR_video_queue", vvl::Extension::_VK_KHR_video_queue},
{"VK_KHR_video_decode_queue", vvl::Extension::_VK_KHR_video_decode_queue},
{"VK_KHR_video_encode_h264", vvl::Extension::_VK_KHR_video_encode_h264},
{"VK_KHR_video_encode_h265", vvl::Extension::_VK_KHR_video_encode_h265},
{"VK_KHR_video_decode_h264", vvl::Extension::_VK_KHR_video_decode_h264},
{"VK_KHR_dynamic_rendering", vvl::Extension::_VK_KHR_dynamic_rendering},
{"VK_KHR_multiview", vvl::Extension::_VK_KHR_multiview},
{"VK_KHR_get_physical_device_properties2", vvl::Extension::_VK_KHR_get_physical_device_properties2},
{"VK_KHR_device_group", vvl::Extension::_VK_KHR_device_group},
{"VK_KHR_shader_draw_parameters", vvl::Extension::_VK_KHR_shader_draw_parameters},
{"VK_KHR_maintenance1", vvl::Extension::_VK_KHR_maintenance1},
{"VK_KHR_device_group_creation", vvl::Extension::_VK_KHR_device_group_creation},
{"VK_KHR_external_memory_capabilities", vvl::Extension::_VK_KHR_external_memory_capabilities},
{"VK_KHR_external_memory", vvl::Extension::_VK_KHR_external_memory},
{"VK_KHR_external_memory_win32", vvl::Extension::_VK_KHR_external_memory_win32},
{"VK_KHR_external_memory_fd", vvl::Extension::_VK_KHR_external_memory_fd},
{"VK_KHR_win32_keyed_mutex", vvl::Extension::_VK_KHR_win32_keyed_mutex},
{"VK_KHR_external_semaphore_capabilities", vvl::Extension::_VK_KHR_external_semaphore_capabilities},
{"VK_KHR_external_semaphore", vvl::Extension::_VK_KHR_external_semaphore},
{"VK_KHR_external_semaphore_win32", vvl::Extension::_VK_KHR_external_semaphore_win32},
{"VK_KHR_external_semaphore_fd", vvl::Extension::_VK_KHR_external_semaphore_fd},
{"VK_KHR_push_descriptor", vvl::Extension::_VK_KHR_push_descriptor},
{"VK_KHR_shader_float16_int8", vvl::Extension::_VK_KHR_shader_float16_int8},
{"VK_KHR_16bit_storage", vvl::Extension::_VK_KHR_16bit_storage},
{"VK_KHR_incremental_present", vvl::Extension::_VK_KHR_incremental_present},
{"VK_KHR_descriptor_update_template", vvl::Extension::_VK_KHR_descriptor_update_template},
{"VK_KHR_imageless_framebuffer", vvl::Extension::_VK_KHR_imageless_framebuffer},
{"VK_KHR_create_renderpass2", vvl::Extension::_VK_KHR_create_renderpass2},
{"VK_KHR_shared_presentable_image", vvl::Extension::_VK_KHR_shared_presentable_image},
{"VK_KHR_external_fence_capabilities", vvl::Extension::_VK_KHR_external_fence_capabilities},
{"VK_KHR_external_fence", vvl::Extension::_VK_KHR_external_fence},
{"VK_KHR_external_fence_win32", vvl::Extension::_VK_KHR_external_fence_win32},
{"VK_KHR_external_fence_fd", vvl::Extension::_VK_KHR_external_fence_fd},
{"VK_KHR_performance_query", vvl::Extension::_VK_KHR_performance_query},
{"VK_KHR_maintenance2", vvl::Extension::_VK_KHR_maintenance2},
{"VK_KHR_get_surface_capabilities2", vvl::Extension::_VK_KHR_get_surface_capabilities2},
{"VK_KHR_variable_pointers", vvl::Extension::_VK_KHR_variable_pointers},
{"VK_KHR_get_display_properties2", vvl::Extension::_VK_KHR_get_display_properties2},
{"VK_KHR_dedicated_allocation", vvl::Extension::_VK_KHR_dedicated_allocation},
{"VK_KHR_storage_buffer_storage_class", vvl::Extension::_VK_KHR_storage_buffer_storage_class},
{"VK_KHR_shader_bfloat16", vvl::Extension::_VK_KHR_shader_bfloat16},
{"VK_KHR_relaxed_block_layout", vvl::Extension::_VK_KHR_relaxed_block_layout},
{"VK_KHR_get_memory_requirements2", vvl::Extension::_VK_KHR_get_memory_requirements2},
{"VK_KHR_image_format_list", vvl::Extension::_VK_KHR_image_format_list},
{"VK_KHR_sampler_ycbcr_conversion", vvl::Extension::_VK_KHR_sampler_ycbcr_conversion},
{"VK_KHR_bind_memory2", vvl::Extension::_VK_KHR_bind_memory2},
{"VK_KHR_portability_subset", vvl::Extension::_VK_KHR_portability_subset},
{"VK_KHR_maintenance3", vvl::Extension::_VK_KHR_maintenance3},
{"VK_KHR_draw_indirect_count", vvl::Extension::_VK_KHR_draw_indirect_count},
{"VK_KHR_shader_subgroup_extended_types", vvl::Extension::_VK_KHR_shader_subgroup_extended_types},
{"VK_KHR_8bit_storage", vvl::Extension::_VK_KHR_8bit_storage},
{"VK_KHR_shader_atomic_int64", vvl::Extension::_VK_KHR_shader_atomic_int64},
{"VK_KHR_shader_clock", vvl::Extension::_VK_KHR_shader_clock},
{"VK_KHR_video_decode_h265", vvl::Extension::_VK_KHR_video_decode_h265},
{"VK_KHR_global_priority", vvl::Extension::_VK_KHR_global_priority},
{"VK_KHR_driver_properties", vvl::Extension::_VK_KHR_driver_properties},
{"VK_KHR_shader_float_controls", vvl::Extension::_VK_KHR_shader_float_controls},
{"VK_KHR_depth_stencil_resolve", vvl::Extension::_VK_KHR_depth_stencil_resolve},
{"VK_KHR_swapchain_mutable_format", vvl::Extension::_VK_KHR_swapchain_mutable_format},
{"VK_KHR_timeline_semaphore", vvl::Extension::_VK_KHR_timeline_semaphore},
{"VK_KHR_vulkan_memory_model", vvl::Extension::_VK_KHR_vulkan_memory_model},
{"VK_KHR_shader_terminate_invocation", vvl::Extension::_VK_KHR_shader_terminate_invocation},
{"VK_KHR_fragment_shading_rate", vvl::Extension::_VK_KHR_fragment_shading_rate},
{"VK_KHR_dynamic_rendering_local_read", vvl::Extension::_VK_KHR_dynamic_rendering_local_read},
{"VK_KHR_shader_quad_control", vvl::Extension::_VK_KHR_shader_quad_control},
{"VK_KHR_spirv_1_4", vvl::Extension::_VK_KHR_spirv_1_4},
{"VK_KHR_surface_protected_capabilities", vvl::Extension::_VK_KHR_surface_protected_capabilities},
{"VK_KHR_separate_depth_stencil_layouts", vvl::Extension::_VK_KHR_separate_depth_stencil_layouts},
{"VK_KHR_present_wait", vvl::Extension::_VK_KHR_present_wait},
{"VK_KHR_uniform_buffer_standard_layout", vvl::Extension::_VK_KHR_uniform_buffer_standard_layout},
{"VK_KHR_buffer_device_address", vvl::Extension::_VK_KHR_buffer_device_address},
{"VK_KHR_deferred_host_operations", vvl::Extension::_VK_KHR_deferred_host_operations},
{"VK_KHR_pipeline_executable_properties", vvl::Extension::_VK_KHR_pipeline_executable_properties},
{"VK_KHR_map_memory2", vvl::Extension::_VK_KHR_map_memory2},
{"VK_KHR_shader_integer_dot_product", vvl::Extension::_VK_KHR_shader_integer_dot_product},
{"VK_KHR_pipeline_library", vvl::Extension::_VK_KHR_pipeline_library},
{"VK_KHR_shader_non_semantic_info", vvl::Extension::_VK_KHR_shader_non_semantic_info},
{"VK_KHR_present_id", vvl::Extension::_VK_KHR_present_id},
{"VK_KHR_video_encode_queue", vvl::Extension::_VK_KHR_video_encode_queue},
{"VK_KHR_synchronization2", vvl::Extension::_VK_KHR_synchronization2},
{"VK_KHR_fragment_shader_barycentric", vvl::Extension::_VK_KHR_fragment_shader_barycentric},
{"VK_KHR_shader_subgroup_uniform_control_flow", vvl::Extension::_VK_KHR_shader_subgroup_uniform_control_flow},
{"VK_KHR_zero_initialize_workgroup_memory", vvl::Extension::_VK_KHR_zero_initialize_workgroup_memory},
{"VK_KHR_workgroup_memory_explicit_layout", vvl::Extension::_VK_KHR_workgroup_memory_explicit_layout},
{"VK_KHR_copy_commands2", vvl::Extension::_VK_KHR_copy_commands2},
{"VK_KHR_format_feature_flags2", vvl::Extension::_VK_KHR_format_feature_flags2},
{"VK_KHR_ray_tracing_maintenance1", vvl::Extension::_VK_KHR_ray_tracing_maintenance1},
{"VK_KHR_portability_enumeration", vvl::Extension::_VK_KHR_portability_enumeration},
{"VK_KHR_maintenance4", vvl::Extension::_VK_KHR_maintenance4},
{"VK_KHR_shader_subgroup_rotate", vvl::Extension::_VK_KHR_shader_subgroup_rotate},
{"VK_KHR_shader_maximal_reconvergence", vvl::Extension::_VK_KHR_shader_maximal_reconvergence},
{"VK_KHR_maintenance5", vvl::Extension::_VK_KHR_maintenance5},
{"VK_KHR_present_id2", vvl::Extension::_VK_KHR_present_id2},
{"VK_KHR_present_wait2", vvl::Extension::_VK_KHR_present_wait2},
{"VK_KHR_ray_tracing_position_fetch", vvl::Extension::_VK_KHR_ray_tracing_position_fetch},
{"VK_KHR_pipeline_binary", vvl::Extension::_VK_KHR_pipeline_binary},
{"VK_KHR_surface_maintenance1", vvl::Extension::_VK_KHR_surface_maintenance1},
{"VK_KHR_swapchain_maintenance1", vvl::Extension::_VK_KHR_swapchain_maintenance1},
{"VK_KHR_cooperative_matrix", vvl::Extension::_VK_KHR_cooperative_matrix},
{"VK_KHR_compute_shader_derivatives", vvl::Extension::_VK_KHR_compute_shader_derivatives},
{"VK_KHR_video_decode_av1", vvl::Extension::_VK_KHR_video_decode_av1},
{"VK_KHR_video_encode_av1", vvl::Extension::_VK_KHR_video_encode_av1},
{"VK_KHR_video_decode_vp9", vvl::Extension::_VK_KHR_video_decode_vp9},
{"VK_KHR_video_maintenance1", vvl::Extension::_VK_KHR_video_maintenance1},
{"VK_KHR_vertex_attribute_divisor", vvl::Extension::_VK_KHR_vertex_attribute_divisor},
{"VK_KHR_load_store_op_none", vvl::Extension::_VK_KHR_load_store_op_none},
{"VK_KHR_unified_image_layouts", vvl::Extension::_VK_KHR_unified_image_layouts},
{"VK_KHR_shader_float_controls2", vvl::Extension::_VK_KHR_shader_float_controls2},
{"VK_KHR_index_type_uint8", vvl::Extension::_VK_KHR_index_type_uint8},
{"VK_KHR_line_rasterization", vvl::Extension::_VK_KHR_line_rasterization},
{"VK_KHR_calibrated_timestamps", vvl::Extension::_VK_KHR_calibrated_timestamps},
{"VK_KHR_shader_expect_assume", vvl::Extension::_VK_KHR_shader_expect_assume},
{"VK_KHR_maintenance6", vvl::Extension::_VK_KHR_maintenance6},
{"VK_KHR_video_encode_intra_refresh", vvl::Extension::_VK_KHR_video_encode_intra_refresh},
{"VK_KHR_video_encode_quantization_map", vvl::Extension::_VK_KHR_video_encode_quantization_map},
{"VK_KHR_shader_relaxed_extended_instruction", vvl::Extension::_VK_KHR_shader_relaxed_extended_instruction},
{"VK_KHR_maintenance7", vvl::Extension::_VK_KHR_maintenance7},
{"VK_KHR_maintenance8", vvl::Extension::_VK_KHR_maintenance8},
{"VK_KHR_maintenance9", vvl::Extension::_VK_KHR_maintenance9},
{"VK_KHR_video_maintenance2", vvl::Extension::_VK_KHR_video_maintenance2},
{"VK_KHR_depth_clamp_zero_one", vvl::Extension::_VK_KHR_depth_clamp_zero_one},
{"VK_KHR_robustness2", vvl::Extension::_VK_KHR_robustness2},
{"VK_KHR_present_mode_fifo_latest_ready", vvl::Extension::_VK_KHR_present_mode_fifo_latest_ready},
{"VK_EXT_debug_report", vvl::Extension::_VK_EXT_debug_report},
{"VK_NV_glsl_shader", vvl::Extension::_VK_NV_glsl_shader},
{"VK_EXT_depth_range_unrestricted", vvl::Extension::_VK_EXT_depth_range_unrestricted},
{"VK_IMG_filter_cubic", vvl::Extension::_VK_IMG_filter_cubic},
{"VK_AMD_rasterization_order", vvl::Extension::_VK_AMD_rasterization_order},
{"VK_AMD_shader_trinary_minmax", vvl::Extension::_VK_AMD_shader_trinary_minmax},
{"VK_AMD_shader_explicit_vertex_parameter", vvl::Extension::_VK_AMD_shader_explicit_vertex_parameter},
{"VK_EXT_debug_marker", vvl::Extension::_VK_EXT_debug_marker},
{"VK_AMD_gcn_shader", vvl::Extension::_VK_AMD_gcn_shader},
{"VK_NV_dedicated_allocation", vvl::Extension::_VK_NV_dedicated_allocation},
{"VK_EXT_transform_feedback", vvl::Extension::_VK_EXT_transform_feedback},
{"VK_NVX_binary_import", vvl::Extension::_VK_NVX_binary_import},
{"VK_NVX_image_view_handle", vvl::Extension::_VK_NVX_image_view_handle},
{"VK_AMD_draw_indirect_count", vvl::Extension::_VK_AMD_draw_indirect_count},
{"VK_AMD_negative_viewport_height", vvl::Extension::_VK_AMD_negative_viewport_height},
{"VK_AMD_gpu_shader_half_float", vvl::Extension::_VK_AMD_gpu_shader_half_float},
{"VK_AMD_shader_ballot", vvl::Extension::_VK_AMD_shader_ballot},
{"VK_AMD_texture_gather_bias_lod", vvl::Extension::_VK_AMD_texture_gather_bias_lod},
{"VK_AMD_shader_info", vvl::Extension::_VK_AMD_shader_info},
{"VK_AMD_shader_image_load_store_lod", vvl::Extension::_VK_AMD_shader_image_load_store_lod},
{"VK_GGP_stream_descriptor_surface", vvl::Extension::_VK_GGP_stream_descriptor_surface},
{"VK_NV_corner_sampled_image", vvl::Extension::_VK_NV_corner_sampled_image},
{"VK_IMG_format_pvrtc", vvl::Extension::_VK_IMG_format_pvrtc},
{"VK_NV_external_memory_capabilities", vvl::Extension::_VK_NV_external_memory_capabilities},
{"VK_NV_external_memory", vvl::Extension::_VK_NV_external_memory},
{"VK_NV_external_memory_win32", vvl::Extension::_VK_NV_external_memory_win32},
{"VK_NV_win32_keyed_mutex", vvl::Extension::_VK_NV_win32_keyed_mutex},
{"VK_EXT_validation_flags", vvl::Extension::_VK_EXT_validation_flags},
{"VK_NN_vi_surface", vvl::Extension::_VK_NN_vi_surface},
{"VK_EXT_shader_subgroup_ballot", vvl::Extension::_VK_EXT_shader_subgroup_ballot},
{"VK_EXT_shader_subgroup_vote", vvl::Extension::_VK_EXT_shader_subgroup_vote},
{"VK_EXT_texture_compression_astc_hdr", vvl::Extension::_VK_EXT_texture_compression_astc_hdr},
{"VK_EXT_astc_decode_mode", vvl::Extension::_VK_EXT_astc_decode_mode},
{"VK_EXT_pipeline_robustness", vvl::Extension::_VK_EXT_pipeline_robustness},
{"VK_EXT_conditional_rendering", vvl::Extension::_VK_EXT_conditional_rendering},
{"VK_NV_clip_space_w_scaling", vvl::Extension::_VK_NV_clip_space_w_scaling},
{"VK_EXT_direct_mode_display", vvl::Extension::_VK_EXT_direct_mode_display},
{"VK_EXT_acquire_xlib_display", vvl::Extension::_VK_EXT_acquire_xlib_display},
{"VK_EXT_display_surface_counter", vvl::Extension::_VK_EXT_display_surface_counter},
{"VK_EXT_display_control", vvl::Extension::_VK_EXT_display_control},
{"VK_GOOGLE_display_timing", vvl::Extension::_VK_GOOGLE_display_timing},
{"VK_NV_sample_mask_override_coverage", vvl::Extension::_VK_NV_sample_mask_override_coverage},
{"VK_NV_geometry_shader_passthrough", vvl::Extension::_VK_NV_geometry_shader_passthrough},
{"VK_NV_viewport_array2", vvl::Extension::_VK_NV_viewport_array2},
{"VK_NVX_multiview_per_view_attributes", vvl::Extension::_VK_NVX_multiview_per_view_attributes},
{"VK_NV_viewport_swizzle", vvl::Extension::_VK_NV_viewport_swizzle},
{"VK_EXT_discard_rectangles", vvl::Extension::_VK_EXT_discard_rectangles},
{"VK_EXT_conservative_rasterization", vvl::Extension::_VK_EXT_conservative_rasterization},
{"VK_EXT_depth_clip_enable", vvl::Extension::_VK_EXT_depth_clip_enable},
{"VK_EXT_swapchain_colorspace", vvl::Extension::_VK_EXT_swapchain_colorspace},
{"VK_EXT_hdr_metadata", vvl::Extension::_VK_EXT_hdr_metadata},
{"VK_IMG_relaxed_line_rasterization", vvl::Extension::_VK_IMG_relaxed_line_rasterization},
{"VK_MVK_ios_surface", vvl::Extension::_VK_MVK_ios_surface},
{"VK_MVK_macos_surface", vvl::Extension::_VK_MVK_macos_surface},
{"VK_EXT_external_memory_dma_buf", vvl::Extension::_VK_EXT_external_memory_dma_buf},
{"VK_EXT_queue_family_foreign", vvl::Extension::_VK_EXT_queue_family_foreign},
{"VK_EXT_debug_utils", vvl::Extension::_VK_EXT_debug_utils},
{"VK_ANDROID_external_memory_android_hardware_buffer", vvl::Extension::_VK_ANDROID_external_memory_android_hardware_buffer},
{"VK_EXT_sampler_filter_minmax", vvl::Extension::_VK_EXT_sampler_filter_minmax},
{"VK_AMD_gpu_shader_int16", vvl::Extension::_VK_AMD_gpu_shader_int16},
{"VK_AMDX_shader_enqueue", vvl::Extension::_VK_AMDX_shader_enqueue},
{"VK_AMD_mixed_attachment_samples", vvl::Extension::_VK_AMD_mixed_attachment_samples},
{"VK_AMD_shader_fragment_mask", vvl::Extension::_VK_AMD_shader_fragment_mask},
{"VK_EXT_inline_uniform_block", vvl::Extension::_VK_EXT_inline_uniform_block},
{"VK_EXT_shader_stencil_export", vvl::Extension::_VK_EXT_shader_stencil_export},
{"VK_EXT_sample_locations", vvl::Extension::_VK_EXT_sample_locations},
{"VK_EXT_blend_operation_advanced", vvl::Extension::_VK_EXT_blend_operation_advanced},
{"VK_NV_fragment_coverage_to_color", vvl::Extension::_VK_NV_fragment_coverage_to_color},
{"VK_NV_framebuffer_mixed_samples", vvl::Extension::_VK_NV_framebuffer_mixed_samples},
{"VK_NV_fill_rectangle", vvl::Extension::_VK_NV_fill_rectangle},
{"VK_NV_shader_sm_builtins", vvl::Extension::_VK_NV_shader_sm_builtins},
{"VK_EXT_post_depth_coverage", vvl::Extension::_VK_EXT_post_depth_coverage},
{"VK_EXT_image_drm_format_modifier", vvl::Extension::_VK_EXT_image_drm_format_modifier},
{"VK_EXT_validation_cache", vvl::Extension::_VK_EXT_validation_cache},
{"VK_EXT_descriptor_indexing", vvl::Extension::_VK_EXT_descriptor_indexing},
{"VK_EXT_shader_viewport_index_layer", vvl::Extension::_VK_EXT_shader_viewport_index_layer},
{"VK_NV_shading_rate_image", vvl::Extension::_VK_NV_shading_rate_image},
{"VK_NV_ray_tracing", vvl::Extension::_VK_NV_ray_tracing},
{"VK_NV_representative_fragment_test", vvl::Extension::_VK_NV_representative_fragment_test},
{"VK_EXT_filter_cubic", vvl::Extension::_VK_EXT_filter_cubic},
{"VK_QCOM_render_pass_shader_resolve", vvl::Extension::_VK_QCOM_render_pass_shader_resolve},
{"VK_EXT_global_priority", vvl::Extension::_VK_EXT_global_priority},
{"VK_EXT_external_memory_host", vvl::Extension::_VK_EXT_external_memory_host},
{"VK_AMD_buffer_marker", vvl::Extension::_VK_AMD_buffer_marker},
{"VK_AMD_pipeline_compiler_control", vvl::Extension::_VK_AMD_pipeline_compiler_control},
{"VK_EXT_calibrated_timestamps", vvl::Extension::_VK_EXT_calibrated_timestamps},
{"VK_AMD_shader_core_properties", vvl::Extension::_VK_AMD_shader_core_properties},
{"VK_AMD_memory_overallocation_behavior", vvl::Extension::_VK_AMD_memory_overallocation_behavior},
{"VK_EXT_vertex_attribute_divisor", vvl::Extension::_VK_EXT_vertex_attribute_divisor},
{"VK_GGP_frame_token", vvl::Extension::_VK_GGP_frame_token},
{"VK_EXT_pipeline_creation_feedback", vvl::Extension::_VK_EXT_pipeline_creation_feedback},
{"VK_NV_shader_subgroup_partitioned", vvl::Extension::_VK_NV_shader_subgroup_partitioned},
{"VK_NV_compute_shader_derivatives", vvl::Extension::_VK_NV_compute_shader_derivatives},
{"VK_NV_mesh_shader", vvl::Extension::_VK_NV_mesh_shader},
{"VK_NV_fragment_shader_barycentric", vvl::Extension::_VK_NV_fragment_shader_barycentric},
{"VK_NV_shader_image_footprint", vvl::Extension::_VK_NV_shader_image_footprint},
{"VK_NV_scissor_exclusive", vvl::Extension::_VK_NV_scissor_exclusive},
{"VK_NV_device_diagnostic_checkpoints", vvl::Extension::_VK_NV_device_diagnostic_checkpoints},
{"VK_INTEL_shader_integer_functions2", vvl::Extension::_VK_INTEL_shader_integer_functions2},
{"VK_INTEL_performance_query", vvl::Extension::_VK_INTEL_performance_query},
{"VK_EXT_pci_bus_info", vvl::Extension::_VK_EXT_pci_bus_info},
{"VK_AMD_display_native_hdr", vvl::Extension::_VK_AMD_display_native_hdr},
{"VK_FUCHSIA_imagepipe_surface", vvl::Extension::_VK_FUCHSIA_imagepipe_surface},
{"VK_EXT_metal_surface", vvl::Extension::_VK_EXT_metal_surface},
{"VK_EXT_fragment_density_map", vvl::Extension::_VK_EXT_fragment_density_map},
{"VK_EXT_scalar_block_layout", vvl::Extension::_VK_EXT_scalar_block_layout},
{"VK_GOOGLE_hlsl_functionality1", vvl::Extension::_VK_GOOGLE_hlsl_functionality1},
{"VK_GOOGLE_decorate_string", vvl::Extension::_VK_GOOGLE_decorate_string},
{"VK_EXT_subgroup_size_control", vvl::Extension::_VK_EXT_subgroup_size_control},
{"VK_AMD_shader_core_properties2", vvl::Extension::_VK_AMD_shader_core_properties2},
{"VK_AMD_device_coherent_memory", vvl::Extension::_VK_AMD_device_coherent_memory},
{"VK_EXT_shader_image_atomic_int64", vvl::Extension::_VK_EXT_shader_image_atomic_int64},
{"VK_EXT_memory_budget", vvl::Extension::_VK_EXT_memory_budget},
{"VK_EXT_memory_priority", vvl::Extension::_VK_EXT_memory_priority},
{"VK_NV_dedicated_allocation_image_aliasing", vvl::Extension::_VK_NV_dedicated_allocation_image_aliasing},
{"VK_EXT_buffer_device_address", vvl::Extension::_VK_EXT_buffer_device_address},
{"VK_EXT_tooling_info", vvl::Extension::_VK_EXT_tooling_info},
{"VK_EXT_separate_stencil_usage", vvl::Extension::_VK_EXT_separate_stencil_usage},
{"VK_EXT_validation_features", vvl::Extension::_VK_EXT_validation_features},
{"VK_NV_cooperative_matrix", vvl::Extension::_VK_NV_cooperative_matrix},
{"VK_NV_coverage_reduction_mode", vvl::Extension::_VK_NV_coverage_reduction_mode},
{"VK_EXT_fragment_shader_interlock", vvl::Extension::_VK_EXT_fragment_shader_interlock},
{"VK_EXT_ycbcr_image_arrays", vvl::Extension::_VK_EXT_ycbcr_image_arrays},
{"VK_EXT_provoking_vertex", vvl::Extension::_VK_EXT_provoking_vertex},
{"VK_EXT_full_screen_exclusive", vvl::Extension::_VK_EXT_full_screen_exclusive},
{"VK_EXT_headless_surface", vvl::Extension::_VK_EXT_headless_surface},
{"VK_EXT_line_rasterization", vvl::Extension::_VK_EXT_line_rasterization},
{"VK_EXT_shader_atomic_float", vvl::Extension::_VK_EXT_shader_atomic_float},
{"VK_EXT_host_query_reset", vvl::Extension::_VK_EXT_host_query_reset},
{"VK_EXT_index_type_uint8", vvl::Extension::_VK_EXT_index_type_uint8},
{"VK_EXT_extended_dynamic_state", vvl::Extension::_VK_EXT_extended_dynamic_state},
{"VK_EXT_host_image_copy", vvl::Extension::_VK_EXT_host_image_copy},
{"VK_EXT_map_memory_placed", vvl::Extension::_VK_EXT_map_memory_placed},
{"VK_EXT_shader_atomic_float2", vvl::Extension::_VK_EXT_shader_atomic_float2},
{"VK_EXT_surface_maintenance1", vvl::Extension::_VK_EXT_surface_maintenance1},
{"VK_EXT_swapchain_maintenance1", vvl::Extension::_VK_EXT_swapchain_maintenance1},
{"VK_EXT_shader_demote_to_helper_invocation", vvl::Extension::_VK_EXT_shader_demote_to_helper_invocation},
{"VK_NV_device_generated_commands", vvl::Extension::_VK_NV_device_generated_commands},
{"VK_NV_inherited_viewport_scissor", vvl::Extension::_VK_NV_inherited_viewport_scissor},
{"VK_EXT_texel_buffer_alignment", vvl::Extension::_VK_EXT_texel_buffer_alignment},
{"VK_QCOM_render_pass_transform", vvl::Extension::_VK_QCOM_render_pass_transform},
{"VK_EXT_depth_bias_control", vvl::Extension::_VK_EXT_depth_bias_control},
{"VK_EXT_device_memory_report", vvl::Extension::_VK_EXT_device_memory_report},
{"VK_EXT_acquire_drm_display", vvl::Extension::_VK_EXT_acquire_drm_display},
{"VK_EXT_robustness2", vvl::Extension::_VK_EXT_robustness2},
{"VK_EXT_custom_border_color", vvl::Extension::_VK_EXT_custom_border_color},
{"VK_GOOGLE_user_type", vvl::Extension::_VK_GOOGLE_user_type},
{"VK_NV_present_barrier", vvl::Extension::_VK_NV_present_barrier},
{"VK_EXT_private_data", vvl::Extension::_VK_EXT_private_data},
{"VK_EXT_pipeline_creation_cache_control", vvl::Extension::_VK_EXT_pipeline_creation_cache_control},
{"VK_NV_device_diagnostics_config", vvl::Extension::_VK_NV_device_diagnostics_config},
{"VK_QCOM_render_pass_store_ops", vvl::Extension::_VK_QCOM_render_pass_store_ops},
{"VK_NV_cuda_kernel_launch", vvl::Extension::_VK_NV_cuda_kernel_launch},
{"VK_QCOM_tile_shading", vvl::Extension::_VK_QCOM_tile_shading},
{"VK_NV_low_latency", vvl::Extension::_VK_NV_low_latency},
{"VK_EXT_metal_objects", vvl::Extension::_VK_EXT_metal_objects},
{"VK_EXT_descriptor_buffer", vvl::Extension::_VK_EXT_descriptor_buffer},
{"VK_EXT_graphics_pipeline_library", vvl::Extension::_VK_EXT_graphics_pipeline_library},
{"VK_AMD_shader_early_and_late_fragment_tests", vvl::Extension::_VK_AMD_shader_early_and_late_fragment_tests},
{"VK_NV_fragment_shading_rate_enums", vvl::Extension::_VK_NV_fragment_shading_rate_enums},
{"VK_NV_ray_tracing_motion_blur", vvl::Extension::_VK_NV_ray_tracing_motion_blur},
{"VK_EXT_ycbcr_2plane_444_formats", vvl::Extension::_VK_EXT_ycbcr_2plane_444_formats},
{"VK_EXT_fragment_density_map2", vvl::Extension::_VK_EXT_fragment_density_map2},
{"VK_QCOM_rotated_copy_commands", vvl::Extension::_VK_QCOM_rotated_copy_commands},
{"VK_EXT_image_robustness", vvl::Extension::_VK_EXT_image_robustness},
{"VK_EXT_image_compression_control", vvl::Extension::_VK_EXT_image_compression_control},
{"VK_EXT_attachment_feedback_loop_layout", vvl::Extension::_VK_EXT_attachment_feedback_loop_layout},
{"VK_EXT_4444_formats", vvl::Extension::_VK_EXT_4444_formats},
{"VK_EXT_device_fault", vvl::Extension::_VK_EXT_device_fault},
{"VK_ARM_rasterization_order_attachment_access", vvl::Extension::_VK_ARM_rasterization_order_attachment_access},
{"VK_EXT_rgba10x6_formats", vvl::Extension::_VK_EXT_rgba10x6_formats},
{"VK_NV_acquire_winrt_display", vvl::Extension::_VK_NV_acquire_winrt_display},
{"VK_EXT_directfb_surface", vvl::Extension::_VK_EXT_directfb_surface},
{"VK_VALVE_mutable_descriptor_type", vvl::Extension::_VK_VALVE_mutable_descriptor_type},
{"VK_EXT_vertex_input_dynamic_state", vvl::Extension::_VK_EXT_vertex_input_dynamic_state},
{"VK_EXT_physical_device_drm", vvl::Extension::_VK_EXT_physical_device_drm},
{"VK_EXT_device_address_binding_report", vvl::Extension::_VK_EXT_device_address_binding_report},
{"VK_EXT_depth_clip_control", vvl::Extension::_VK_EXT_depth_clip_control},
{"VK_EXT_primitive_topology_list_restart", vvl::Extension::_VK_EXT_primitive_topology_list_restart},
{"VK_EXT_present_mode_fifo_latest_ready", vvl::Extension::_VK_EXT_present_mode_fifo_latest_ready},
{"VK_FUCHSIA_external_memory", vvl::Extension::_VK_FUCHSIA_external_memory},
{"VK_FUCHSIA_external_semaphore", vvl::Extension::_VK_FUCHSIA_external_semaphore},
{"VK_FUCHSIA_buffer_collection", vvl::Extension::_VK_FUCHSIA_buffer_collection},
{"VK_HUAWEI_subpass_shading", vvl::Extension::_VK_HUAWEI_subpass_shading},
{"VK_HUAWEI_invocation_mask", vvl::Extension::_VK_HUAWEI_invocation_mask},
{"VK_NV_external_memory_rdma", vvl::Extension::_VK_NV_external_memory_rdma},
{"VK_EXT_pipeline_properties", vvl::Extension::_VK_EXT_pipeline_properties},
{"VK_EXT_frame_boundary", vvl::Extension::_VK_EXT_frame_boundary},
{"VK_EXT_multisampled_render_to_single_sampled", vvl::Extension::_VK_EXT_multisampled_render_to_single_sampled},
{"VK_EXT_extended_dynamic_state2", vvl::Extension::_VK_EXT_extended_dynamic_state2},
{"VK_QNX_screen_surface", vvl::Extension::_VK_QNX_screen_surface},
{"VK_EXT_color_write_enable", vvl::Extension::_VK_EXT_color_write_enable},
{"VK_EXT_primitives_generated_query", vvl::Extension::_VK_EXT_primitives_generated_query},
{"VK_EXT_global_priority_query", vvl::Extension::_VK_EXT_global_priority_query},
{"VK_EXT_image_view_min_lod", vvl::Extension::_VK_EXT_image_view_min_lod},
{"VK_EXT_multi_draw", vvl::Extension::_VK_EXT_multi_draw},
{"VK_EXT_image_2d_view_of_3d", vvl::Extension::_VK_EXT_image_2d_view_of_3d},
{"VK_EXT_shader_tile_image", vvl::Extension::_VK_EXT_shader_tile_image},
{"VK_EXT_opacity_micromap", vvl::Extension::_VK_EXT_opacity_micromap},
{"VK_NV_displacement_micromap", vvl::Extension::_VK_NV_displacement_micromap},
{"VK_EXT_load_store_op_none", vvl::Extension::_VK_EXT_load_store_op_none},
{"VK_HUAWEI_cluster_culling_shader", vvl::Extension::_VK_HUAWEI_cluster_culling_shader},
{"VK_EXT_border_color_swizzle", vvl::Extension::_VK_EXT_border_color_swizzle},
{"VK_EXT_pageable_device_local_memory", vvl::Extension::_VK_EXT_pageable_device_local_memory},
{"VK_ARM_shader_core_properties", vvl::Extension::_VK_ARM_shader_core_properties},
{"VK_ARM_scheduling_controls", vvl::Extension::_VK_ARM_scheduling_controls},
{"VK_EXT_image_sliced_view_of_3d", vvl::Extension::_VK_EXT_image_sliced_view_of_3d},
{"VK_VALVE_descriptor_set_host_mapping", vvl::Extension::_VK_VALVE_descriptor_set_host_mapping},
{"VK_EXT_depth_clamp_zero_one", vvl::Extension::_VK_EXT_depth_clamp_zero_one},
{"VK_EXT_non_seamless_cube_map", vvl::Extension::_VK_EXT_non_seamless_cube_map},
{"VK_ARM_render_pass_striped", vvl::Extension::_VK_ARM_render_pass_striped},
{"VK_QCOM_fragment_density_map_offset", vvl::Extension::_VK_QCOM_fragment_density_map_offset},
{"VK_NV_copy_memory_indirect", vvl::Extension::_VK_NV_copy_memory_indirect},
{"VK_NV_memory_decompression", vvl::Extension::_VK_NV_memory_decompression},
{"VK_NV_device_generated_commands_compute", vvl::Extension::_VK_NV_device_generated_commands_compute},
{"VK_NV_ray_tracing_linear_swept_spheres", vvl::Extension::_VK_NV_ray_tracing_linear_swept_spheres},
{"VK_NV_linear_color_attachment", vvl::Extension::_VK_NV_linear_color_attachment},
{"VK_GOOGLE_surfaceless_query", vvl::Extension::_VK_GOOGLE_surfaceless_query},
{"VK_EXT_image_compression_control_swapchain", vvl::Extension::_VK_EXT_image_compression_control_swapchain},
{"VK_QCOM_image_processing", vvl::Extension::_VK_QCOM_image_processing},
{"VK_EXT_nested_command_buffer", vvl::Extension::_VK_EXT_nested_command_buffer},
{"VK_EXT_external_memory_acquire_unmodified", vvl::Extension::_VK_EXT_external_memory_acquire_unmodified},
{"VK_EXT_extended_dynamic_state3", vvl::Extension::_VK_EXT_extended_dynamic_state3},
{"VK_EXT_subpass_merge_feedback", vvl::Extension::_VK_EXT_subpass_merge_feedback},
{"VK_LUNARG_direct_driver_loading", vvl::Extension::_VK_LUNARG_direct_driver_loading},
{"VK_ARM_tensors", vvl::Extension::_VK_ARM_tensors},
{"VK_EXT_shader_module_identifier", vvl::Extension::_VK_EXT_shader_module_identifier},
{"VK_EXT_rasterization_order_attachment_access", vvl::Extension::_VK_EXT_rasterization_order_attachment_access},
{"VK_NV_optical_flow", vvl::Extension::_VK_NV_optical_flow},
{"VK_EXT_legacy_dithering", vvl::Extension::_VK_EXT_legacy_dithering},
{"VK_EXT_pipeline_protected_access", vvl::Extension::_VK_EXT_pipeline_protected_access},
{"VK_ANDROID_external_format_resolve", vvl::Extension::_VK_ANDROID_external_format_resolve},
{"VK_AMD_anti_lag", vvl::Extension::_VK_AMD_anti_lag},
{"VK_EXT_shader_object", vvl::Extension::_VK_EXT_shader_object},
{"VK_QCOM_tile_properties", vvl::Extension::_VK_QCOM_tile_properties},
{"VK_SEC_amigo_profiling", vvl::Extension::_VK_SEC_amigo_profiling},
{"VK_QCOM_multiview_per_view_viewports", vvl::Extension::_VK_QCOM_multiview_per_view_viewports},
{"VK_NV_ray_tracing_invocation_reorder", vvl::Extension::_VK_NV_ray_tracing_invocation_reorder},
{"VK_NV_cooperative_vector", vvl::Extension::_VK_NV_cooperative_vector},
{"VK_NV_extended_sparse_address_space", vvl::Extension::_VK_NV_extended_sparse_address_space},
{"VK_EXT_mutable_descriptor_type", vvl::Extension::_VK_EXT_mutable_descriptor_type},
{"VK_EXT_legacy_vertex_attributes", vvl::Extension::_VK_EXT_legacy_vertex_attributes},
{"VK_EXT_layer_settings", vvl::Extension::_VK_EXT_layer_settings},
{"VK_ARM_shader_core_builtins", vvl::Extension::_VK_ARM_shader_core_builtins},
{"VK_EXT_pipeline_library_group_handles", vvl::Extension::_VK_EXT_pipeline_library_group_handles},
{"VK_EXT_dynamic_rendering_unused_attachments", vvl::Extension::_VK_EXT_dynamic_rendering_unused_attachments},
{"VK_NV_low_latency2", vvl::Extension::_VK_NV_low_latency2},
{"VK_ARM_data_graph", vvl::Extension::_VK_ARM_data_graph},
{"VK_QCOM_multiview_per_view_render_areas", vvl::Extension::_VK_QCOM_multiview_per_view_render_areas},
{"VK_NV_per_stage_descriptor_set", vvl::Extension::_VK_NV_per_stage_descriptor_set},
{"VK_QCOM_image_processing2", vvl::Extension::_VK_QCOM_image_processing2},
{"VK_QCOM_filter_cubic_weights", vvl::Extension::_VK_QCOM_filter_cubic_weights},
{"VK_QCOM_ycbcr_degamma", vvl::Extension::_VK_QCOM_ycbcr_degamma},
{"VK_QCOM_filter_cubic_clamp", vvl::Extension::_VK_QCOM_filter_cubic_clamp},
{"VK_EXT_attachment_feedback_loop_dynamic_state", vvl::Extension::_VK_EXT_attachment_feedback_loop_dynamic_state},
{"VK_QNX_external_memory_screen_buffer", vvl::Extension::_VK_QNX_external_memory_screen_buffer},
{"VK_MSFT_layered_driver", vvl::Extension::_VK_MSFT_layered_driver},
{"VK_NV_descriptor_pool_overallocation", vvl::Extension::_VK_NV_descriptor_pool_overallocation},
{"VK_QCOM_tile_memory_heap", vvl::Extension::_VK_QCOM_tile_memory_heap},
{"VK_NV_display_stereo", vvl::Extension::_VK_NV_display_stereo},
{"VK_NV_raw_access_chains", vvl::Extension::_VK_NV_raw_access_chains},
{"VK_NV_external_compute_queue", vvl::Extension::_VK_NV_external_compute_queue},
{"VK_NV_command_buffer_inheritance", vvl::Extension::_VK_NV_command_buffer_inheritance},
{"VK_NV_shader_atomic_float16_vector", vvl::Extension::_VK_NV_shader_atomic_float16_vector},
{"VK_EXT_shader_replicated_composites", vvl::Extension::_VK_EXT_shader_replicated_composites},
{"VK_EXT_shader_float8", vvl::Extension::_VK_EXT_shader_float8},
{"VK_NV_ray_tracing_validation", vvl::Extension::_VK_NV_ray_tracing_validation},
{"VK_NV_cluster_acceleration_structure", vvl::Extension::_VK_NV_cluster_acceleration_structure},
{"VK_NV_partitioned_acceleration_structure", vvl::Extension::_VK_NV_partitioned_acceleration_structure},
{"VK_EXT_device_generated_commands", vvl::Extension::_VK_EXT_device_generated_commands},
{"VK_MESA_image_alignment_control", vvl::Extension::_VK_MESA_image_alignment_control},
{"VK_EXT_depth_clamp_control", vvl::Extension::_VK_EXT_depth_clamp_control},
{"VK_OHOS_surface", vvl::Extension::_VK_OHOS_surface},
{"VK_HUAWEI_hdr_vivid", vvl::Extension::_VK_HUAWEI_hdr_vivid},
{"VK_NV_cooperative_matrix2", vvl::Extension::_VK_NV_cooperative_matrix2},
{"VK_ARM_pipeline_opacity_micromap", vvl::Extension::_VK_ARM_pipeline_opacity_micromap},
{"VK_EXT_external_memory_metal", vvl::Extension::_VK_EXT_external_memory_metal},
{"VK_EXT_vertex_attribute_robustness", vvl::Extension::_VK_EXT_vertex_attribute_robustness},
{"VK_ARM_format_pack", vvl::Extension::_VK_ARM_format_pack},
{"VK_VALVE_fragment_density_map_layered", vvl::Extension::_VK_VALVE_fragment_density_map_layered},
{"VK_NV_present_metering", vvl::Extension::_VK_NV_present_metering},
{"VK_EXT_fragment_density_map_offset", vvl::Extension::_VK_EXT_fragment_density_map_offset},
{"VK_EXT_zero_initialize_device_memory", vvl::Extension::_VK_EXT_zero_initialize_device_memory},
{"VK_SEC_pipeline_cache_incremental_mode", vvl::Extension::_VK_SEC_pipeline_cache_incremental_mode},
{"VK_KHR_acceleration_structure", vvl::Extension::_VK_KHR_acceleration_structure},
{"VK_KHR_ray_tracing_pipeline", vvl::Extension::_VK_KHR_ray_tracing_pipeline},
{"VK_KHR_ray_query", vvl::Extension::_VK_KHR_ray_query},
{"VK_EXT_mesh_shader", vvl::Extension::_VK_EXT_mesh_shader},
};
const auto it = extension_map.find(extension);
return (it == extension_map.end()) ? vvl::Extension::Empty : it->second;
}
const PromotedExtensionInfoMap& GetInstancePromotionInfoMap() {
static const PromotedExtensionInfoMap promoted_map = {
{VK_API_VERSION_1_1,
{"VK_VERSION_1_1",
{
vvl::Extension::_VK_KHR_get_physical_device_properties2,
vvl::Extension::_VK_KHR_device_group_creation,
vvl::Extension::_VK_KHR_external_memory_capabilities,
vvl::Extension::_VK_KHR_external_semaphore_capabilities,
vvl::Extension::_VK_KHR_external_fence_capabilities,
}}},
};
return promoted_map;
}
const PromotedExtensionInfoMap& GetDevicePromotionInfoMap() {
static const PromotedExtensionInfoMap promoted_map = {
{VK_API_VERSION_1_1,
{"VK_VERSION_1_1",
{
vvl::Extension::_VK_KHR_multiview,
vvl::Extension::_VK_KHR_device_group,
vvl::Extension::_VK_KHR_shader_draw_parameters,
vvl::Extension::_VK_KHR_maintenance1,
vvl::Extension::_VK_KHR_external_memory,
vvl::Extension::_VK_KHR_external_semaphore,
vvl::Extension::_VK_KHR_16bit_storage,
vvl::Extension::_VK_KHR_descriptor_update_template,
vvl::Extension::_VK_KHR_external_fence,
vvl::Extension::_VK_KHR_maintenance2,
vvl::Extension::_VK_KHR_variable_pointers,
vvl::Extension::_VK_KHR_dedicated_allocation,
vvl::Extension::_VK_KHR_storage_buffer_storage_class,
vvl::Extension::_VK_KHR_relaxed_block_layout,
vvl::Extension::_VK_KHR_get_memory_requirements2,
vvl::Extension::_VK_KHR_sampler_ycbcr_conversion,
vvl::Extension::_VK_KHR_bind_memory2,
vvl::Extension::_VK_KHR_maintenance3,
}}},
{VK_API_VERSION_1_2,
{"VK_VERSION_1_2",
{
vvl::Extension::_VK_KHR_sampler_mirror_clamp_to_edge,
vvl::Extension::_VK_KHR_shader_float16_int8,
vvl::Extension::_VK_KHR_imageless_framebuffer,
vvl::Extension::_VK_KHR_create_renderpass2,
vvl::Extension::_VK_KHR_image_format_list,
vvl::Extension::_VK_KHR_draw_indirect_count,
vvl::Extension::_VK_KHR_shader_subgroup_extended_types,
vvl::Extension::_VK_KHR_8bit_storage,
vvl::Extension::_VK_KHR_shader_atomic_int64,
vvl::Extension::_VK_KHR_driver_properties,
vvl::Extension::_VK_KHR_shader_float_controls,
vvl::Extension::_VK_KHR_depth_stencil_resolve,
vvl::Extension::_VK_KHR_timeline_semaphore,
vvl::Extension::_VK_KHR_vulkan_memory_model,
vvl::Extension::_VK_KHR_spirv_1_4,
vvl::Extension::_VK_KHR_separate_depth_stencil_layouts,
vvl::Extension::_VK_KHR_uniform_buffer_standard_layout,
vvl::Extension::_VK_KHR_buffer_device_address,
vvl::Extension::_VK_EXT_sampler_filter_minmax,
vvl::Extension::_VK_EXT_descriptor_indexing,
vvl::Extension::_VK_EXT_shader_viewport_index_layer,
vvl::Extension::_VK_EXT_scalar_block_layout,
vvl::Extension::_VK_EXT_separate_stencil_usage,
vvl::Extension::_VK_EXT_host_query_reset,
}}},
{VK_API_VERSION_1_3,
{"VK_VERSION_1_3",
{
vvl::Extension::_VK_KHR_dynamic_rendering,
vvl::Extension::_VK_KHR_shader_terminate_invocation,
vvl::Extension::_VK_KHR_shader_integer_dot_product,
vvl::Extension::_VK_KHR_shader_non_semantic_info,
vvl::Extension::_VK_KHR_synchronization2,
vvl::Extension::_VK_KHR_zero_initialize_workgroup_memory,
vvl::Extension::_VK_KHR_copy_commands2,
vvl::Extension::_VK_KHR_format_feature_flags2,
vvl::Extension::_VK_KHR_maintenance4,
vvl::Extension::_VK_EXT_texture_compression_astc_hdr,
vvl::Extension::_VK_EXT_inline_uniform_block,
vvl::Extension::_VK_EXT_pipeline_creation_feedback,
vvl::Extension::_VK_EXT_subgroup_size_control,
vvl::Extension::_VK_EXT_tooling_info,
vvl::Extension::_VK_EXT_extended_dynamic_state,
vvl::Extension::_VK_EXT_shader_demote_to_helper_invocation,
vvl::Extension::_VK_EXT_texel_buffer_alignment,
vvl::Extension::_VK_EXT_private_data,
vvl::Extension::_VK_EXT_pipeline_creation_cache_control,
vvl::Extension::_VK_EXT_ycbcr_2plane_444_formats,
vvl::Extension::_VK_EXT_image_robustness,
vvl::Extension::_VK_EXT_4444_formats,
vvl::Extension::_VK_EXT_extended_dynamic_state2,
}}},
{VK_API_VERSION_1_4,
{"VK_VERSION_1_4",
{
vvl::Extension::_VK_KHR_push_descriptor,
vvl::Extension::_VK_KHR_global_priority,
vvl::Extension::_VK_KHR_dynamic_rendering_local_read,
vvl::Extension::_VK_KHR_map_memory2,
vvl::Extension::_VK_KHR_shader_subgroup_rotate,
vvl::Extension::_VK_KHR_maintenance5,
vvl::Extension::_VK_KHR_vertex_attribute_divisor,
vvl::Extension::_VK_KHR_load_store_op_none,
vvl::Extension::_VK_KHR_shader_float_controls2,
vvl::Extension::_VK_KHR_index_type_uint8,
vvl::Extension::_VK_KHR_line_rasterization,
vvl::Extension::_VK_KHR_shader_expect_assume,
vvl::Extension::_VK_KHR_maintenance6,
vvl::Extension::_VK_EXT_pipeline_robustness,
vvl::Extension::_VK_EXT_host_image_copy,
vvl::Extension::_VK_EXT_pipeline_protected_access,
}}},
};
return promoted_map;
}
const InstanceExtensions::Info& GetInstanceVersionMap(const char* version) {
static const InstanceExtensions::Info empty_info{nullptr, InstanceExtensions::RequirementVec()};
static const vvl::unordered_map<std::string_view, InstanceExtensions::Info> version_map = {
{"VK_VERSION_1_1", InstanceExtensions::Info(&InstanceExtensions::vk_feature_version_1_1, {})},
{"VK_VERSION_1_2", InstanceExtensions::Info(&InstanceExtensions::vk_feature_version_1_2, {})},
{"VK_VERSION_1_3", InstanceExtensions::Info(&InstanceExtensions::vk_feature_version_1_3, {})},
{"VK_VERSION_1_4", InstanceExtensions::Info(&InstanceExtensions::vk_feature_version_1_4, {})},
};
const auto info = version_map.find(version);
return (info != version_map.cend()) ? info->second : empty_info;
}
const DeviceExtensions::Info& GetDeviceVersionMap(const char* version) {
static const DeviceExtensions::Info empty_info{nullptr, DeviceExtensions::RequirementVec()};
static const vvl::unordered_map<std::string_view, DeviceExtensions::Info> version_map = {
{"VK_VERSION_1_1", DeviceExtensions::Info(&DeviceExtensions::vk_feature_version_1_1, {})},
{"VK_VERSION_1_2", DeviceExtensions::Info(&DeviceExtensions::vk_feature_version_1_2, {})},
{"VK_VERSION_1_3", DeviceExtensions::Info(&DeviceExtensions::vk_feature_version_1_3, {})},
{"VK_VERSION_1_4", DeviceExtensions::Info(&DeviceExtensions::vk_feature_version_1_4, {})},
};
const auto info = version_map.find(version);
return (info != version_map.cend()) ? info->second : empty_info;
}
InstanceExtensions::InstanceExtensions(APIVersion requested_api_version, const VkInstanceCreateInfo* pCreateInfo) {
// Initialize struct data, robust to invalid pCreateInfo
api_version = NormalizeApiVersion(requested_api_version);
if (!api_version.Valid()) return;
const auto promotion_info_map = GetInstancePromotionInfoMap();
for (const auto& version_it : promotion_info_map) {
auto info = GetInstanceVersionMap(version_it.second.first);
if (api_version >= version_it.first) {
if (info.state) this->*(info.state) = kEnabledByCreateinfo;
for (const auto& extension : version_it.second.second) {
info = GetInfo(extension);
assert(info.state);
if (info.state) this->*(info.state) = kEnabledByApiLevel;
}
}
}
// CreateInfo takes precedence over promoted
if (pCreateInfo && pCreateInfo->ppEnabledExtensionNames) {
for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
if (!pCreateInfo->ppEnabledExtensionNames[i]) continue;
vvl::Extension extension = GetExtension(pCreateInfo->ppEnabledExtensionNames[i]);
auto info = GetInfo(extension);
if (info.state) this->*(info.state) = kEnabledByCreateinfo;
}
}
}
DeviceExtensions::DeviceExtensions(const InstanceExtensions& instance_ext, APIVersion requested_api_version,
const VkDeviceCreateInfo* pCreateInfo)
: InstanceExtensions(instance_ext) {
auto api_version = NormalizeApiVersion(requested_api_version);
if (!api_version.Valid()) return;
const auto promotion_info_map = GetDevicePromotionInfoMap();
for (const auto& version_it : promotion_info_map) {
auto info = GetDeviceVersionMap(version_it.second.first);
if (api_version >= version_it.first) {
if (info.state) this->*(info.state) = kEnabledByCreateinfo;
for (const auto& extension : version_it.second.second) {
info = GetInfo(extension);
assert(info.state);
if (info.state) this->*(info.state) = kEnabledByApiLevel;
}
}
}
// CreateInfo takes precedence over promoted
if (pCreateInfo && pCreateInfo->ppEnabledExtensionNames) {
for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
if (!pCreateInfo->ppEnabledExtensionNames[i]) continue;
vvl::Extension extension = GetExtension(pCreateInfo->ppEnabledExtensionNames[i]);
auto info = GetInfo(extension);
if (info.state) this->*(info.state) = kEnabledByCreateinfo;
}
}
// Workaround for functions being introduced by multiple extensions, until the layer is fixed to handle this correctly
// See https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/5579 and
// https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/5600
{
constexpr std::array shader_object_interactions = {
vvl::Extension::_VK_EXT_extended_dynamic_state,
vvl::Extension::_VK_EXT_extended_dynamic_state2,
vvl::Extension::_VK_EXT_extended_dynamic_state3,
vvl::Extension::_VK_EXT_vertex_input_dynamic_state,
};
auto info = GetInfo(vvl::Extension::_VK_EXT_shader_object);
if (info.state) {
if (this->*(info.state) != kNotEnabled) {
for (auto interaction_ext : shader_object_interactions) {
info = GetInfo(interaction_ext);
assert(info.state);
if (this->*(info.state) != kEnabledByCreateinfo) {
this->*(info.state) = kEnabledByInteraction;
}
}
}
}
}
}
DeviceExtensions::DeviceExtensions(const InstanceExtensions& instance_ext, APIVersion requested_api_version,
const std::vector<VkExtensionProperties>& props)
: InstanceExtensions(instance_ext) {
auto api_version = NormalizeApiVersion(requested_api_version);
if (!api_version.Valid()) return;
const auto promotion_info_map = GetDevicePromotionInfoMap();
for (const auto& version_it : promotion_info_map) {
auto info = GetDeviceVersionMap(version_it.second.first);
if (api_version >= version_it.first) {
if (info.state) this->*(info.state) = kEnabledByCreateinfo;
for (const auto& extension : version_it.second.second) {
info = GetInfo(extension);
assert(info.state);
if (info.state) this->*(info.state) = kEnabledByApiLevel;
}
}
}
for (const auto& prop : props) {
vvl::Extension extension = GetExtension(prop.extensionName);
auto info = GetInfo(extension);
if (info.state) this->*(info.state) = kEnabledByCreateinfo;
}
// Workaround for functions being introduced by multiple extensions, until the layer is fixed to handle this correctly
// See https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/5579 and
// https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/5600
{
constexpr std::array shader_object_interactions = {
vvl::Extension::_VK_EXT_extended_dynamic_state,
vvl::Extension::_VK_EXT_extended_dynamic_state2,
vvl::Extension::_VK_EXT_extended_dynamic_state3,
vvl::Extension::_VK_EXT_vertex_input_dynamic_state,
};
auto info = GetInfo(vvl::Extension::_VK_EXT_shader_object);
if (info.state) {
if (this->*(info.state) != kNotEnabled) {
for (auto interaction_ext : shader_object_interactions) {
info = GetInfo(interaction_ext);
assert(info.state);
if (this->*(info.state) != kEnabledByCreateinfo) {
this->*(info.state) = kEnabledByInteraction;
}
}
}
}
}
}
using InstanceExtensionsInfoMap = vvl::unordered_map<vvl::Extension, InstanceExtensions::Info>;
static const InstanceExtensionsInfoMap& GetInstanceInfoMap() {
using Info = InstanceExtensions::Info;
static const InstanceExtensionsInfoMap info_map = {
{vvl::Extension::_VK_KHR_surface, Info(&InstanceExtensions::vk_khr_surface, {})},
{vvl::Extension::_VK_KHR_display,
Info(&InstanceExtensions::vk_khr_display, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_XLIB_KHR
{vvl::Extension::_VK_KHR_xlib_surface,
Info(&InstanceExtensions::vk_khr_xlib_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_XLIB_KHR
#ifdef VK_USE_PLATFORM_XCB_KHR
{vvl::Extension::_VK_KHR_xcb_surface,
Info(&InstanceExtensions::vk_khr_xcb_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_XCB_KHR
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
{vvl::Extension::_VK_KHR_wayland_surface, Info(&InstanceExtensions::vk_khr_wayland_surface,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WAYLAND_KHR
#ifdef VK_USE_PLATFORM_ANDROID_KHR
{vvl::Extension::_VK_KHR_android_surface, Info(&InstanceExtensions::vk_khr_android_surface,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_ANDROID_KHR
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_win32_surface,
Info(&InstanceExtensions::vk_khr_win32_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_get_physical_device_properties2,
Info(&InstanceExtensions::vk_khr_get_physical_device_properties2, {})},
{vvl::Extension::_VK_KHR_device_group_creation, Info(&InstanceExtensions::vk_khr_device_group_creation, {})},
{vvl::Extension::_VK_KHR_external_memory_capabilities, Info(&InstanceExtensions::vk_khr_external_memory_capabilities,
{{{&InstanceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_external_semaphore_capabilities,
Info(&InstanceExtensions::vk_khr_external_semaphore_capabilities,
{{{&InstanceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_external_fence_capabilities, Info(&InstanceExtensions::vk_khr_external_fence_capabilities,
{{{&InstanceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_get_surface_capabilities2,
Info(&InstanceExtensions::vk_khr_get_surface_capabilities2,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_get_display_properties2,
Info(&InstanceExtensions::vk_khr_get_display_properties2,
{{{&InstanceExtensions::vk_khr_display, VK_KHR_DISPLAY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_surface_protected_capabilities,
Info(&InstanceExtensions::vk_khr_surface_protected_capabilities,
{{{&InstanceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&InstanceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_portability_enumeration, Info(&InstanceExtensions::vk_khr_portability_enumeration, {})},
{vvl::Extension::_VK_KHR_surface_maintenance1,
Info(&InstanceExtensions::vk_khr_surface_maintenance1,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME},
{&InstanceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_debug_report, Info(&InstanceExtensions::vk_ext_debug_report, {})},
#ifdef VK_USE_PLATFORM_GGP
{vvl::Extension::_VK_GGP_stream_descriptor_surface,
Info(&InstanceExtensions::vk_ggp_stream_descriptor_surface,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_GGP
{vvl::Extension::_VK_NV_external_memory_capabilities, Info(&InstanceExtensions::vk_nv_external_memory_capabilities, {})},
{vvl::Extension::_VK_EXT_validation_flags, Info(&InstanceExtensions::vk_ext_validation_flags, {})},
#ifdef VK_USE_PLATFORM_VI_NN
{vvl::Extension::_VK_NN_vi_surface,
Info(&InstanceExtensions::vk_nn_vi_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_VI_NN
{vvl::Extension::_VK_EXT_direct_mode_display,
Info(&InstanceExtensions::vk_ext_direct_mode_display,
{{{&InstanceExtensions::vk_khr_display, VK_KHR_DISPLAY_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_XLIB_XRANDR_EXT
{vvl::Extension::_VK_EXT_acquire_xlib_display,
Info(&InstanceExtensions::vk_ext_acquire_xlib_display,
{{{&InstanceExtensions::vk_ext_direct_mode_display, VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_XLIB_XRANDR_EXT
{vvl::Extension::_VK_EXT_display_surface_counter,
Info(&InstanceExtensions::vk_ext_display_surface_counter,
{{{&InstanceExtensions::vk_khr_display, VK_KHR_DISPLAY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_swapchain_colorspace,
Info(&InstanceExtensions::vk_ext_swapchain_colorspace,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_IOS_MVK
{vvl::Extension::_VK_MVK_ios_surface,
Info(&InstanceExtensions::vk_mvk_ios_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_IOS_MVK
#ifdef VK_USE_PLATFORM_MACOS_MVK
{vvl::Extension::_VK_MVK_macos_surface,
Info(&InstanceExtensions::vk_mvk_macos_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_MACOS_MVK
{vvl::Extension::_VK_EXT_debug_utils, Info(&InstanceExtensions::vk_ext_debug_utils, {})},
#ifdef VK_USE_PLATFORM_FUCHSIA
{vvl::Extension::_VK_FUCHSIA_imagepipe_surface,
Info(&InstanceExtensions::vk_fuchsia_imagepipe_surface,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_FUCHSIA
#ifdef VK_USE_PLATFORM_METAL_EXT
{vvl::Extension::_VK_EXT_metal_surface,
Info(&InstanceExtensions::vk_ext_metal_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_METAL_EXT
{vvl::Extension::_VK_EXT_validation_features, Info(&InstanceExtensions::vk_ext_validation_features, {})},
{vvl::Extension::_VK_EXT_headless_surface, Info(&InstanceExtensions::vk_ext_headless_surface,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_surface_maintenance1,
Info(&InstanceExtensions::vk_ext_surface_maintenance1,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME},
{&InstanceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_acquire_drm_display,
Info(&InstanceExtensions::vk_ext_acquire_drm_display,
{{{&InstanceExtensions::vk_ext_direct_mode_display, VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_DIRECTFB_EXT
{vvl::Extension::_VK_EXT_directfb_surface, Info(&InstanceExtensions::vk_ext_directfb_surface,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_DIRECTFB_EXT
#ifdef VK_USE_PLATFORM_SCREEN_QNX
{vvl::Extension::_VK_QNX_screen_surface, Info(&InstanceExtensions::vk_qnx_screen_surface,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_SCREEN_QNX
{vvl::Extension::_VK_GOOGLE_surfaceless_query,
Info(&InstanceExtensions::vk_google_surfaceless_query,
{{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_LUNARG_direct_driver_loading, Info(&InstanceExtensions::vk_lunarg_direct_driver_loading, {})},
{vvl::Extension::_VK_EXT_layer_settings, Info(&InstanceExtensions::vk_ext_layer_settings, {})},
{vvl::Extension::_VK_NV_display_stereo,
Info(&InstanceExtensions::vk_nv_display_stereo,
{{{&InstanceExtensions::vk_khr_display, VK_KHR_DISPLAY_EXTENSION_NAME},
{&InstanceExtensions::vk_khr_get_display_properties2, VK_KHR_GET_DISPLAY_PROPERTIES_2_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_OHOS
{vvl::Extension::_VK_OHOS_surface,
Info(&InstanceExtensions::vk_ohos_surface, {{{&InstanceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_OHOS
};
return info_map;
}
using DeviceExtensionsInfoMap = vvl::unordered_map<vvl::Extension, DeviceExtensions::Info>;
static const DeviceExtensionsInfoMap& GetDeviceInfoMap() {
using Info = DeviceExtensions::Info;
static const DeviceExtensionsInfoMap info_map = {
{vvl::Extension::_VK_KHR_swapchain,
Info(&DeviceExtensions::vk_khr_swapchain, {{{&DeviceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_display_swapchain,
Info(&DeviceExtensions::vk_khr_display_swapchain, {{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_display, VK_KHR_DISPLAY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_sampler_mirror_clamp_to_edge, Info(&DeviceExtensions::vk_khr_sampler_mirror_clamp_to_edge, {})},
{vvl::Extension::_VK_KHR_video_queue,
Info(&DeviceExtensions::vk_khr_video_queue,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_decode_queue,
Info(&DeviceExtensions::vk_khr_video_decode_queue,
{{{&DeviceExtensions::vk_khr_video_queue, VK_KHR_VIDEO_QUEUE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_encode_h264,
Info(&DeviceExtensions::vk_khr_video_encode_h264,
{{{&DeviceExtensions::vk_khr_video_encode_queue, VK_KHR_VIDEO_ENCODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_encode_h265,
Info(&DeviceExtensions::vk_khr_video_encode_h265,
{{{&DeviceExtensions::vk_khr_video_encode_queue, VK_KHR_VIDEO_ENCODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_decode_h264,
Info(&DeviceExtensions::vk_khr_video_decode_h264,
{{{&DeviceExtensions::vk_khr_video_decode_queue, VK_KHR_VIDEO_DECODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_dynamic_rendering,
Info(&DeviceExtensions::vk_khr_dynamic_rendering,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_depth_stencil_resolve, VK_KHR_DEPTH_STENCIL_RESOLVE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_multiview,
Info(&DeviceExtensions::vk_khr_multiview, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_device_group,
Info(&DeviceExtensions::vk_khr_device_group,
{{{&DeviceExtensions::vk_khr_device_group_creation, VK_KHR_DEVICE_GROUP_CREATION_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_draw_parameters, Info(&DeviceExtensions::vk_khr_shader_draw_parameters, {})},
{vvl::Extension::_VK_KHR_maintenance1, Info(&DeviceExtensions::vk_khr_maintenance1, {})},
{vvl::Extension::_VK_KHR_external_memory,
Info(&DeviceExtensions::vk_khr_external_memory,
{{{&DeviceExtensions::vk_khr_external_memory_capabilities, VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_external_memory_win32,
Info(&DeviceExtensions::vk_khr_external_memory_win32,
{{{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_external_memory_fd,
Info(&DeviceExtensions::vk_khr_external_memory_fd,
{{{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_win32_keyed_mutex,
Info(&DeviceExtensions::vk_khr_win32_keyed_mutex,
{{{&DeviceExtensions::vk_khr_external_memory_win32, VK_KHR_EXTERNAL_MEMORY_WIN32_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_external_semaphore,
Info(&DeviceExtensions::vk_khr_external_semaphore, {{{&DeviceExtensions::vk_khr_external_semaphore_capabilities,
VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_external_semaphore_win32,
Info(&DeviceExtensions::vk_khr_external_semaphore_win32,
{{{&DeviceExtensions::vk_khr_external_semaphore, VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_external_semaphore_fd,
Info(&DeviceExtensions::vk_khr_external_semaphore_fd,
{{{&DeviceExtensions::vk_khr_external_semaphore, VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_push_descriptor,
Info(&DeviceExtensions::vk_khr_push_descriptor, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_float16_int8,
Info(&DeviceExtensions::vk_khr_shader_float16_int8, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_16bit_storage,
Info(&DeviceExtensions::vk_khr_16bit_storage,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_storage_buffer_storage_class, VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_incremental_present,
Info(&DeviceExtensions::vk_khr_incremental_present,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_descriptor_update_template, Info(&DeviceExtensions::vk_khr_descriptor_update_template, {})},
{vvl::Extension::_VK_KHR_imageless_framebuffer,
Info(&DeviceExtensions::vk_khr_imageless_framebuffer,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_maintenance2, VK_KHR_MAINTENANCE_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_image_format_list, VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_create_renderpass2,
Info(&DeviceExtensions::vk_khr_create_renderpass2,
{{{&DeviceExtensions::vk_khr_multiview, VK_KHR_MULTIVIEW_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_maintenance2, VK_KHR_MAINTENANCE_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shared_presentable_image,
Info(&DeviceExtensions::vk_khr_shared_presentable_image,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_external_fence,
Info(&DeviceExtensions::vk_khr_external_fence,
{{{&DeviceExtensions::vk_khr_external_fence_capabilities, VK_KHR_EXTERNAL_FENCE_CAPABILITIES_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_external_fence_win32,
Info(&DeviceExtensions::vk_khr_external_fence_win32,
{{{&DeviceExtensions::vk_khr_external_fence, VK_KHR_EXTERNAL_FENCE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_KHR_external_fence_fd,
Info(&DeviceExtensions::vk_khr_external_fence_fd,
{{{&DeviceExtensions::vk_khr_external_fence, VK_KHR_EXTERNAL_FENCE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_performance_query,
Info(&DeviceExtensions::vk_khr_performance_query, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_maintenance2, Info(&DeviceExtensions::vk_khr_maintenance2, {})},
{vvl::Extension::_VK_KHR_variable_pointers,
Info(&DeviceExtensions::vk_khr_variable_pointers,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_storage_buffer_storage_class, VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_dedicated_allocation,
Info(&DeviceExtensions::vk_khr_dedicated_allocation,
{{{&DeviceExtensions::vk_khr_get_memory_requirements2, VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_storage_buffer_storage_class, Info(&DeviceExtensions::vk_khr_storage_buffer_storage_class, {})},
{vvl::Extension::_VK_KHR_shader_bfloat16,
Info(&DeviceExtensions::vk_khr_shader_bfloat16, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_relaxed_block_layout, Info(&DeviceExtensions::vk_khr_relaxed_block_layout, {})},
{vvl::Extension::_VK_KHR_get_memory_requirements2, Info(&DeviceExtensions::vk_khr_get_memory_requirements2, {})},
{vvl::Extension::_VK_KHR_image_format_list, Info(&DeviceExtensions::vk_khr_image_format_list, {})},
{vvl::Extension::_VK_KHR_sampler_ycbcr_conversion,
Info(&DeviceExtensions::vk_khr_sampler_ycbcr_conversion,
{{{&DeviceExtensions::vk_khr_maintenance1, VK_KHR_MAINTENANCE_1_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_bind_memory2, VK_KHR_BIND_MEMORY_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_memory_requirements2, VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_bind_memory2, Info(&DeviceExtensions::vk_khr_bind_memory2, {})},
#ifdef VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_KHR_portability_subset,
Info(&DeviceExtensions::vk_khr_portability_subset, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
#endif // VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_KHR_maintenance3,
Info(&DeviceExtensions::vk_khr_maintenance3, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_draw_indirect_count, Info(&DeviceExtensions::vk_khr_draw_indirect_count, {})},
{vvl::Extension::_VK_KHR_shader_subgroup_extended_types,
Info(&DeviceExtensions::vk_khr_shader_subgroup_extended_types,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_KHR_8bit_storage,
Info(&DeviceExtensions::vk_khr_8bit_storage,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_storage_buffer_storage_class, VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_atomic_int64,
Info(&DeviceExtensions::vk_khr_shader_atomic_int64, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_clock,
Info(&DeviceExtensions::vk_khr_shader_clock, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_decode_h265,
Info(&DeviceExtensions::vk_khr_video_decode_h265,
{{{&DeviceExtensions::vk_khr_video_decode_queue, VK_KHR_VIDEO_DECODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_global_priority,
Info(&DeviceExtensions::vk_khr_global_priority, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_driver_properties,
Info(&DeviceExtensions::vk_khr_driver_properties, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_float_controls,
Info(&DeviceExtensions::vk_khr_shader_float_controls, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_depth_stencil_resolve,
Info(&DeviceExtensions::vk_khr_depth_stencil_resolve,
{{{&DeviceExtensions::vk_khr_create_renderpass2, VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_swapchain_mutable_format,
Info(&DeviceExtensions::vk_khr_swapchain_mutable_format,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_maintenance2, VK_KHR_MAINTENANCE_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_image_format_list, VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_timeline_semaphore,
Info(&DeviceExtensions::vk_khr_timeline_semaphore, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_vulkan_memory_model,
Info(&DeviceExtensions::vk_khr_vulkan_memory_model, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_terminate_invocation,
Info(&DeviceExtensions::vk_khr_shader_terminate_invocation, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_fragment_shading_rate,
Info(&DeviceExtensions::vk_khr_fragment_shading_rate,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_create_renderpass2, VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_dynamic_rendering_local_read,
Info(&DeviceExtensions::vk_khr_dynamic_rendering_local_read,
{{{&DeviceExtensions::vk_khr_dynamic_rendering, VK_KHR_DYNAMIC_RENDERING_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_quad_control,
Info(&DeviceExtensions::vk_khr_shader_quad_control,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&DeviceExtensions::vk_khr_vulkan_memory_model, VK_KHR_VULKAN_MEMORY_MODEL_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_shader_maximal_reconvergence, VK_KHR_SHADER_MAXIMAL_RECONVERGENCE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_spirv_1_4,
Info(&DeviceExtensions::vk_khr_spirv_1_4,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&DeviceExtensions::vk_khr_shader_float_controls, VK_KHR_SHADER_FLOAT_CONTROLS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_separate_depth_stencil_layouts,
Info(&DeviceExtensions::vk_khr_separate_depth_stencil_layouts,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_create_renderpass2, VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_present_wait, Info(&DeviceExtensions::vk_khr_present_wait,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_present_id, VK_KHR_PRESENT_ID_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_uniform_buffer_standard_layout,
Info(&DeviceExtensions::vk_khr_uniform_buffer_standard_layout,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_buffer_device_address,
Info(&DeviceExtensions::vk_khr_buffer_device_address,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_device_group, VK_KHR_DEVICE_GROUP_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_deferred_host_operations, Info(&DeviceExtensions::vk_khr_deferred_host_operations, {})},
{vvl::Extension::_VK_KHR_pipeline_executable_properties,
Info(&DeviceExtensions::vk_khr_pipeline_executable_properties,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_map_memory2, Info(&DeviceExtensions::vk_khr_map_memory2, {})},
{vvl::Extension::_VK_KHR_shader_integer_dot_product,
Info(&DeviceExtensions::vk_khr_shader_integer_dot_product, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_pipeline_library, Info(&DeviceExtensions::vk_khr_pipeline_library, {})},
{vvl::Extension::_VK_KHR_shader_non_semantic_info, Info(&DeviceExtensions::vk_khr_shader_non_semantic_info, {})},
{vvl::Extension::_VK_KHR_present_id,
Info(&DeviceExtensions::vk_khr_present_id, {{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_encode_queue,
Info(&DeviceExtensions::vk_khr_video_encode_queue,
{{{&DeviceExtensions::vk_khr_video_queue, VK_KHR_VIDEO_QUEUE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_synchronization2,
Info(&DeviceExtensions::vk_khr_synchronization2, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_fragment_shader_barycentric,
Info(&DeviceExtensions::vk_khr_fragment_shader_barycentric, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_subgroup_uniform_control_flow,
Info(&DeviceExtensions::vk_khr_shader_subgroup_uniform_control_flow,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_KHR_zero_initialize_workgroup_memory,
Info(&DeviceExtensions::vk_khr_zero_initialize_workgroup_memory,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_workgroup_memory_explicit_layout,
Info(&DeviceExtensions::vk_khr_workgroup_memory_explicit_layout,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_copy_commands2,
Info(&DeviceExtensions::vk_khr_copy_commands2, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_format_feature_flags2,
Info(&DeviceExtensions::vk_khr_format_feature_flags2, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_ray_tracing_maintenance1,
Info(&DeviceExtensions::vk_khr_ray_tracing_maintenance1,
{{{&DeviceExtensions::vk_khr_acceleration_structure, VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_maintenance4,
Info(&DeviceExtensions::vk_khr_maintenance4, {{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_KHR_shader_subgroup_rotate, Info(&DeviceExtensions::vk_khr_shader_subgroup_rotate, {})},
{vvl::Extension::_VK_KHR_shader_maximal_reconvergence,
Info(&DeviceExtensions::vk_khr_shader_maximal_reconvergence,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_KHR_maintenance5,
Info(&DeviceExtensions::vk_khr_maintenance5,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&DeviceExtensions::vk_khr_dynamic_rendering, VK_KHR_DYNAMIC_RENDERING_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_present_id2,
Info(&DeviceExtensions::vk_khr_present_id2,
{{{&DeviceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_present_wait2,
Info(&DeviceExtensions::vk_khr_present_wait2,
{{{&DeviceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_present_id2, VK_KHR_PRESENT_ID_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_ray_tracing_position_fetch,
Info(&DeviceExtensions::vk_khr_ray_tracing_position_fetch,
{{{&DeviceExtensions::vk_khr_acceleration_structure, VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_pipeline_binary,
Info(&DeviceExtensions::vk_khr_pipeline_binary,
{{{&DeviceExtensions::vk_khr_maintenance5, VK_KHR_MAINTENANCE_5_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_swapchain_maintenance1,
Info(&DeviceExtensions::vk_khr_swapchain_maintenance1,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_surface_maintenance1, VK_KHR_SURFACE_MAINTENANCE_1_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_cooperative_matrix,
Info(&DeviceExtensions::vk_khr_cooperative_matrix, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_compute_shader_derivatives,
Info(&DeviceExtensions::vk_khr_compute_shader_derivatives, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_decode_av1,
Info(&DeviceExtensions::vk_khr_video_decode_av1,
{{{&DeviceExtensions::vk_khr_video_decode_queue, VK_KHR_VIDEO_DECODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_encode_av1,
Info(&DeviceExtensions::vk_khr_video_encode_av1,
{{{&DeviceExtensions::vk_khr_video_encode_queue, VK_KHR_VIDEO_ENCODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_decode_vp9,
Info(&DeviceExtensions::vk_khr_video_decode_vp9,
{{{&DeviceExtensions::vk_khr_video_decode_queue, VK_KHR_VIDEO_DECODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_maintenance1,
Info(&DeviceExtensions::vk_khr_video_maintenance1,
{{{&DeviceExtensions::vk_khr_video_queue, VK_KHR_VIDEO_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_vertex_attribute_divisor,
Info(&DeviceExtensions::vk_khr_vertex_attribute_divisor, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_load_store_op_none, Info(&DeviceExtensions::vk_khr_load_store_op_none, {})},
{vvl::Extension::_VK_KHR_unified_image_layouts, Info(&DeviceExtensions::vk_khr_unified_image_layouts, {})},
{vvl::Extension::_VK_KHR_shader_float_controls2,
Info(&DeviceExtensions::vk_khr_shader_float_controls2,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&DeviceExtensions::vk_khr_shader_float_controls, VK_KHR_SHADER_FLOAT_CONTROLS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_index_type_uint8,
Info(&DeviceExtensions::vk_khr_index_type_uint8, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_line_rasterization,
Info(&DeviceExtensions::vk_khr_line_rasterization, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_calibrated_timestamps,
Info(&DeviceExtensions::vk_khr_calibrated_timestamps, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_expect_assume,
Info(&DeviceExtensions::vk_khr_shader_expect_assume, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_maintenance6,
Info(&DeviceExtensions::vk_khr_maintenance6, {{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_KHR_video_encode_intra_refresh,
Info(&DeviceExtensions::vk_khr_video_encode_intra_refresh,
{{{&DeviceExtensions::vk_khr_video_encode_queue, VK_KHR_VIDEO_ENCODE_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_encode_quantization_map,
Info(&DeviceExtensions::vk_khr_video_encode_quantization_map,
{{{&DeviceExtensions::vk_khr_video_encode_queue, VK_KHR_VIDEO_ENCODE_QUEUE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_format_feature_flags2, VK_KHR_FORMAT_FEATURE_FLAGS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_shader_relaxed_extended_instruction,
Info(&DeviceExtensions::vk_khr_shader_relaxed_extended_instruction, {})},
{vvl::Extension::_VK_KHR_maintenance7,
Info(&DeviceExtensions::vk_khr_maintenance7, {{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_KHR_maintenance8,
Info(&DeviceExtensions::vk_khr_maintenance8, {{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_KHR_maintenance9,
Info(&DeviceExtensions::vk_khr_maintenance9, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_video_maintenance2,
Info(&DeviceExtensions::vk_khr_video_maintenance2,
{{{&DeviceExtensions::vk_khr_video_queue, VK_KHR_VIDEO_QUEUE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_depth_clamp_zero_one,
Info(&DeviceExtensions::vk_khr_depth_clamp_zero_one, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_robustness2,
Info(&DeviceExtensions::vk_khr_robustness2, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_present_mode_fifo_latest_ready,
Info(&DeviceExtensions::vk_khr_present_mode_fifo_latest_ready,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_glsl_shader, Info(&DeviceExtensions::vk_nv_glsl_shader, {})},
{vvl::Extension::_VK_EXT_depth_range_unrestricted, Info(&DeviceExtensions::vk_ext_depth_range_unrestricted, {})},
{vvl::Extension::_VK_IMG_filter_cubic, Info(&DeviceExtensions::vk_img_filter_cubic, {})},
{vvl::Extension::_VK_AMD_rasterization_order, Info(&DeviceExtensions::vk_amd_rasterization_order, {})},
{vvl::Extension::_VK_AMD_shader_trinary_minmax, Info(&DeviceExtensions::vk_amd_shader_trinary_minmax, {})},
{vvl::Extension::_VK_AMD_shader_explicit_vertex_parameter,
Info(&DeviceExtensions::vk_amd_shader_explicit_vertex_parameter, {})},
{vvl::Extension::_VK_EXT_debug_marker,
Info(&DeviceExtensions::vk_ext_debug_marker,
{{{&DeviceExtensions::vk_ext_debug_report, VK_EXT_DEBUG_REPORT_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_gcn_shader, Info(&DeviceExtensions::vk_amd_gcn_shader, {})},
{vvl::Extension::_VK_NV_dedicated_allocation, Info(&DeviceExtensions::vk_nv_dedicated_allocation, {})},
{vvl::Extension::_VK_EXT_transform_feedback,
Info(&DeviceExtensions::vk_ext_transform_feedback, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NVX_binary_import, Info(&DeviceExtensions::vk_nvx_binary_import, {})},
{vvl::Extension::_VK_NVX_image_view_handle, Info(&DeviceExtensions::vk_nvx_image_view_handle, {})},
{vvl::Extension::_VK_AMD_draw_indirect_count, Info(&DeviceExtensions::vk_amd_draw_indirect_count, {})},
{vvl::Extension::_VK_AMD_negative_viewport_height, Info(&DeviceExtensions::vk_amd_negative_viewport_height, {})},
{vvl::Extension::_VK_AMD_gpu_shader_half_float, Info(&DeviceExtensions::vk_amd_gpu_shader_half_float, {})},
{vvl::Extension::_VK_AMD_shader_ballot, Info(&DeviceExtensions::vk_amd_shader_ballot, {})},
{vvl::Extension::_VK_AMD_texture_gather_bias_lod,
Info(&DeviceExtensions::vk_amd_texture_gather_bias_lod, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_shader_info, Info(&DeviceExtensions::vk_amd_shader_info, {})},
{vvl::Extension::_VK_AMD_shader_image_load_store_lod, Info(&DeviceExtensions::vk_amd_shader_image_load_store_lod, {})},
{vvl::Extension::_VK_NV_corner_sampled_image,
Info(&DeviceExtensions::vk_nv_corner_sampled_image, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_IMG_format_pvrtc, Info(&DeviceExtensions::vk_img_format_pvrtc, {})},
{vvl::Extension::_VK_NV_external_memory,
Info(&DeviceExtensions::vk_nv_external_memory,
{{{&DeviceExtensions::vk_nv_external_memory_capabilities, VK_NV_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_NV_external_memory_win32,
Info(&DeviceExtensions::vk_nv_external_memory_win32,
{{{&DeviceExtensions::vk_nv_external_memory, VK_NV_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_win32_keyed_mutex,
Info(&DeviceExtensions::vk_nv_win32_keyed_mutex,
{{{&DeviceExtensions::vk_nv_external_memory_win32, VK_NV_EXTERNAL_MEMORY_WIN32_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_EXT_shader_subgroup_ballot, Info(&DeviceExtensions::vk_ext_shader_subgroup_ballot, {})},
{vvl::Extension::_VK_EXT_shader_subgroup_vote, Info(&DeviceExtensions::vk_ext_shader_subgroup_vote, {})},
{vvl::Extension::_VK_EXT_texture_compression_astc_hdr, Info(&DeviceExtensions::vk_ext_texture_compression_astc_hdr,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_astc_decode_mode,
Info(&DeviceExtensions::vk_ext_astc_decode_mode, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_pipeline_robustness,
Info(&DeviceExtensions::vk_ext_pipeline_robustness, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_conditional_rendering,
Info(&DeviceExtensions::vk_ext_conditional_rendering, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_clip_space_w_scaling, Info(&DeviceExtensions::vk_nv_clip_space_w_scaling, {})},
{vvl::Extension::_VK_EXT_display_control,
Info(&DeviceExtensions::vk_ext_display_control,
{{{&DeviceExtensions::vk_ext_display_surface_counter, VK_EXT_DISPLAY_SURFACE_COUNTER_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_GOOGLE_display_timing,
Info(&DeviceExtensions::vk_google_display_timing,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_sample_mask_override_coverage, Info(&DeviceExtensions::vk_nv_sample_mask_override_coverage, {})},
{vvl::Extension::_VK_NV_geometry_shader_passthrough, Info(&DeviceExtensions::vk_nv_geometry_shader_passthrough, {})},
{vvl::Extension::_VK_NV_viewport_array2, Info(&DeviceExtensions::vk_nv_viewport_array2, {})},
{vvl::Extension::_VK_NVX_multiview_per_view_attributes,
Info(&DeviceExtensions::vk_nvx_multiview_per_view_attributes,
{{{&DeviceExtensions::vk_khr_multiview, VK_KHR_MULTIVIEW_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_viewport_swizzle, Info(&DeviceExtensions::vk_nv_viewport_swizzle, {})},
{vvl::Extension::_VK_EXT_discard_rectangles,
Info(&DeviceExtensions::vk_ext_discard_rectangles, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_conservative_rasterization,
Info(&DeviceExtensions::vk_ext_conservative_rasterization, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_depth_clip_enable,
Info(&DeviceExtensions::vk_ext_depth_clip_enable, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_hdr_metadata,
Info(&DeviceExtensions::vk_ext_hdr_metadata, {{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_IMG_relaxed_line_rasterization,
Info(&DeviceExtensions::vk_img_relaxed_line_rasterization, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_external_memory_dma_buf,
Info(&DeviceExtensions::vk_ext_external_memory_dma_buf,
{{{&DeviceExtensions::vk_khr_external_memory_fd, VK_KHR_EXTERNAL_MEMORY_FD_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_queue_family_foreign,
Info(&DeviceExtensions::vk_ext_queue_family_foreign,
{{{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_ANDROID_KHR
{vvl::Extension::_VK_ANDROID_external_memory_android_hardware_buffer,
Info(&DeviceExtensions::vk_android_external_memory_android_hardware_buffer,
{{{&DeviceExtensions::vk_khr_sampler_ycbcr_conversion, VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_dedicated_allocation, VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_queue_family_foreign, VK_EXT_QUEUE_FAMILY_FOREIGN_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_ANDROID_KHR
{vvl::Extension::_VK_EXT_sampler_filter_minmax,
Info(&DeviceExtensions::vk_ext_sampler_filter_minmax, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_gpu_shader_int16, Info(&DeviceExtensions::vk_amd_gpu_shader_int16, {})},
#ifdef VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_AMDX_shader_enqueue,
Info(&DeviceExtensions::vk_amdx_shader_enqueue,
{{{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_spirv_1_4, VK_KHR_SPIRV_1_4_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_extended_dynamic_state, VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_maintenance5, VK_KHR_MAINTENANCE_5_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_pipeline_library, VK_KHR_PIPELINE_LIBRARY_EXTENSION_NAME}}})},
#endif // VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_AMD_mixed_attachment_samples, Info(&DeviceExtensions::vk_amd_mixed_attachment_samples, {})},
{vvl::Extension::_VK_AMD_shader_fragment_mask, Info(&DeviceExtensions::vk_amd_shader_fragment_mask, {})},
{vvl::Extension::_VK_EXT_inline_uniform_block,
Info(&DeviceExtensions::vk_ext_inline_uniform_block,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_maintenance1, VK_KHR_MAINTENANCE_1_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_shader_stencil_export, Info(&DeviceExtensions::vk_ext_shader_stencil_export, {})},
{vvl::Extension::_VK_EXT_sample_locations,
Info(&DeviceExtensions::vk_ext_sample_locations, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_blend_operation_advanced,
Info(&DeviceExtensions::vk_ext_blend_operation_advanced, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_fragment_coverage_to_color, Info(&DeviceExtensions::vk_nv_fragment_coverage_to_color, {})},
{vvl::Extension::_VK_NV_framebuffer_mixed_samples, Info(&DeviceExtensions::vk_nv_framebuffer_mixed_samples, {})},
{vvl::Extension::_VK_NV_fill_rectangle, Info(&DeviceExtensions::vk_nv_fill_rectangle, {})},
{vvl::Extension::_VK_NV_shader_sm_builtins,
Info(&DeviceExtensions::vk_nv_shader_sm_builtins, {{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_EXT_post_depth_coverage, Info(&DeviceExtensions::vk_ext_post_depth_coverage, {})},
{vvl::Extension::_VK_EXT_image_drm_format_modifier,
Info(&DeviceExtensions::vk_ext_image_drm_format_modifier,
{{{&DeviceExtensions::vk_khr_bind_memory2, VK_KHR_BIND_MEMORY_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_sampler_ycbcr_conversion, VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_image_format_list, VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_validation_cache, Info(&DeviceExtensions::vk_ext_validation_cache, {})},
{vvl::Extension::_VK_EXT_descriptor_indexing,
Info(&DeviceExtensions::vk_ext_descriptor_indexing,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_maintenance3, VK_KHR_MAINTENANCE_3_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_shader_viewport_index_layer, Info(&DeviceExtensions::vk_ext_shader_viewport_index_layer, {})},
{vvl::Extension::_VK_NV_shading_rate_image,
Info(&DeviceExtensions::vk_nv_shading_rate_image, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_ray_tracing,
Info(&DeviceExtensions::vk_nv_ray_tracing,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_memory_requirements2, VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_representative_fragment_test,
Info(&DeviceExtensions::vk_nv_representative_fragment_test, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_filter_cubic, Info(&DeviceExtensions::vk_ext_filter_cubic, {})},
{vvl::Extension::_VK_QCOM_render_pass_shader_resolve, Info(&DeviceExtensions::vk_qcom_render_pass_shader_resolve, {})},
{vvl::Extension::_VK_EXT_global_priority, Info(&DeviceExtensions::vk_ext_global_priority, {})},
{vvl::Extension::_VK_EXT_external_memory_host,
Info(&DeviceExtensions::vk_ext_external_memory_host,
{{{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_buffer_marker, Info(&DeviceExtensions::vk_amd_buffer_marker, {})},
{vvl::Extension::_VK_AMD_pipeline_compiler_control, Info(&DeviceExtensions::vk_amd_pipeline_compiler_control, {})},
{vvl::Extension::_VK_EXT_calibrated_timestamps,
Info(&DeviceExtensions::vk_ext_calibrated_timestamps, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_shader_core_properties,
Info(&DeviceExtensions::vk_amd_shader_core_properties, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_memory_overallocation_behavior,
Info(&DeviceExtensions::vk_amd_memory_overallocation_behavior, {})},
{vvl::Extension::_VK_EXT_vertex_attribute_divisor,
Info(&DeviceExtensions::vk_ext_vertex_attribute_divisor, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_GGP
{vvl::Extension::_VK_GGP_frame_token,
Info(&DeviceExtensions::vk_ggp_frame_token,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_ggp_stream_descriptor_surface, VK_GGP_STREAM_DESCRIPTOR_SURFACE_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_GGP
{vvl::Extension::_VK_EXT_pipeline_creation_feedback, Info(&DeviceExtensions::vk_ext_pipeline_creation_feedback, {})},
{vvl::Extension::_VK_NV_shader_subgroup_partitioned,
Info(&DeviceExtensions::vk_nv_shader_subgroup_partitioned,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_NV_compute_shader_derivatives,
Info(&DeviceExtensions::vk_nv_compute_shader_derivatives, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_mesh_shader,
Info(&DeviceExtensions::vk_nv_mesh_shader, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_fragment_shader_barycentric,
Info(&DeviceExtensions::vk_nv_fragment_shader_barycentric, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_shader_image_footprint,
Info(&DeviceExtensions::vk_nv_shader_image_footprint, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_scissor_exclusive,
Info(&DeviceExtensions::vk_nv_scissor_exclusive, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_device_diagnostic_checkpoints, Info(&DeviceExtensions::vk_nv_device_diagnostic_checkpoints,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_INTEL_shader_integer_functions2,
Info(&DeviceExtensions::vk_intel_shader_integer_functions2, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_INTEL_performance_query, Info(&DeviceExtensions::vk_intel_performance_query, {})},
{vvl::Extension::_VK_EXT_pci_bus_info,
Info(&DeviceExtensions::vk_ext_pci_bus_info, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_display_native_hdr,
Info(&DeviceExtensions::vk_amd_display_native_hdr,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_fragment_density_map,
Info(&DeviceExtensions::vk_ext_fragment_density_map, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_scalar_block_layout,
Info(&DeviceExtensions::vk_ext_scalar_block_layout, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_GOOGLE_hlsl_functionality1, Info(&DeviceExtensions::vk_google_hlsl_functionality1, {})},
{vvl::Extension::_VK_GOOGLE_decorate_string, Info(&DeviceExtensions::vk_google_decorate_string, {})},
{vvl::Extension::_VK_EXT_subgroup_size_control,
Info(&DeviceExtensions::vk_ext_subgroup_size_control, {{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_AMD_shader_core_properties2,
Info(&DeviceExtensions::vk_amd_shader_core_properties2,
{{{&DeviceExtensions::vk_amd_shader_core_properties, VK_AMD_SHADER_CORE_PROPERTIES_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_device_coherent_memory,
Info(&DeviceExtensions::vk_amd_device_coherent_memory, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_shader_image_atomic_int64,
Info(&DeviceExtensions::vk_ext_shader_image_atomic_int64, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_memory_budget,
Info(&DeviceExtensions::vk_ext_memory_budget, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_memory_priority,
Info(&DeviceExtensions::vk_ext_memory_priority, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_dedicated_allocation_image_aliasing,
Info(&DeviceExtensions::vk_nv_dedicated_allocation_image_aliasing,
{{{&DeviceExtensions::vk_khr_dedicated_allocation, VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_buffer_device_address,
Info(&DeviceExtensions::vk_ext_buffer_device_address, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_tooling_info, Info(&DeviceExtensions::vk_ext_tooling_info, {})},
{vvl::Extension::_VK_EXT_separate_stencil_usage, Info(&DeviceExtensions::vk_ext_separate_stencil_usage, {})},
{vvl::Extension::_VK_NV_cooperative_matrix,
Info(&DeviceExtensions::vk_nv_cooperative_matrix, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_coverage_reduction_mode,
Info(&DeviceExtensions::vk_nv_coverage_reduction_mode,
{{{&DeviceExtensions::vk_nv_framebuffer_mixed_samples, VK_NV_FRAMEBUFFER_MIXED_SAMPLES_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_fragment_shader_interlock,
Info(&DeviceExtensions::vk_ext_fragment_shader_interlock, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_ycbcr_image_arrays,
Info(&DeviceExtensions::vk_ext_ycbcr_image_arrays,
{{{&DeviceExtensions::vk_khr_sampler_ycbcr_conversion, VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_provoking_vertex,
Info(&DeviceExtensions::vk_ext_provoking_vertex, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_EXT_full_screen_exclusive,
Info(&DeviceExtensions::vk_ext_full_screen_exclusive,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_EXT_line_rasterization,
Info(&DeviceExtensions::vk_ext_line_rasterization, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_shader_atomic_float,
Info(&DeviceExtensions::vk_ext_shader_atomic_float, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_host_query_reset,
Info(&DeviceExtensions::vk_ext_host_query_reset, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_index_type_uint8,
Info(&DeviceExtensions::vk_ext_index_type_uint8, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_extended_dynamic_state,
Info(&DeviceExtensions::vk_ext_extended_dynamic_state, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_host_image_copy,
Info(&DeviceExtensions::vk_ext_host_image_copy,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_copy_commands2, VK_KHR_COPY_COMMANDS_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_format_feature_flags2, VK_KHR_FORMAT_FEATURE_FLAGS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_map_memory_placed,
Info(&DeviceExtensions::vk_ext_map_memory_placed,
{{{&DeviceExtensions::vk_khr_map_memory2, VK_KHR_MAP_MEMORY_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_shader_atomic_float2,
Info(&DeviceExtensions::vk_ext_shader_atomic_float2,
{{{&DeviceExtensions::vk_ext_shader_atomic_float, VK_EXT_SHADER_ATOMIC_FLOAT_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_swapchain_maintenance1,
Info(&DeviceExtensions::vk_ext_swapchain_maintenance1,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_surface_maintenance1, VK_EXT_SURFACE_MAINTENANCE_1_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_shader_demote_to_helper_invocation,
Info(&DeviceExtensions::vk_ext_shader_demote_to_helper_invocation,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_device_generated_commands,
Info(&DeviceExtensions::vk_nv_device_generated_commands,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&DeviceExtensions::vk_khr_buffer_device_address, VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_inherited_viewport_scissor,
Info(&DeviceExtensions::vk_nv_inherited_viewport_scissor, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_texel_buffer_alignment,
Info(&DeviceExtensions::vk_ext_texel_buffer_alignment, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_render_pass_transform, Info(&DeviceExtensions::vk_qcom_render_pass_transform, {})},
{vvl::Extension::_VK_EXT_depth_bias_control,
Info(&DeviceExtensions::vk_ext_depth_bias_control, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_device_memory_report,
Info(&DeviceExtensions::vk_ext_device_memory_report, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_robustness2,
Info(&DeviceExtensions::vk_ext_robustness2, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_custom_border_color,
Info(&DeviceExtensions::vk_ext_custom_border_color, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_GOOGLE_user_type, Info(&DeviceExtensions::vk_google_user_type, {})},
{vvl::Extension::_VK_NV_present_barrier,
Info(&DeviceExtensions::vk_nv_present_barrier,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_surface, VK_KHR_SURFACE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_surface_capabilities2, VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_private_data,
Info(&DeviceExtensions::vk_ext_private_data, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_pipeline_creation_cache_control,
Info(&DeviceExtensions::vk_ext_pipeline_creation_cache_control,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_device_diagnostics_config,
Info(&DeviceExtensions::vk_nv_device_diagnostics_config, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_render_pass_store_ops, Info(&DeviceExtensions::vk_qcom_render_pass_store_ops, {})},
#ifdef VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_NV_cuda_kernel_launch, Info(&DeviceExtensions::vk_nv_cuda_kernel_launch, {})},
#endif // VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_QCOM_tile_shading,
Info(&DeviceExtensions::vk_qcom_tile_shading,
{{{&DeviceExtensions::vk_qcom_tile_properties, VK_QCOM_TILE_PROPERTIES_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_low_latency, Info(&DeviceExtensions::vk_nv_low_latency, {})},
#ifdef VK_USE_PLATFORM_METAL_EXT
{vvl::Extension::_VK_EXT_metal_objects, Info(&DeviceExtensions::vk_ext_metal_objects, {})},
#endif // VK_USE_PLATFORM_METAL_EXT
{vvl::Extension::_VK_EXT_descriptor_buffer,
Info(&DeviceExtensions::vk_ext_descriptor_buffer,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_buffer_device_address, VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_descriptor_indexing, VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_graphics_pipeline_library,
Info(&DeviceExtensions::vk_ext_graphics_pipeline_library,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_pipeline_library, VK_KHR_PIPELINE_LIBRARY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_AMD_shader_early_and_late_fragment_tests,
Info(&DeviceExtensions::vk_amd_shader_early_and_late_fragment_tests,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_fragment_shading_rate_enums,
Info(&DeviceExtensions::vk_nv_fragment_shading_rate_enums,
{{{&DeviceExtensions::vk_khr_fragment_shading_rate, VK_KHR_FRAGMENT_SHADING_RATE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_ray_tracing_motion_blur,
Info(&DeviceExtensions::vk_nv_ray_tracing_motion_blur,
{{{&DeviceExtensions::vk_khr_ray_tracing_pipeline, VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_ycbcr_2plane_444_formats,
Info(&DeviceExtensions::vk_ext_ycbcr_2plane_444_formats,
{{{&DeviceExtensions::vk_khr_sampler_ycbcr_conversion, VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_fragment_density_map2,
Info(&DeviceExtensions::vk_ext_fragment_density_map2,
{{{&DeviceExtensions::vk_ext_fragment_density_map, VK_EXT_FRAGMENT_DENSITY_MAP_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_rotated_copy_commands,
Info(&DeviceExtensions::vk_qcom_rotated_copy_commands,
{{{&DeviceExtensions::vk_khr_copy_commands2, VK_KHR_COPY_COMMANDS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_image_robustness,
Info(&DeviceExtensions::vk_ext_image_robustness, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_image_compression_control,
Info(&DeviceExtensions::vk_ext_image_compression_control, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_attachment_feedback_loop_layout,
Info(&DeviceExtensions::vk_ext_attachment_feedback_loop_layout,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_4444_formats,
Info(&DeviceExtensions::vk_ext_4444_formats, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_device_fault,
Info(&DeviceExtensions::vk_ext_device_fault, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_rasterization_order_attachment_access,
Info(&DeviceExtensions::vk_arm_rasterization_order_attachment_access,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_rgba10x6_formats,
Info(&DeviceExtensions::vk_ext_rgba10x6_formats,
{{{&DeviceExtensions::vk_khr_sampler_ycbcr_conversion, VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_NV_acquire_winrt_display,
Info(&DeviceExtensions::vk_nv_acquire_winrt_display,
{{{&DeviceExtensions::vk_ext_direct_mode_display, VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_WIN32_KHR
{vvl::Extension::_VK_VALVE_mutable_descriptor_type,
Info(&DeviceExtensions::vk_valve_mutable_descriptor_type,
{{{&DeviceExtensions::vk_khr_maintenance3, VK_KHR_MAINTENANCE_3_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_vertex_input_dynamic_state,
Info(&DeviceExtensions::vk_ext_vertex_input_dynamic_state, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_physical_device_drm,
Info(&DeviceExtensions::vk_ext_physical_device_drm, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_device_address_binding_report,
Info(&DeviceExtensions::vk_ext_device_address_binding_report,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_debug_utils, VK_EXT_DEBUG_UTILS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_depth_clip_control,
Info(&DeviceExtensions::vk_ext_depth_clip_control, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_primitive_topology_list_restart,
Info(&DeviceExtensions::vk_ext_primitive_topology_list_restart,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_present_mode_fifo_latest_ready,
Info(&DeviceExtensions::vk_ext_present_mode_fifo_latest_ready,
{{{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_FUCHSIA
{vvl::Extension::_VK_FUCHSIA_external_memory,
Info(&DeviceExtensions::vk_fuchsia_external_memory,
{{{&DeviceExtensions::vk_khr_external_memory_capabilities, VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_FUCHSIA_external_semaphore,
Info(&DeviceExtensions::vk_fuchsia_external_semaphore,
{{{&DeviceExtensions::vk_khr_external_semaphore_capabilities, VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_external_semaphore, VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_FUCHSIA_buffer_collection,
Info(&DeviceExtensions::vk_fuchsia_buffer_collection,
{{{&DeviceExtensions::vk_fuchsia_external_memory, VK_FUCHSIA_EXTERNAL_MEMORY_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_sampler_ycbcr_conversion, VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_FUCHSIA
{vvl::Extension::_VK_HUAWEI_subpass_shading,
Info(&DeviceExtensions::vk_huawei_subpass_shading,
{{{&DeviceExtensions::vk_khr_create_renderpass2, VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_HUAWEI_invocation_mask,
Info(&DeviceExtensions::vk_huawei_invocation_mask,
{{{&DeviceExtensions::vk_khr_ray_tracing_pipeline, VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_external_memory_rdma,
Info(&DeviceExtensions::vk_nv_external_memory_rdma,
{{{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_pipeline_properties,
Info(&DeviceExtensions::vk_ext_pipeline_properties, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_frame_boundary, Info(&DeviceExtensions::vk_ext_frame_boundary, {})},
{vvl::Extension::_VK_EXT_multisampled_render_to_single_sampled,
Info(&DeviceExtensions::vk_ext_multisampled_render_to_single_sampled,
{{{&DeviceExtensions::vk_khr_create_renderpass2, VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_depth_stencil_resolve, VK_KHR_DEPTH_STENCIL_RESOLVE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_extended_dynamic_state2,
Info(&DeviceExtensions::vk_ext_extended_dynamic_state2, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_color_write_enable,
Info(&DeviceExtensions::vk_ext_color_write_enable, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_primitives_generated_query,
Info(&DeviceExtensions::vk_ext_primitives_generated_query,
{{{&DeviceExtensions::vk_ext_transform_feedback, VK_EXT_TRANSFORM_FEEDBACK_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_global_priority_query,
Info(&DeviceExtensions::vk_ext_global_priority_query,
{{{&DeviceExtensions::vk_ext_global_priority, VK_EXT_GLOBAL_PRIORITY_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_image_view_min_lod,
Info(&DeviceExtensions::vk_ext_image_view_min_lod, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_multi_draw,
Info(&DeviceExtensions::vk_ext_multi_draw, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_image_2d_view_of_3d,
Info(&DeviceExtensions::vk_ext_image_2d_view_of_3d,
{{{&DeviceExtensions::vk_khr_maintenance1, VK_KHR_MAINTENANCE_1_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_shader_tile_image,
Info(&DeviceExtensions::vk_ext_shader_tile_image, {{{&DeviceExtensions::vk_feature_version_1_3, "VK_VERSION_1_3"}}})},
{vvl::Extension::_VK_EXT_opacity_micromap,
Info(&DeviceExtensions::vk_ext_opacity_micromap,
{{{&DeviceExtensions::vk_khr_acceleration_structure, VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
#ifdef VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_NV_displacement_micromap,
Info(&DeviceExtensions::vk_nv_displacement_micromap,
{{{&DeviceExtensions::vk_ext_opacity_micromap, VK_EXT_OPACITY_MICROMAP_EXTENSION_NAME}}})},
#endif // VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_EXT_load_store_op_none, Info(&DeviceExtensions::vk_ext_load_store_op_none, {})},
{vvl::Extension::_VK_HUAWEI_cluster_culling_shader,
Info(&DeviceExtensions::vk_huawei_cluster_culling_shader, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_border_color_swizzle,
Info(&DeviceExtensions::vk_ext_border_color_swizzle,
{{{&DeviceExtensions::vk_ext_custom_border_color, VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_pageable_device_local_memory,
Info(&DeviceExtensions::vk_ext_pageable_device_local_memory,
{{{&DeviceExtensions::vk_ext_memory_priority, VK_EXT_MEMORY_PRIORITY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_shader_core_properties,
Info(&DeviceExtensions::vk_arm_shader_core_properties, {{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_ARM_scheduling_controls,
Info(&DeviceExtensions::vk_arm_scheduling_controls,
{{{&DeviceExtensions::vk_arm_shader_core_builtins, VK_ARM_SHADER_CORE_BUILTINS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_image_sliced_view_of_3d,
Info(&DeviceExtensions::vk_ext_image_sliced_view_of_3d,
{{{&DeviceExtensions::vk_khr_maintenance1, VK_KHR_MAINTENANCE_1_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_VALVE_descriptor_set_host_mapping, Info(&DeviceExtensions::vk_valve_descriptor_set_host_mapping,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_depth_clamp_zero_one,
Info(&DeviceExtensions::vk_ext_depth_clamp_zero_one, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_non_seamless_cube_map,
Info(&DeviceExtensions::vk_ext_non_seamless_cube_map, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_render_pass_striped,
Info(&DeviceExtensions::vk_arm_render_pass_striped,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_fragment_density_map_offset,
Info(&DeviceExtensions::vk_qcom_fragment_density_map_offset,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_fragment_density_map, VK_EXT_FRAGMENT_DENSITY_MAP_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_copy_memory_indirect,
Info(&DeviceExtensions::vk_nv_copy_memory_indirect,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_buffer_device_address, VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_memory_decompression,
Info(&DeviceExtensions::vk_nv_memory_decompression,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_buffer_device_address, VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_device_generated_commands_compute,
Info(&DeviceExtensions::vk_nv_device_generated_commands_compute,
{{{&DeviceExtensions::vk_nv_device_generated_commands, VK_NV_DEVICE_GENERATED_COMMANDS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_ray_tracing_linear_swept_spheres,
Info(&DeviceExtensions::vk_nv_ray_tracing_linear_swept_spheres,
{{{&DeviceExtensions::vk_khr_ray_tracing_pipeline, VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_linear_color_attachment,
Info(&DeviceExtensions::vk_nv_linear_color_attachment, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_image_compression_control_swapchain,
Info(&DeviceExtensions::vk_ext_image_compression_control_swapchain,
{{{&DeviceExtensions::vk_ext_image_compression_control, VK_EXT_IMAGE_COMPRESSION_CONTROL_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_image_processing,
Info(&DeviceExtensions::vk_qcom_image_processing,
{{{&DeviceExtensions::vk_khr_format_feature_flags2, VK_KHR_FORMAT_FEATURE_FLAGS_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_nested_command_buffer,
Info(&DeviceExtensions::vk_ext_nested_command_buffer, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_external_memory_acquire_unmodified,
Info(&DeviceExtensions::vk_ext_external_memory_acquire_unmodified,
{{{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_extended_dynamic_state3,
Info(&DeviceExtensions::vk_ext_extended_dynamic_state3, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_subpass_merge_feedback,
Info(&DeviceExtensions::vk_ext_subpass_merge_feedback, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_tensors,
Info(&DeviceExtensions::vk_arm_tensors, {{{&DeviceExtensions::vk_feature_version_1_3, "VK_VERSION_1_3"}}})},
{vvl::Extension::_VK_EXT_shader_module_identifier,
Info(&DeviceExtensions::vk_ext_shader_module_identifier,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_pipeline_creation_cache_control,
VK_EXT_PIPELINE_CREATION_CACHE_CONTROL_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_rasterization_order_attachment_access,
Info(&DeviceExtensions::vk_ext_rasterization_order_attachment_access,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_optical_flow,
Info(&DeviceExtensions::vk_nv_optical_flow,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_format_feature_flags2, VK_KHR_FORMAT_FEATURE_FLAGS_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_synchronization2, VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_legacy_dithering,
Info(&DeviceExtensions::vk_ext_legacy_dithering, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_pipeline_protected_access,
Info(&DeviceExtensions::vk_ext_pipeline_protected_access, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_ANDROID_KHR
{vvl::Extension::_VK_ANDROID_external_format_resolve,
Info(&DeviceExtensions::vk_android_external_format_resolve,
{{{&DeviceExtensions::vk_android_external_memory_android_hardware_buffer,
VK_ANDROID_EXTERNAL_MEMORY_ANDROID_HARDWARE_BUFFER_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_ANDROID_KHR
{vvl::Extension::_VK_AMD_anti_lag, Info(&DeviceExtensions::vk_amd_anti_lag, {})},
{vvl::Extension::_VK_EXT_shader_object,
Info(&DeviceExtensions::vk_ext_shader_object,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_dynamic_rendering, VK_KHR_DYNAMIC_RENDERING_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_tile_properties,
Info(&DeviceExtensions::vk_qcom_tile_properties, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_SEC_amigo_profiling,
Info(&DeviceExtensions::vk_sec_amigo_profiling, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_multiview_per_view_viewports, Info(&DeviceExtensions::vk_qcom_multiview_per_view_viewports,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_ray_tracing_invocation_reorder,
Info(&DeviceExtensions::vk_nv_ray_tracing_invocation_reorder,
{{{&DeviceExtensions::vk_khr_ray_tracing_pipeline, VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_cooperative_vector, Info(&DeviceExtensions::vk_nv_cooperative_vector, {})},
{vvl::Extension::_VK_NV_extended_sparse_address_space, Info(&DeviceExtensions::vk_nv_extended_sparse_address_space, {})},
{vvl::Extension::_VK_EXT_mutable_descriptor_type,
Info(&DeviceExtensions::vk_ext_mutable_descriptor_type,
{{{&DeviceExtensions::vk_khr_maintenance3, VK_KHR_MAINTENANCE_3_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_legacy_vertex_attributes,
Info(&DeviceExtensions::vk_ext_legacy_vertex_attributes,
{{{&DeviceExtensions::vk_ext_vertex_input_dynamic_state, VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_shader_core_builtins,
Info(&DeviceExtensions::vk_arm_shader_core_builtins, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_pipeline_library_group_handles,
Info(&DeviceExtensions::vk_ext_pipeline_library_group_handles,
{{{&DeviceExtensions::vk_khr_ray_tracing_pipeline, VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_pipeline_library, VK_KHR_PIPELINE_LIBRARY_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_dynamic_rendering_unused_attachments,
Info(&DeviceExtensions::vk_ext_dynamic_rendering_unused_attachments,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_dynamic_rendering, VK_KHR_DYNAMIC_RENDERING_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_low_latency2,
Info(&DeviceExtensions::vk_nv_low_latency2,
{{{&DeviceExtensions::vk_khr_timeline_semaphore, VK_KHR_TIMELINE_SEMAPHORE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_data_graph,
Info(&DeviceExtensions::vk_arm_data_graph,
{{{&DeviceExtensions::vk_feature_version_1_3, "VK_VERSION_1_3"},
{&DeviceExtensions::vk_khr_maintenance5, VK_KHR_MAINTENANCE_5_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_deferred_host_operations, VK_KHR_DEFERRED_HOST_OPERATIONS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_multiview_per_view_render_areas,
Info(&DeviceExtensions::vk_qcom_multiview_per_view_render_areas, {})},
{vvl::Extension::_VK_NV_per_stage_descriptor_set,
Info(&DeviceExtensions::vk_nv_per_stage_descriptor_set,
{{{&DeviceExtensions::vk_khr_maintenance6, VK_KHR_MAINTENANCE_6_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_image_processing2,
Info(&DeviceExtensions::vk_qcom_image_processing2,
{{{&DeviceExtensions::vk_qcom_image_processing, VK_QCOM_IMAGE_PROCESSING_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_filter_cubic_weights,
Info(&DeviceExtensions::vk_qcom_filter_cubic_weights,
{{{&DeviceExtensions::vk_ext_filter_cubic, VK_EXT_FILTER_CUBIC_EXTENSION_NAME}}})},
{vvl::Extension::_VK_QCOM_ycbcr_degamma, Info(&DeviceExtensions::vk_qcom_ycbcr_degamma, {})},
{vvl::Extension::_VK_QCOM_filter_cubic_clamp,
Info(&DeviceExtensions::vk_qcom_filter_cubic_clamp,
{{{&DeviceExtensions::vk_ext_filter_cubic, VK_EXT_FILTER_CUBIC_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_sampler_filter_minmax, VK_EXT_SAMPLER_FILTER_MINMAX_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_attachment_feedback_loop_dynamic_state,
Info(&DeviceExtensions::vk_ext_attachment_feedback_loop_dynamic_state,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_attachment_feedback_loop_layout,
VK_EXT_ATTACHMENT_FEEDBACK_LOOP_LAYOUT_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_SCREEN_QNX
{vvl::Extension::_VK_QNX_external_memory_screen_buffer,
Info(&DeviceExtensions::vk_qnx_external_memory_screen_buffer,
{{{&DeviceExtensions::vk_khr_sampler_ycbcr_conversion, VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_dedicated_allocation, VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_queue_family_foreign, VK_EXT_QUEUE_FAMILY_FOREIGN_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_SCREEN_QNX
{vvl::Extension::_VK_MSFT_layered_driver,
Info(&DeviceExtensions::vk_msft_layered_driver, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_descriptor_pool_overallocation,
Info(&DeviceExtensions::vk_nv_descriptor_pool_overallocation,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"}}})},
{vvl::Extension::_VK_QCOM_tile_memory_heap,
Info(&DeviceExtensions::vk_qcom_tile_memory_heap,
{{{&DeviceExtensions::vk_khr_get_memory_requirements2, VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_raw_access_chains, Info(&DeviceExtensions::vk_nv_raw_access_chains, {})},
{vvl::Extension::_VK_NV_external_compute_queue, Info(&DeviceExtensions::vk_nv_external_compute_queue, {})},
{vvl::Extension::_VK_NV_command_buffer_inheritance, Info(&DeviceExtensions::vk_nv_command_buffer_inheritance, {})},
{vvl::Extension::_VK_NV_shader_atomic_float16_vector, Info(&DeviceExtensions::vk_nv_shader_atomic_float16_vector, {})},
{vvl::Extension::_VK_EXT_shader_replicated_composites, Info(&DeviceExtensions::vk_ext_shader_replicated_composites, {})},
{vvl::Extension::_VK_EXT_shader_float8, Info(&DeviceExtensions::vk_ext_shader_float8, {})},
{vvl::Extension::_VK_NV_ray_tracing_validation, Info(&DeviceExtensions::vk_nv_ray_tracing_validation, {})},
{vvl::Extension::_VK_NV_cluster_acceleration_structure,
Info(&DeviceExtensions::vk_nv_cluster_acceleration_structure,
{{{&DeviceExtensions::vk_khr_acceleration_structure, VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_partitioned_acceleration_structure,
Info(&DeviceExtensions::vk_nv_partitioned_acceleration_structure,
{{{&DeviceExtensions::vk_khr_acceleration_structure, VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_device_generated_commands,
Info(&DeviceExtensions::vk_ext_device_generated_commands,
{{{&DeviceExtensions::vk_khr_buffer_device_address, VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_maintenance5, VK_KHR_MAINTENANCE_5_EXTENSION_NAME}}})},
{vvl::Extension::_VK_MESA_image_alignment_control,
Info(&DeviceExtensions::vk_mesa_image_alignment_control, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_depth_clamp_control,
Info(&DeviceExtensions::vk_ext_depth_clamp_control, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_HUAWEI_hdr_vivid,
Info(&DeviceExtensions::vk_huawei_hdr_vivid,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_swapchain, VK_KHR_SWAPCHAIN_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_hdr_metadata, VK_EXT_HDR_METADATA_EXTENSION_NAME}}})},
{vvl::Extension::_VK_NV_cooperative_matrix2,
Info(&DeviceExtensions::vk_nv_cooperative_matrix2,
{{{&DeviceExtensions::vk_khr_cooperative_matrix, VK_KHR_COOPERATIVE_MATRIX_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_pipeline_opacity_micromap,
Info(&DeviceExtensions::vk_arm_pipeline_opacity_micromap,
{{{&DeviceExtensions::vk_ext_opacity_micromap, VK_EXT_OPACITY_MICROMAP_EXTENSION_NAME}}})},
#ifdef VK_USE_PLATFORM_METAL_EXT
{vvl::Extension::_VK_EXT_external_memory_metal,
Info(&DeviceExtensions::vk_ext_external_memory_metal,
{{{&DeviceExtensions::vk_khr_external_memory, VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME}}})},
#endif // VK_USE_PLATFORM_METAL_EXT
{vvl::Extension::_VK_EXT_vertex_attribute_robustness,
Info(&DeviceExtensions::vk_ext_vertex_attribute_robustness, {{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_ARM_format_pack, Info(&DeviceExtensions::vk_arm_format_pack, {})},
{vvl::Extension::_VK_VALVE_fragment_density_map_layered,
Info(&DeviceExtensions::vk_valve_fragment_density_map_layered,
{{{&DeviceExtensions::vk_khr_maintenance5, VK_KHR_MAINTENANCE_5_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_fragment_density_map, VK_EXT_FRAGMENT_DENSITY_MAP_EXTENSION_NAME}}})},
#ifdef VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_NV_present_metering, Info(&DeviceExtensions::vk_nv_present_metering, {})},
#endif // VK_ENABLE_BETA_EXTENSIONS
{vvl::Extension::_VK_EXT_fragment_density_map_offset,
Info(&DeviceExtensions::vk_ext_fragment_density_map_offset,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME},
{&DeviceExtensions::vk_ext_fragment_density_map, VK_EXT_FRAGMENT_DENSITY_MAP_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_create_renderpass2, VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_dynamic_rendering, VK_KHR_DYNAMIC_RENDERING_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_zero_initialize_device_memory, Info(&DeviceExtensions::vk_ext_zero_initialize_device_memory,
{{{&DeviceExtensions::vk_khr_get_physical_device_properties2,
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME}}})},
{vvl::Extension::_VK_SEC_pipeline_cache_incremental_mode,
Info(&DeviceExtensions::vk_sec_pipeline_cache_incremental_mode, {})},
{vvl::Extension::_VK_KHR_acceleration_structure,
Info(&DeviceExtensions::vk_khr_acceleration_structure,
{{{&DeviceExtensions::vk_feature_version_1_1, "VK_VERSION_1_1"},
{&DeviceExtensions::vk_ext_descriptor_indexing, VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_buffer_device_address, VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_deferred_host_operations, VK_KHR_DEFERRED_HOST_OPERATIONS_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_ray_tracing_pipeline,
Info(&DeviceExtensions::vk_khr_ray_tracing_pipeline,
{{{&DeviceExtensions::vk_khr_spirv_1_4, VK_KHR_SPIRV_1_4_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_acceleration_structure, VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_KHR_ray_query,
Info(&DeviceExtensions::vk_khr_ray_query,
{{{&DeviceExtensions::vk_khr_spirv_1_4, VK_KHR_SPIRV_1_4_EXTENSION_NAME},
{&DeviceExtensions::vk_khr_acceleration_structure, VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME}}})},
{vvl::Extension::_VK_EXT_mesh_shader,
Info(&DeviceExtensions::vk_ext_mesh_shader, {{{&DeviceExtensions::vk_khr_spirv_1_4, VK_KHR_SPIRV_1_4_EXTENSION_NAME}}})},
};
return info_map;
}
const InstanceExtensions::Info& InstanceExtensions::GetInfo(vvl::Extension extension_name) const {
static const InstanceExtensions::Info empty_info{nullptr, RequirementVec()};
const auto& ext_map = GetInstanceInfoMap();
const auto info = ext_map.find(extension_name);
return (info != ext_map.cend()) ? info->second : empty_info;
}
const DeviceExtensions::Info& DeviceExtensions::GetInfo(vvl::Extension extension_name) const {
static const DeviceExtensions::Info empty_info{nullptr, RequirementVec()};
const auto& ext_map = GetDeviceInfoMap();
const auto info = ext_map.find(extension_name);
return (info != ext_map.cend()) ? info->second : empty_info;
}
// NOLINTEND
|