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
|
// *** THIS FILE IS GENERATED - DO NOT EDIT ***
// See device_features_generator.py for modifications
/***************************************************************************
*
* Copyright (c) 2023-2026 Google Inc.
* Copyright (c) 2023-2026 LunarG, 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
#pragma once
#include <vulkan/vulkan.h>
class APIVersion;
// Union of all features defined in VkPhysicalDevice*Features* structs
struct DeviceFeatures {
// VkPhysicalDevice16BitStorageFeatures, VkPhysicalDeviceVulkan11Features
bool storageBuffer16BitAccess;
// VkPhysicalDevice16BitStorageFeatures, VkPhysicalDeviceVulkan11Features
bool storageInputOutput16;
// VkPhysicalDevice16BitStorageFeatures, VkPhysicalDeviceVulkan11Features
bool storagePushConstant16;
// VkPhysicalDevice16BitStorageFeatures, VkPhysicalDeviceVulkan11Features
bool uniformAndStorageBuffer16BitAccess;
// VkPhysicalDevice4444FormatsFeaturesEXT
bool formatA4B4G4R4;
// VkPhysicalDevice4444FormatsFeaturesEXT
bool formatA4R4G4B4;
// VkPhysicalDevice8BitStorageFeatures, VkPhysicalDeviceVulkan12Features
bool storageBuffer8BitAccess;
// VkPhysicalDevice8BitStorageFeatures, VkPhysicalDeviceVulkan12Features
bool storagePushConstant8;
// VkPhysicalDevice8BitStorageFeatures, VkPhysicalDeviceVulkan12Features
bool uniformAndStorageBuffer8BitAccess;
// VkPhysicalDeviceASTCDecodeFeaturesEXT
bool decodeModeSharedExponent;
// VkPhysicalDeviceAccelerationStructureFeaturesKHR
bool accelerationStructure;
// VkPhysicalDeviceAccelerationStructureFeaturesKHR
bool accelerationStructureCaptureReplay;
// VkPhysicalDeviceAccelerationStructureFeaturesKHR
bool accelerationStructureHostCommands;
// VkPhysicalDeviceAccelerationStructureFeaturesKHR
bool accelerationStructureIndirectBuild;
// VkPhysicalDeviceAccelerationStructureFeaturesKHR
bool descriptorBindingAccelerationStructureUpdateAfterBind;
// VkPhysicalDeviceAddressBindingReportFeaturesEXT
bool reportAddressBinding;
// VkPhysicalDeviceAmigoProfilingFeaturesSEC
bool amigoProfiling;
// VkPhysicalDeviceAntiLagFeaturesAMD
bool antiLag;
// VkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT
bool attachmentFeedbackLoopDynamicState;
// VkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXT
bool attachmentFeedbackLoopLayout;
// VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT
bool advancedBlendCoherentOperations;
// VkPhysicalDeviceBorderColorSwizzleFeaturesEXT
bool borderColorSwizzle;
// VkPhysicalDeviceBorderColorSwizzleFeaturesEXT
bool borderColorSwizzleFromImage;
// VkPhysicalDeviceBufferDeviceAddressFeatures, VkPhysicalDeviceVulkan12Features
bool bufferDeviceAddress;
// VkPhysicalDeviceBufferDeviceAddressFeatures, VkPhysicalDeviceVulkan12Features
bool bufferDeviceAddressCaptureReplay;
// VkPhysicalDeviceBufferDeviceAddressFeatures, VkPhysicalDeviceVulkan12Features
bool bufferDeviceAddressMultiDevice;
// VkPhysicalDeviceBufferDeviceAddressFeaturesEXT
bool bufferDeviceAddressCaptureReplayEXT;
// VkPhysicalDeviceBufferDeviceAddressFeaturesEXT
bool bufferDeviceAddressEXT;
// VkPhysicalDeviceBufferDeviceAddressFeaturesEXT
bool bufferDeviceAddressMultiDeviceEXT;
// VkPhysicalDeviceClusterAccelerationStructureFeaturesNV
bool clusterAccelerationStructure;
// VkPhysicalDeviceClusterCullingShaderFeaturesHUAWEI
bool clustercullingShader;
// VkPhysicalDeviceClusterCullingShaderFeaturesHUAWEI
bool multiviewClusterCullingShader;
// VkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEI
bool clusterShadingRate;
// VkPhysicalDeviceCoherentMemoryFeaturesAMD
bool deviceCoherentMemory;
// VkPhysicalDeviceColorWriteEnableFeaturesEXT
bool colorWriteEnable;
// VkPhysicalDeviceCommandBufferInheritanceFeaturesNV
bool commandBufferInheritance;
// VkPhysicalDeviceComputeOccupancyPriorityFeaturesNV
bool computeOccupancyPriority;
// VkPhysicalDeviceComputeShaderDerivativesFeaturesKHR
bool computeDerivativeGroupLinear;
// VkPhysicalDeviceComputeShaderDerivativesFeaturesKHR
bool computeDerivativeGroupQuads;
// VkPhysicalDeviceConditionalRenderingFeaturesEXT
bool conditionalRendering;
// VkPhysicalDeviceConditionalRenderingFeaturesEXT
bool inheritedConditionalRendering;
// VkPhysicalDeviceCooperativeMatrix2FeaturesNV
bool cooperativeMatrixBlockLoads;
// VkPhysicalDeviceCooperativeMatrix2FeaturesNV
bool cooperativeMatrixConversions;
// VkPhysicalDeviceCooperativeMatrix2FeaturesNV
bool cooperativeMatrixFlexibleDimensions;
// VkPhysicalDeviceCooperativeMatrix2FeaturesNV
bool cooperativeMatrixPerElementOperations;
// VkPhysicalDeviceCooperativeMatrix2FeaturesNV
bool cooperativeMatrixReductions;
// VkPhysicalDeviceCooperativeMatrix2FeaturesNV
bool cooperativeMatrixTensorAddressing;
// VkPhysicalDeviceCooperativeMatrix2FeaturesNV
bool cooperativeMatrixWorkgroupScope;
// VkPhysicalDeviceCooperativeMatrixFeaturesKHR, VkPhysicalDeviceCooperativeMatrixFeaturesNV
bool cooperativeMatrix;
// VkPhysicalDeviceCooperativeMatrixFeaturesKHR, VkPhysicalDeviceCooperativeMatrixFeaturesNV
bool cooperativeMatrixRobustBufferAccess;
// VkPhysicalDeviceCooperativeVectorFeaturesNV
bool cooperativeVector;
// VkPhysicalDeviceCooperativeVectorFeaturesNV
bool cooperativeVectorTraining;
// VkPhysicalDeviceCopyMemoryIndirectFeaturesKHR
bool indirectMemoryCopy;
// VkPhysicalDeviceCopyMemoryIndirectFeaturesKHR
bool indirectMemoryToImageCopy;
// VkPhysicalDeviceCopyMemoryIndirectFeaturesNV
bool indirectCopy;
// VkPhysicalDeviceCornerSampledImageFeaturesNV
bool cornerSampledImage;
// VkPhysicalDeviceCoverageReductionModeFeaturesNV
bool coverageReductionMode;
// VkPhysicalDeviceCubicClampFeaturesQCOM
bool cubicRangeClamp;
// VkPhysicalDeviceCubicWeightsFeaturesQCOM
bool selectableCubicWeights;
// VkPhysicalDeviceCudaKernelLaunchFeaturesNV
bool cudaKernelLaunchFeatures;
// VkPhysicalDeviceCustomBorderColorFeaturesEXT
bool customBorderColorWithoutFormat;
// VkPhysicalDeviceCustomBorderColorFeaturesEXT
bool customBorderColors;
// VkPhysicalDeviceCustomResolveFeaturesEXT
bool customResolve;
// VkPhysicalDeviceDataGraphFeaturesARM
bool dataGraph;
// VkPhysicalDeviceDataGraphFeaturesARM
bool dataGraphDescriptorBuffer;
// VkPhysicalDeviceDataGraphFeaturesARM
bool dataGraphShaderModule;
// VkPhysicalDeviceDataGraphFeaturesARM
bool dataGraphSpecializationConstants;
// VkPhysicalDeviceDataGraphFeaturesARM
bool dataGraphUpdateAfterBind;
// VkPhysicalDeviceDataGraphModelFeaturesQCOM
bool dataGraphModel;
// VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV
bool dedicatedAllocationImageAliasing;
// VkPhysicalDeviceDenseGeometryFormatFeaturesAMDX
bool denseGeometryFormat;
// VkPhysicalDeviceDepthBiasControlFeaturesEXT
bool depthBiasControl;
// VkPhysicalDeviceDepthBiasControlFeaturesEXT
bool depthBiasExact;
// VkPhysicalDeviceDepthBiasControlFeaturesEXT
bool floatRepresentation;
// VkPhysicalDeviceDepthBiasControlFeaturesEXT
bool leastRepresentableValueForceUnormRepresentation;
// VkPhysicalDeviceDepthClampControlFeaturesEXT
bool depthClampControl;
// VkPhysicalDeviceDepthClampZeroOneFeaturesKHR
bool depthClampZeroOne;
// VkPhysicalDeviceDepthClipControlFeaturesEXT
bool depthClipControl;
// VkPhysicalDeviceDepthClipEnableFeaturesEXT
bool depthClipEnable;
// VkPhysicalDeviceDescriptorBufferFeaturesEXT
bool descriptorBuffer;
// VkPhysicalDeviceDescriptorBufferFeaturesEXT
bool descriptorBufferCaptureReplay;
// VkPhysicalDeviceDescriptorBufferFeaturesEXT
bool descriptorBufferImageLayoutIgnored;
// VkPhysicalDeviceDescriptorBufferFeaturesEXT
bool descriptorBufferPushDescriptors;
// VkPhysicalDeviceDescriptorBufferTensorFeaturesARM
bool descriptorBufferTensorDescriptors;
// VkPhysicalDeviceDescriptorHeapFeaturesEXT
bool descriptorHeap;
// VkPhysicalDeviceDescriptorHeapFeaturesEXT
bool descriptorHeapCaptureReplay;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingPartiallyBound;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingSampledImageUpdateAfterBind;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingStorageBufferUpdateAfterBind;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingStorageImageUpdateAfterBind;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingStorageTexelBufferUpdateAfterBind;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingUniformBufferUpdateAfterBind;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingUniformTexelBufferUpdateAfterBind;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingUpdateUnusedWhilePending;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool descriptorBindingVariableDescriptorCount;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool runtimeDescriptorArray;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderInputAttachmentArrayDynamicIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderInputAttachmentArrayNonUniformIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderSampledImageArrayNonUniformIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderStorageBufferArrayNonUniformIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderStorageImageArrayNonUniformIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderStorageTexelBufferArrayDynamicIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderStorageTexelBufferArrayNonUniformIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderUniformBufferArrayNonUniformIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderUniformTexelBufferArrayDynamicIndexing;
// VkPhysicalDeviceDescriptorIndexingFeatures, VkPhysicalDeviceVulkan12Features
bool shaderUniformTexelBufferArrayNonUniformIndexing;
// VkPhysicalDeviceDescriptorPoolOverallocationFeaturesNV
bool descriptorPoolOverallocation;
// VkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE
bool descriptorSetHostMapping;
// VkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV
bool deviceGeneratedCompute;
// VkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV
bool deviceGeneratedComputeCaptureReplay;
// VkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV
bool deviceGeneratedComputePipelines;
// VkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXT
bool deviceGeneratedCommands;
// VkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXT
bool dynamicGeneratedPipelineLayout;
// VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV
bool deviceGeneratedCommandsNV;
// VkPhysicalDeviceDeviceMemoryReportFeaturesEXT
bool deviceMemoryReport;
// VkPhysicalDeviceDiagnosticsConfigFeaturesNV
bool diagnosticsConfig;
// VkPhysicalDeviceDisplacementMicromapFeaturesNV
bool displacementMicromap;
// VkPhysicalDeviceDynamicRenderingFeatures, VkPhysicalDeviceVulkan13Features
bool dynamicRendering;
// VkPhysicalDeviceDynamicRenderingLocalReadFeatures, VkPhysicalDeviceVulkan14Features
bool dynamicRenderingLocalRead;
// VkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT
bool dynamicRenderingUnusedAttachments;
// VkPhysicalDeviceExclusiveScissorFeaturesNV
bool exclusiveScissor;
// VkPhysicalDeviceExtendedDynamicState2FeaturesEXT
bool extendedDynamicState2;
// VkPhysicalDeviceExtendedDynamicState2FeaturesEXT
bool extendedDynamicState2LogicOp;
// VkPhysicalDeviceExtendedDynamicState2FeaturesEXT
bool extendedDynamicState2PatchControlPoints;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3AlphaToCoverageEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3AlphaToOneEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ColorBlendAdvanced;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ColorBlendEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ColorBlendEquation;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ColorWriteMask;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ConservativeRasterizationMode;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3CoverageModulationMode;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3CoverageModulationTable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3CoverageModulationTableEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3CoverageReductionMode;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3CoverageToColorEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3CoverageToColorLocation;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3DepthClampEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3DepthClipEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3DepthClipNegativeOneToOne;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ExtraPrimitiveOverestimationSize;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3LineRasterizationMode;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3LineStippleEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3LogicOpEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3PolygonMode;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ProvokingVertexMode;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3RasterizationSamples;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3RasterizationStream;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3RepresentativeFragmentTestEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3SampleLocationsEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3SampleMask;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ShadingRateImageEnable;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3TessellationDomainOrigin;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ViewportSwizzle;
// VkPhysicalDeviceExtendedDynamicState3FeaturesEXT
bool extendedDynamicState3ViewportWScalingEnable;
// VkPhysicalDeviceExtendedDynamicStateFeaturesEXT
bool extendedDynamicState;
// VkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNV
bool extendedSparseAddressSpace;
// VkPhysicalDeviceExternalFormatResolveFeaturesANDROID
bool externalFormatResolve;
// VkPhysicalDeviceExternalMemoryRDMAFeaturesNV
bool externalMemoryRDMA;
// VkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNX
bool screenBufferImport;
// VkPhysicalDeviceFaultFeaturesEXT
bool deviceFault;
// VkPhysicalDeviceFaultFeaturesEXT
bool deviceFaultVendorBinary;
// VkPhysicalDeviceFeatures
bool alphaToOne;
// VkPhysicalDeviceFeatures
bool depthBiasClamp;
// VkPhysicalDeviceFeatures
bool depthBounds;
// VkPhysicalDeviceFeatures
bool depthClamp;
// VkPhysicalDeviceFeatures
bool drawIndirectFirstInstance;
// VkPhysicalDeviceFeatures
bool dualSrcBlend;
// VkPhysicalDeviceFeatures
bool fillModeNonSolid;
// VkPhysicalDeviceFeatures
bool fragmentStoresAndAtomics;
// VkPhysicalDeviceFeatures
bool fullDrawIndexUint32;
// VkPhysicalDeviceFeatures
bool geometryShader;
// VkPhysicalDeviceFeatures
bool imageCubeArray;
// VkPhysicalDeviceFeatures
bool independentBlend;
// VkPhysicalDeviceFeatures
bool inheritedQueries;
// VkPhysicalDeviceFeatures
bool largePoints;
// VkPhysicalDeviceFeatures
bool logicOp;
// VkPhysicalDeviceFeatures
bool multiDrawIndirect;
// VkPhysicalDeviceFeatures
bool multiViewport;
// VkPhysicalDeviceFeatures
bool occlusionQueryPrecise;
// VkPhysicalDeviceFeatures
bool pipelineStatisticsQuery;
// VkPhysicalDeviceFeatures
bool robustBufferAccess;
// VkPhysicalDeviceFeatures
bool sampleRateShading;
// VkPhysicalDeviceFeatures
bool samplerAnisotropy;
// VkPhysicalDeviceFeatures
bool shaderClipDistance;
// VkPhysicalDeviceFeatures
bool shaderCullDistance;
// VkPhysicalDeviceFeatures
bool shaderFloat64;
// VkPhysicalDeviceFeatures
bool shaderImageGatherExtended;
// VkPhysicalDeviceFeatures
bool shaderInt16;
// VkPhysicalDeviceFeatures
bool shaderInt64;
// VkPhysicalDeviceFeatures
bool shaderResourceMinLod;
// VkPhysicalDeviceFeatures
bool shaderResourceResidency;
// VkPhysicalDeviceFeatures
bool shaderSampledImageArrayDynamicIndexing;
// VkPhysicalDeviceFeatures
bool shaderStorageBufferArrayDynamicIndexing;
// VkPhysicalDeviceFeatures
bool shaderStorageImageArrayDynamicIndexing;
// VkPhysicalDeviceFeatures
bool shaderStorageImageExtendedFormats;
// VkPhysicalDeviceFeatures
bool shaderStorageImageMultisample;
// VkPhysicalDeviceFeatures
bool shaderStorageImageReadWithoutFormat;
// VkPhysicalDeviceFeatures
bool shaderStorageImageWriteWithoutFormat;
// VkPhysicalDeviceFeatures
bool shaderTessellationAndGeometryPointSize;
// VkPhysicalDeviceFeatures
bool shaderUniformBufferArrayDynamicIndexing;
// VkPhysicalDeviceFeatures
bool sparseBinding;
// VkPhysicalDeviceFeatures
bool sparseResidency16Samples;
// VkPhysicalDeviceFeatures
bool sparseResidency2Samples;
// VkPhysicalDeviceFeatures
bool sparseResidency4Samples;
// VkPhysicalDeviceFeatures
bool sparseResidency8Samples;
// VkPhysicalDeviceFeatures
bool sparseResidencyAliased;
// VkPhysicalDeviceFeatures
bool sparseResidencyBuffer;
// VkPhysicalDeviceFeatures
bool sparseResidencyImage2D;
// VkPhysicalDeviceFeatures
bool sparseResidencyImage3D;
// VkPhysicalDeviceFeatures
bool tessellationShader;
// VkPhysicalDeviceFeatures
bool textureCompressionASTC_LDR;
// VkPhysicalDeviceFeatures
bool textureCompressionBC;
// VkPhysicalDeviceFeatures
bool textureCompressionETC2;
// VkPhysicalDeviceFeatures
bool variableMultisampleRate;
// VkPhysicalDeviceFeatures
bool vertexPipelineStoresAndAtomics;
// VkPhysicalDeviceFeatures
bool wideLines;
// VkPhysicalDeviceFormatPackFeaturesARM
bool formatPack;
// VkPhysicalDeviceFragmentDensityMap2FeaturesEXT
bool fragmentDensityMapDeferred;
// VkPhysicalDeviceFragmentDensityMapFeaturesEXT
bool fragmentDensityMap;
// VkPhysicalDeviceFragmentDensityMapFeaturesEXT
bool fragmentDensityMapDynamic;
// VkPhysicalDeviceFragmentDensityMapFeaturesEXT
bool fragmentDensityMapNonSubsampledImages;
// VkPhysicalDeviceFragmentDensityMapLayeredFeaturesVALVE
bool fragmentDensityMapLayered;
// VkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXT
bool fragmentDensityMapOffset;
// VkPhysicalDeviceFragmentShaderBarycentricFeaturesKHR
bool fragmentShaderBarycentric;
// VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT
bool fragmentShaderPixelInterlock;
// VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT
bool fragmentShaderSampleInterlock;
// VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT
bool fragmentShaderShadingRateInterlock;
// VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
bool fragmentShadingRateEnums;
// VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
bool noInvocationFragmentShadingRates;
// VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
bool supersampleFragmentShadingRates;
// VkPhysicalDeviceFragmentShadingRateFeaturesKHR
bool attachmentFragmentShadingRate;
// VkPhysicalDeviceFragmentShadingRateFeaturesKHR
bool pipelineFragmentShadingRate;
// VkPhysicalDeviceFragmentShadingRateFeaturesKHR
bool primitiveFragmentShadingRate;
// VkPhysicalDeviceFrameBoundaryFeaturesEXT
bool frameBoundary;
// VkPhysicalDeviceGlobalPriorityQueryFeatures, VkPhysicalDeviceVulkan14Features
bool globalPriorityQuery;
// VkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXT
bool graphicsPipelineLibrary;
// VkPhysicalDeviceHdrVividFeaturesHUAWEI
bool hdrVivid;
// VkPhysicalDeviceHostImageCopyFeatures, VkPhysicalDeviceVulkan14Features
bool hostImageCopy;
// VkPhysicalDeviceHostQueryResetFeatures, VkPhysicalDeviceVulkan12Features
bool hostQueryReset;
// VkPhysicalDeviceImage2DViewOf3DFeaturesEXT
bool image2DViewOf3D;
// VkPhysicalDeviceImage2DViewOf3DFeaturesEXT
bool sampler2DViewOf3D;
// VkPhysicalDeviceImageAlignmentControlFeaturesMESA
bool imageAlignmentControl;
// VkPhysicalDeviceImageCompressionControlFeaturesEXT
bool imageCompressionControl;
// VkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXT
bool imageCompressionControlSwapchain;
// VkPhysicalDeviceImageProcessing2FeaturesQCOM
bool textureBlockMatch2;
// VkPhysicalDeviceImageProcessingFeaturesQCOM
bool textureBlockMatch;
// VkPhysicalDeviceImageProcessingFeaturesQCOM
bool textureBoxFilter;
// VkPhysicalDeviceImageProcessingFeaturesQCOM
bool textureSampleWeighted;
// VkPhysicalDeviceImageRobustnessFeatures, VkPhysicalDeviceVulkan13Features
bool robustImageAccess;
// VkPhysicalDeviceImageSlicedViewOf3DFeaturesEXT
bool imageSlicedViewOf3D;
// VkPhysicalDeviceImageViewMinLodFeaturesEXT
bool minLod;
// VkPhysicalDeviceImagelessFramebufferFeatures, VkPhysicalDeviceVulkan12Features
bool imagelessFramebuffer;
// VkPhysicalDeviceIndexTypeUint8Features, VkPhysicalDeviceVulkan14Features
bool indexTypeUint8;
// VkPhysicalDeviceInheritedViewportScissorFeaturesNV
bool inheritedViewportScissor2D;
// VkPhysicalDeviceInlineUniformBlockFeatures, VkPhysicalDeviceVulkan13Features
bool descriptorBindingInlineUniformBlockUpdateAfterBind;
// VkPhysicalDeviceInlineUniformBlockFeatures, VkPhysicalDeviceVulkan13Features
bool inlineUniformBlock;
// VkPhysicalDeviceInternallySynchronizedQueuesFeaturesKHR
bool internallySynchronizedQueues;
// VkPhysicalDeviceInvocationMaskFeaturesHUAWEI
bool invocationMask;
// VkPhysicalDeviceLegacyDitheringFeaturesEXT
bool legacyDithering;
// VkPhysicalDeviceLegacyVertexAttributesFeaturesEXT
bool legacyVertexAttributes;
// VkPhysicalDeviceLineRasterizationFeatures, VkPhysicalDeviceVulkan14Features
bool bresenhamLines;
// VkPhysicalDeviceLineRasterizationFeatures, VkPhysicalDeviceVulkan14Features
bool rectangularLines;
// VkPhysicalDeviceLineRasterizationFeatures, VkPhysicalDeviceVulkan14Features
bool smoothLines;
// VkPhysicalDeviceLineRasterizationFeatures, VkPhysicalDeviceVulkan14Features
bool stippledBresenhamLines;
// VkPhysicalDeviceLineRasterizationFeatures, VkPhysicalDeviceVulkan14Features
bool stippledRectangularLines;
// VkPhysicalDeviceLineRasterizationFeatures, VkPhysicalDeviceVulkan14Features
bool stippledSmoothLines;
// VkPhysicalDeviceLinearColorAttachmentFeaturesNV
bool linearColorAttachment;
// VkPhysicalDeviceMaintenance10FeaturesKHR
bool maintenance10;
// VkPhysicalDeviceMaintenance4Features, VkPhysicalDeviceVulkan13Features
bool maintenance4;
// VkPhysicalDeviceMaintenance5Features, VkPhysicalDeviceVulkan14Features
bool maintenance5;
// VkPhysicalDeviceMaintenance6Features, VkPhysicalDeviceVulkan14Features
bool maintenance6;
// VkPhysicalDeviceMaintenance7FeaturesKHR
bool maintenance7;
// VkPhysicalDeviceMaintenance8FeaturesKHR
bool maintenance8;
// VkPhysicalDeviceMaintenance9FeaturesKHR
bool maintenance9;
// VkPhysicalDeviceMapMemoryPlacedFeaturesEXT
bool memoryMapPlaced;
// VkPhysicalDeviceMapMemoryPlacedFeaturesEXT
bool memoryMapRangePlaced;
// VkPhysicalDeviceMapMemoryPlacedFeaturesEXT
bool memoryUnmapReserve;
// VkPhysicalDeviceMemoryDecompressionFeaturesEXT
bool memoryDecompression;
// VkPhysicalDeviceMemoryPriorityFeaturesEXT
bool memoryPriority;
// VkPhysicalDeviceMeshShaderFeaturesEXT
bool meshShaderQueries;
// VkPhysicalDeviceMeshShaderFeaturesEXT
bool multiviewMeshShader;
// VkPhysicalDeviceMeshShaderFeaturesEXT
bool primitiveFragmentShadingRateMeshShader;
// VkPhysicalDeviceMeshShaderFeaturesEXT, VkPhysicalDeviceMeshShaderFeaturesNV
bool meshShader;
// VkPhysicalDeviceMeshShaderFeaturesEXT, VkPhysicalDeviceMeshShaderFeaturesNV
bool taskShader;
// VkPhysicalDeviceMultiDrawFeaturesEXT
bool multiDraw;
// VkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXT
bool multisampledRenderToSingleSampled;
// VkPhysicalDeviceMultiviewFeatures, VkPhysicalDeviceVulkan11Features
bool multiview;
// VkPhysicalDeviceMultiviewFeatures, VkPhysicalDeviceVulkan11Features
bool multiviewGeometryShader;
// VkPhysicalDeviceMultiviewFeatures, VkPhysicalDeviceVulkan11Features
bool multiviewTessellationShader;
// VkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM
bool multiviewPerViewRenderAreas;
// VkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOM
bool multiviewPerViewViewports;
// VkPhysicalDeviceMutableDescriptorTypeFeaturesEXT
bool mutableDescriptorType;
// VkPhysicalDeviceNestedCommandBufferFeaturesEXT
bool nestedCommandBuffer;
// VkPhysicalDeviceNestedCommandBufferFeaturesEXT
bool nestedCommandBufferRendering;
// VkPhysicalDeviceNestedCommandBufferFeaturesEXT
bool nestedCommandBufferSimultaneousUse;
// VkPhysicalDeviceNonSeamlessCubeMapFeaturesEXT
bool nonSeamlessCubeMap;
// VkPhysicalDeviceOpacityMicromapFeaturesEXT
bool micromap;
// VkPhysicalDeviceOpacityMicromapFeaturesEXT
bool micromapCaptureReplay;
// VkPhysicalDeviceOpacityMicromapFeaturesEXT
bool micromapHostCommands;
// VkPhysicalDeviceOpticalFlowFeaturesNV
bool opticalFlow;
// VkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT
bool pageableDeviceLocalMemory;
// VkPhysicalDevicePartitionedAccelerationStructureFeaturesNV
bool partitionedAccelerationStructure;
// VkPhysicalDevicePerStageDescriptorSetFeaturesNV
bool dynamicPipelineLayout;
// VkPhysicalDevicePerStageDescriptorSetFeaturesNV
bool perStageDescriptorSet;
// VkPhysicalDevicePerformanceCountersByRegionFeaturesARM
bool performanceCountersByRegion;
// VkPhysicalDevicePerformanceQueryFeaturesKHR
bool performanceCounterMultipleQueryPools;
// VkPhysicalDevicePerformanceQueryFeaturesKHR
bool performanceCounterQueryPools;
// VkPhysicalDevicePipelineBinaryFeaturesKHR
bool pipelineBinaries;
// VkPhysicalDevicePipelineCacheIncrementalModeFeaturesSEC
bool pipelineCacheIncrementalMode;
// VkPhysicalDevicePipelineCreationCacheControlFeatures, VkPhysicalDeviceVulkan13Features
bool pipelineCreationCacheControl;
// VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR
bool pipelineExecutableInfo;
// VkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT
bool pipelineLibraryGroupHandles;
// VkPhysicalDevicePipelineOpacityMicromapFeaturesARM
bool pipelineOpacityMicromap;
// VkPhysicalDevicePipelinePropertiesFeaturesEXT
bool pipelinePropertiesIdentifier;
// VkPhysicalDevicePipelineProtectedAccessFeatures, VkPhysicalDeviceVulkan14Features
bool pipelineProtectedAccess;
// VkPhysicalDevicePipelineRobustnessFeatures, VkPhysicalDeviceVulkan14Features
bool pipelineRobustness;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool constantAlphaColorBlendFactors;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool events;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool imageView2DOn3DImage;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool imageViewFormatReinterpretation;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool imageViewFormatSwizzle;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool multisampleArrayImage;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool mutableComparisonSamplers;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool pointPolygons;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool samplerMipLodBias;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool separateStencilMaskRef;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool shaderSampleRateInterpolationFunctions;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool tessellationIsolines;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool tessellationPointMode;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool triangleFans;
// VkPhysicalDevicePortabilitySubsetFeaturesKHR
bool vertexAttributeAccessBeyondStride;
// VkPhysicalDevicePresentBarrierFeaturesNV
bool presentBarrier;
// VkPhysicalDevicePresentId2FeaturesKHR
bool presentId2;
// VkPhysicalDevicePresentIdFeaturesKHR
bool presentId;
// VkPhysicalDevicePresentMeteringFeaturesNV
bool presentMetering;
// VkPhysicalDevicePresentModeFifoLatestReadyFeaturesKHR
bool presentModeFifoLatestReady;
// VkPhysicalDevicePresentTimingFeaturesEXT
bool presentAtAbsoluteTime;
// VkPhysicalDevicePresentTimingFeaturesEXT
bool presentAtRelativeTime;
// VkPhysicalDevicePresentTimingFeaturesEXT
bool presentTiming;
// VkPhysicalDevicePresentWait2FeaturesKHR
bool presentWait2;
// VkPhysicalDevicePresentWaitFeaturesKHR
bool presentWait;
// VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT
bool primitiveTopologyListRestart;
// VkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT
bool primitiveTopologyPatchListRestart;
// VkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT
bool primitivesGeneratedQuery;
// VkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT
bool primitivesGeneratedQueryWithNonZeroStreams;
// VkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT
bool primitivesGeneratedQueryWithRasterizerDiscard;
// VkPhysicalDevicePrivateDataFeatures, VkPhysicalDeviceVulkan13Features
bool privateData;
// VkPhysicalDeviceProtectedMemoryFeatures, VkPhysicalDeviceVulkan11Features
bool protectedMemory;
// VkPhysicalDeviceProvokingVertexFeaturesEXT
bool provokingVertexLast;
// VkPhysicalDeviceProvokingVertexFeaturesEXT
bool transformFeedbackPreservesProvokingVertex;
// VkPhysicalDevicePushConstantBankFeaturesNV
bool pushConstantBank;
// VkPhysicalDeviceRGBA10X6FormatsFeaturesEXT
bool formatRgba10x6WithoutYCbCrSampler;
// VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT
bool rasterizationOrderColorAttachmentAccess;
// VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT
bool rasterizationOrderDepthAttachmentAccess;
// VkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT
bool rasterizationOrderStencilAttachmentAccess;
// VkPhysicalDeviceRawAccessChainsFeaturesNV
bool shaderRawAccessChains;
// VkPhysicalDeviceRayQueryFeaturesKHR
bool rayQuery;
// VkPhysicalDeviceRayTracingInvocationReorderFeaturesEXT, VkPhysicalDeviceRayTracingInvocationReorderFeaturesNV
bool rayTracingInvocationReorder;
// VkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNV
bool linearSweptSpheres;
// VkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNV
bool spheres;
// VkPhysicalDeviceRayTracingMaintenance1FeaturesKHR
bool rayTracingMaintenance1;
// VkPhysicalDeviceRayTracingMaintenance1FeaturesKHR
bool rayTracingPipelineTraceRaysIndirect2;
// VkPhysicalDeviceRayTracingMotionBlurFeaturesNV
bool rayTracingMotionBlur;
// VkPhysicalDeviceRayTracingMotionBlurFeaturesNV
bool rayTracingMotionBlurPipelineTraceRaysIndirect;
// VkPhysicalDeviceRayTracingPipelineFeaturesKHR
bool rayTracingPipeline;
// VkPhysicalDeviceRayTracingPipelineFeaturesKHR
bool rayTracingPipelineShaderGroupHandleCaptureReplay;
// VkPhysicalDeviceRayTracingPipelineFeaturesKHR
bool rayTracingPipelineShaderGroupHandleCaptureReplayMixed;
// VkPhysicalDeviceRayTracingPipelineFeaturesKHR
bool rayTracingPipelineTraceRaysIndirect;
// VkPhysicalDeviceRayTracingPipelineFeaturesKHR
bool rayTraversalPrimitiveCulling;
// VkPhysicalDeviceRayTracingPositionFetchFeaturesKHR
bool rayTracingPositionFetch;
// VkPhysicalDeviceRayTracingValidationFeaturesNV
bool rayTracingValidation;
// VkPhysicalDeviceRelaxedLineRasterizationFeaturesIMG
bool relaxedLineRasterization;
// VkPhysicalDeviceRenderPassStripedFeaturesARM
bool renderPassStriped;
// VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV
bool representativeFragmentTest;
// VkPhysicalDeviceRobustness2FeaturesKHR
bool nullDescriptor;
// VkPhysicalDeviceRobustness2FeaturesKHR
bool robustBufferAccess2;
// VkPhysicalDeviceRobustness2FeaturesKHR
bool robustImageAccess2;
// VkPhysicalDeviceSamplerYcbcrConversionFeatures, VkPhysicalDeviceVulkan11Features
bool samplerYcbcrConversion;
// VkPhysicalDeviceScalarBlockLayoutFeatures, VkPhysicalDeviceVulkan12Features
bool scalarBlockLayout;
// VkPhysicalDeviceSchedulingControlsFeaturesARM
bool schedulingControls;
// VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures, VkPhysicalDeviceVulkan12Features
bool separateDepthStencilLayouts;
// VkPhysicalDeviceShader64BitIndexingFeaturesEXT
bool shader64BitIndexing;
// VkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNV
bool shaderFloat16VectorAtomics;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderBufferFloat16AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderBufferFloat16AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderBufferFloat16Atomics;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderBufferFloat32AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderBufferFloat64AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderImageFloat32AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderSharedFloat16AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderSharedFloat16AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderSharedFloat16Atomics;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderSharedFloat32AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool shaderSharedFloat64AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
bool sparseImageFloat32AtomicMinMax;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderBufferFloat32AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderBufferFloat32Atomics;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderBufferFloat64AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderBufferFloat64Atomics;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderImageFloat32AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderImageFloat32Atomics;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderSharedFloat32AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderSharedFloat32Atomics;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderSharedFloat64AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool shaderSharedFloat64Atomics;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool sparseImageFloat32AtomicAdd;
// VkPhysicalDeviceShaderAtomicFloatFeaturesEXT
bool sparseImageFloat32Atomics;
// VkPhysicalDeviceShaderAtomicInt64Features, VkPhysicalDeviceVulkan12Features
bool shaderBufferInt64Atomics;
// VkPhysicalDeviceShaderAtomicInt64Features, VkPhysicalDeviceVulkan12Features
bool shaderSharedInt64Atomics;
// VkPhysicalDeviceShaderBfloat16FeaturesKHR
bool shaderBFloat16CooperativeMatrix;
// VkPhysicalDeviceShaderBfloat16FeaturesKHR
bool shaderBFloat16DotProduct;
// VkPhysicalDeviceShaderBfloat16FeaturesKHR
bool shaderBFloat16Type;
// VkPhysicalDeviceShaderClockFeaturesKHR
bool shaderDeviceClock;
// VkPhysicalDeviceShaderClockFeaturesKHR
bool shaderSubgroupClock;
// VkPhysicalDeviceShaderCoreBuiltinsFeaturesARM
bool shaderCoreBuiltins;
// VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures, VkPhysicalDeviceVulkan13Features
bool shaderDemoteToHelperInvocation;
// VkPhysicalDeviceShaderDrawParametersFeatures, VkPhysicalDeviceVulkan11Features
bool shaderDrawParameters;
// VkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD
bool shaderEarlyAndLateFragmentTests;
// VkPhysicalDeviceShaderEnqueueFeaturesAMDX
bool shaderEnqueue;
// VkPhysicalDeviceShaderEnqueueFeaturesAMDX
bool shaderMeshEnqueue;
// VkPhysicalDeviceShaderExpectAssumeFeatures, VkPhysicalDeviceVulkan14Features
bool shaderExpectAssume;
// VkPhysicalDeviceShaderFloat16Int8Features, VkPhysicalDeviceVulkan12Features
bool shaderFloat16;
// VkPhysicalDeviceShaderFloat16Int8Features, VkPhysicalDeviceVulkan12Features
bool shaderInt8;
// VkPhysicalDeviceShaderFloat8FeaturesEXT
bool shaderFloat8;
// VkPhysicalDeviceShaderFloat8FeaturesEXT
bool shaderFloat8CooperativeMatrix;
// VkPhysicalDeviceShaderFloatControls2Features, VkPhysicalDeviceVulkan14Features
bool shaderFloatControls2;
// VkPhysicalDeviceShaderFmaFeaturesKHR
bool shaderFmaFloat16;
// VkPhysicalDeviceShaderFmaFeaturesKHR
bool shaderFmaFloat32;
// VkPhysicalDeviceShaderFmaFeaturesKHR
bool shaderFmaFloat64;
// VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT
bool shaderImageInt64Atomics;
// VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT
bool sparseImageInt64Atomics;
// VkPhysicalDeviceShaderImageFootprintFeaturesNV
bool imageFootprint;
// VkPhysicalDeviceShaderIntegerDotProductFeatures, VkPhysicalDeviceVulkan13Features
bool shaderIntegerDotProduct;
// VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL
bool shaderIntegerFunctions2;
// VkPhysicalDeviceShaderLongVectorFeaturesEXT
bool longVector;
// VkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHR
bool shaderMaximalReconvergence;
// VkPhysicalDeviceShaderModuleIdentifierFeaturesEXT
bool shaderModuleIdentifier;
// VkPhysicalDeviceShaderObjectFeaturesEXT
bool shaderObject;
// VkPhysicalDeviceShaderQuadControlFeaturesKHR
bool shaderQuadControl;
// VkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHR
bool shaderRelaxedExtendedInstruction;
// VkPhysicalDeviceShaderReplicatedCompositesFeaturesEXT
bool shaderReplicatedComposites;
// VkPhysicalDeviceShaderSMBuiltinsFeaturesNV
bool shaderSMBuiltins;
// VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures, VkPhysicalDeviceVulkan12Features
bool shaderSubgroupExtendedTypes;
// VkPhysicalDeviceShaderSubgroupPartitionedFeaturesEXT
bool shaderSubgroupPartitioned;
// VkPhysicalDeviceShaderSubgroupRotateFeatures, VkPhysicalDeviceVulkan14Features
bool shaderSubgroupRotate;
// VkPhysicalDeviceShaderSubgroupRotateFeatures, VkPhysicalDeviceVulkan14Features
bool shaderSubgroupRotateClustered;
// VkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR
bool shaderSubgroupUniformControlFlow;
// VkPhysicalDeviceShaderTerminateInvocationFeatures, VkPhysicalDeviceVulkan13Features
bool shaderTerminateInvocation;
// VkPhysicalDeviceShaderTileImageFeaturesEXT
bool shaderTileImageColorReadAccess;
// VkPhysicalDeviceShaderTileImageFeaturesEXT
bool shaderTileImageDepthReadAccess;
// VkPhysicalDeviceShaderTileImageFeaturesEXT
bool shaderTileImageStencilReadAccess;
// VkPhysicalDeviceShaderUniformBufferUnsizedArrayFeaturesEXT
bool shaderUniformBufferUnsizedArray;
// VkPhysicalDeviceShaderUntypedPointersFeaturesKHR
bool shaderUntypedPointers;
// VkPhysicalDeviceShadingRateImageFeaturesNV
bool shadingRateCoarseSampleOrder;
// VkPhysicalDeviceShadingRateImageFeaturesNV
bool shadingRateImage;
// VkPhysicalDeviceSubgroupSizeControlFeatures, VkPhysicalDeviceVulkan13Features
bool computeFullSubgroups;
// VkPhysicalDeviceSubgroupSizeControlFeatures, VkPhysicalDeviceVulkan13Features
bool subgroupSizeControl;
// VkPhysicalDeviceSubpassMergeFeedbackFeaturesEXT
bool subpassMergeFeedback;
// VkPhysicalDeviceSubpassShadingFeaturesHUAWEI
bool subpassShading;
// VkPhysicalDeviceSwapchainMaintenance1FeaturesKHR
bool swapchainMaintenance1;
// VkPhysicalDeviceSynchronization2Features, VkPhysicalDeviceVulkan13Features
bool synchronization2;
// VkPhysicalDeviceTensorFeaturesARM
bool descriptorBindingStorageTensorUpdateAfterBind;
// VkPhysicalDeviceTensorFeaturesARM
bool shaderStorageTensorArrayDynamicIndexing;
// VkPhysicalDeviceTensorFeaturesARM
bool shaderStorageTensorArrayNonUniformIndexing;
// VkPhysicalDeviceTensorFeaturesARM
bool shaderTensorAccess;
// VkPhysicalDeviceTensorFeaturesARM
bool tensorNonPacked;
// VkPhysicalDeviceTensorFeaturesARM
bool tensors;
// VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT
bool texelBufferAlignment;
// VkPhysicalDeviceTextureCompressionASTC3DFeaturesEXT
bool textureCompressionASTC_3D;
// VkPhysicalDeviceTextureCompressionASTCHDRFeatures, VkPhysicalDeviceVulkan13Features
bool textureCompressionASTC_HDR;
// VkPhysicalDeviceTileMemoryHeapFeaturesQCOM
bool tileMemoryHeap;
// VkPhysicalDeviceTilePropertiesFeaturesQCOM
bool tileProperties;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShading;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingAnisotropicApron;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingApron;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingAtomicOps;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingColorAttachments;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingDepthAttachments;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingDispatchTile;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingFragmentStage;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingImageProcessing;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingInputAttachments;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingPerTileDispatch;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingPerTileDraw;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingSampledAttachments;
// VkPhysicalDeviceTileShadingFeaturesQCOM
bool tileShadingStencilAttachments;
// VkPhysicalDeviceTimelineSemaphoreFeatures, VkPhysicalDeviceVulkan12Features
bool timelineSemaphore;
// VkPhysicalDeviceTransformFeedbackFeaturesEXT
bool geometryStreams;
// VkPhysicalDeviceTransformFeedbackFeaturesEXT
bool transformFeedback;
// VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR
bool unifiedImageLayouts;
// VkPhysicalDeviceUnifiedImageLayoutsFeaturesKHR
bool unifiedImageLayoutsVideo;
// VkPhysicalDeviceUniformBufferStandardLayoutFeatures, VkPhysicalDeviceVulkan12Features
bool uniformBufferStandardLayout;
// VkPhysicalDeviceVariablePointersFeatures, VkPhysicalDeviceVulkan11Features
bool variablePointers;
// VkPhysicalDeviceVariablePointersFeatures, VkPhysicalDeviceVulkan11Features
bool variablePointersStorageBuffer;
// VkPhysicalDeviceVertexAttributeDivisorFeatures, VkPhysicalDeviceVulkan14Features
bool vertexAttributeInstanceRateDivisor;
// VkPhysicalDeviceVertexAttributeDivisorFeatures, VkPhysicalDeviceVulkan14Features
bool vertexAttributeInstanceRateZeroDivisor;
// VkPhysicalDeviceVertexAttributeRobustnessFeaturesEXT
bool vertexAttributeRobustness;
// VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT
bool vertexInputDynamicState;
// VkPhysicalDeviceVideoDecodeVP9FeaturesKHR
bool videoDecodeVP9;
// VkPhysicalDeviceVideoEncodeAV1FeaturesKHR
bool videoEncodeAV1;
// VkPhysicalDeviceVideoEncodeIntraRefreshFeaturesKHR
bool videoEncodeIntraRefresh;
// VkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHR
bool videoEncodeQuantizationMap;
// VkPhysicalDeviceVideoEncodeRgbConversionFeaturesVALVE
bool videoEncodeRgbConversion;
// VkPhysicalDeviceVideoMaintenance1FeaturesKHR
bool videoMaintenance1;
// VkPhysicalDeviceVideoMaintenance2FeaturesKHR
bool videoMaintenance2;
// VkPhysicalDeviceVulkan12Features
bool descriptorIndexing;
// VkPhysicalDeviceVulkan12Features
bool drawIndirectCount;
// VkPhysicalDeviceVulkan12Features
bool samplerFilterMinmax;
// VkPhysicalDeviceVulkan12Features
bool samplerMirrorClampToEdge;
// VkPhysicalDeviceVulkan12Features
bool shaderOutputLayer;
// VkPhysicalDeviceVulkan12Features
bool shaderOutputViewportIndex;
// VkPhysicalDeviceVulkan12Features
bool subgroupBroadcastDynamicId;
// VkPhysicalDeviceVulkan12Features, VkPhysicalDeviceVulkanMemoryModelFeatures
bool vulkanMemoryModel;
// VkPhysicalDeviceVulkan12Features, VkPhysicalDeviceVulkanMemoryModelFeatures
bool vulkanMemoryModelAvailabilityVisibilityChains;
// VkPhysicalDeviceVulkan12Features, VkPhysicalDeviceVulkanMemoryModelFeatures
bool vulkanMemoryModelDeviceScope;
// VkPhysicalDeviceVulkan13Features, VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures
bool shaderZeroInitializeWorkgroupMemory;
// VkPhysicalDeviceVulkan14Features
bool pushDescriptor;
// VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR
bool workgroupMemoryExplicitLayout;
// VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR
bool workgroupMemoryExplicitLayout16BitAccess;
// VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR
bool workgroupMemoryExplicitLayout8BitAccess;
// VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR
bool workgroupMemoryExplicitLayoutScalarBlockLayout;
// VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT
bool ycbcr2plane444Formats;
// VkPhysicalDeviceYcbcrDegammaFeaturesQCOM
bool ycbcrDegamma;
// VkPhysicalDeviceYcbcrImageArraysFeaturesEXT
bool ycbcrImageArrays;
// VkPhysicalDeviceZeroInitializeDeviceMemoryFeaturesEXT
bool zeroInitializeDeviceMemory;
};
void GetEnabledDeviceFeatures(const VkDeviceCreateInfo *pCreateInfo, DeviceFeatures *features, const APIVersion &api_version);
// NOLINTEND
|