Package club.doki7.vulkan.datatype
Structure (struct or union) types of Vulkan API.
Quick start
In vulkan4j ecosystem, structures are represented with a Java record type containing
a single MemorySegment field. That segment is the
pointer to the first byte of the structure in native memory.
To allocate a structure, you can use the allocate series functions:
try (Arena arena = Arena.ofConfined()) {
// Allocate one structure, sType will be initialized automatically by allocate function
VkBufferCreateInfo info = VkBufferCreateInfo.allocate(arena);
useSingleBufferCreateInfo(info);
// Single structure is also usable by C API intaking an array of / a pointer to structures.
// This is implemented via interface IVkBufferCreateInfo unifying both types.
useBufferCreateInfo(info, 1);
// Allocate multiple structures in a continuous memory block
// all the structures will be initialized automatically, too
VkBufferCreateInfo.Ptr infoArray = VkBufferCreateInfo.allocate(arena, 10);
// When interacting with C APIs, the address of the first structure is of course the address
// of the whole memory block.
useBufferCreateInfo(infoArray, 10);
}
// function taking only one structure
void useSingleBufferCreateInfo(VkBufferCreateInfo info) {
// implementation omitted
}
// A common C API pattern, accepting one or more structures. The first argument is the address
// of the first element in the array, the second argument is the number of elements.
void useBufferCreateInfo(IVkBufferCreateInfo info, int count) {
// implementation omitted
}
Single structure V.S. Array of / Pointer to structures
In C, a structure is a contiguous block of memory. An array of structure is just a larger
contiguous block of memory, containing multiple structures. As a result, when viewed from Java
side, a single structure itself is indistinguishable from an array of structures: they are both
MemorySegments. In order to improve API usability, we
use Ptr types to represent an array of / a pointer to structure(s).
Let's take VkRenderPassBeginInfo as an
example. the layout of that structure is basically:
typedef struct VkRenderPassBeginInfo {
// ...
VkRect2D renderArea;
uint32_t clearValueCount;
VkClearValue const* pClearValues;
} VkRenderPassBeginInfo;
Here renderArea is a single structure, while pClearValues is a pointer to an
array of VkClearValue structures. Thus, we directly use
VkRect2D to represent renderArea, while
VkClearValue.Ptr to represent
pClearValues.
For APIs that accept pointer to / array of structures, their corresponding vulkan4j
wrappers are designed to accept both StructureType and StructureType.Ptr via the
interface IStructureType interface, so you don't need to bother which type to allocate.
However, when the metadata explicitly indicates that the API accepts only one structure, the
wrapper enforces you to use the StructureType. This is to prevent accidental passing of
an array of structures to an API that only accepts a single structure.
-
ClassDescriptionAuxiliary interface for unifying
NvSciSyncFenceVKREFandNvSciSyncFenceVKREF.Ptroperations.Auxiliary interface for unifyingStdVideoAV1CDEFandStdVideoAV1CDEF.Ptroperations.Auxiliary interface for unifyingStdVideoAV1ColorConfigandStdVideoAV1ColorConfig.Ptroperations.Auxiliary interface for unifyingStdVideoAV1ColorConfigFlagsandStdVideoAV1ColorConfigFlags.Ptroperations.Auxiliary interface for unifyingStdVideoAV1FilmGrainandStdVideoAV1FilmGrain.Ptroperations.Auxiliary interface for unifyingStdVideoAV1FilmGrainFlagsandStdVideoAV1FilmGrainFlags.Ptroperations.Auxiliary interface for unifyingStdVideoAV1GlobalMotionandStdVideoAV1GlobalMotion.Ptroperations.Auxiliary interface for unifyingStdVideoAV1LoopFilterandStdVideoAV1LoopFilter.Ptroperations.Auxiliary interface for unifyingStdVideoAV1LoopFilterFlagsandStdVideoAV1LoopFilterFlags.Ptroperations.Auxiliary interface for unifyingStdVideoAV1LoopRestorationandStdVideoAV1LoopRestoration.Ptroperations.Auxiliary interface for unifyingStdVideoAV1QuantizationandStdVideoAV1Quantization.Ptroperations.Auxiliary interface for unifyingStdVideoAV1QuantizationFlagsandStdVideoAV1QuantizationFlags.Ptroperations.Auxiliary interface for unifyingStdVideoAV1SegmentationandStdVideoAV1Segmentation.Ptroperations.Auxiliary interface for unifyingStdVideoAV1SequenceHeaderandStdVideoAV1SequenceHeader.Ptroperations.Auxiliary interface for unifyingStdVideoAV1SequenceHeaderFlagsandStdVideoAV1SequenceHeaderFlags.Ptroperations.Auxiliary interface for unifyingStdVideoAV1TileInfoandStdVideoAV1TileInfo.Ptroperations.Auxiliary interface for unifyingStdVideoAV1TileInfoFlagsandStdVideoAV1TileInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoAV1TimingInfoandStdVideoAV1TimingInfo.Ptroperations.Auxiliary interface for unifyingStdVideoAV1TimingInfoFlagsandStdVideoAV1TimingInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeAV1PictureInfoandStdVideoDecodeAV1PictureInfo.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeAV1PictureInfoFlagsandStdVideoDecodeAV1PictureInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeAV1ReferenceInfoandStdVideoDecodeAV1ReferenceInfo.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeAV1ReferenceInfoFlagsandStdVideoDecodeAV1ReferenceInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH264PictureInfoandStdVideoDecodeH264PictureInfo.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH264PictureInfoFlagsandStdVideoDecodeH264PictureInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH264ReferenceInfoandStdVideoDecodeH264ReferenceInfo.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH264ReferenceInfoFlagsandStdVideoDecodeH264ReferenceInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH265PictureInfoandStdVideoDecodeH265PictureInfo.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH265PictureInfoFlagsandStdVideoDecodeH265PictureInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH265ReferenceInfoandStdVideoDecodeH265ReferenceInfo.Ptroperations.Auxiliary interface for unifyingStdVideoDecodeH265ReferenceInfoFlagsandStdVideoDecodeH265ReferenceInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1DecoderModelInfoandStdVideoEncodeAV1DecoderModelInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1ExtensionHeaderandStdVideoEncodeAV1ExtensionHeader.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1OperatingPointInfoandStdVideoEncodeAV1OperatingPointInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1OperatingPointInfoFlagsandStdVideoEncodeAV1OperatingPointInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1PictureInfoandStdVideoEncodeAV1PictureInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1PictureInfoFlagsandStdVideoEncodeAV1PictureInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1ReferenceInfoandStdVideoEncodeAV1ReferenceInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeAV1ReferenceInfoFlagsandStdVideoEncodeAV1ReferenceInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264PictureInfoandStdVideoEncodeH264PictureInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264PictureInfoFlagsandStdVideoEncodeH264PictureInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceInfoandStdVideoEncodeH264ReferenceInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceInfoFlagsandStdVideoEncodeH264ReferenceInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceListsInfoandStdVideoEncodeH264ReferenceListsInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceListsInfoFlagsandStdVideoEncodeH264ReferenceListsInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264RefListModEntryandStdVideoEncodeH264RefListModEntry.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264RefPicMarkingEntryandStdVideoEncodeH264RefPicMarkingEntry.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264SliceHeaderandStdVideoEncodeH264SliceHeader.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264SliceHeaderFlagsandStdVideoEncodeH264SliceHeaderFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264WeightTableandStdVideoEncodeH264WeightTable.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH264WeightTableFlagsandStdVideoEncodeH264WeightTableFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265LongTermRefPicsandStdVideoEncodeH265LongTermRefPics.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265PictureInfoandStdVideoEncodeH265PictureInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265PictureInfoFlagsandStdVideoEncodeH265PictureInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceInfoandStdVideoEncodeH265ReferenceInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceInfoFlagsandStdVideoEncodeH265ReferenceInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceListsInfoandStdVideoEncodeH265ReferenceListsInfo.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceListsInfoFlagsandStdVideoEncodeH265ReferenceListsInfoFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265SliceSegmentHeaderandStdVideoEncodeH265SliceSegmentHeader.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265SliceSegmentHeaderFlagsandStdVideoEncodeH265SliceSegmentHeaderFlags.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265WeightTableandStdVideoEncodeH265WeightTable.Ptroperations.Auxiliary interface for unifyingStdVideoEncodeH265WeightTableFlagsandStdVideoEncodeH265WeightTableFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH264HrdParametersandStdVideoH264HrdParameters.Ptroperations.Auxiliary interface for unifyingStdVideoH264PictureParameterSetandStdVideoH264PictureParameterSet.Ptroperations.Auxiliary interface for unifyingStdVideoH264PpsFlagsandStdVideoH264PpsFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH264ScalingListsandStdVideoH264ScalingLists.Ptroperations.Auxiliary interface for unifyingStdVideoH264SequenceParameterSetandStdVideoH264SequenceParameterSet.Ptroperations.Auxiliary interface for unifyingStdVideoH264SequenceParameterSetVuiandStdVideoH264SequenceParameterSetVui.Ptroperations.Auxiliary interface for unifyingStdVideoH264SpsFlagsandStdVideoH264SpsFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH264SpsVuiFlagsandStdVideoH264SpsVuiFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH265DecPicBufMgrandStdVideoH265DecPicBufMgr.Ptroperations.Auxiliary interface for unifyingStdVideoH265HrdFlagsandStdVideoH265HrdFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH265HrdParametersandStdVideoH265HrdParameters.Ptroperations.Auxiliary interface for unifyingStdVideoH265LongTermRefPicsSpsandStdVideoH265LongTermRefPicsSps.Ptroperations.Auxiliary interface for unifyingStdVideoH265PictureParameterSetandStdVideoH265PictureParameterSet.Ptroperations.Auxiliary interface for unifyingStdVideoH265PpsFlagsandStdVideoH265PpsFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH265PredictorPaletteEntriesandStdVideoH265PredictorPaletteEntries.Ptroperations.Auxiliary interface for unifyingStdVideoH265ProfileTierLevelandStdVideoH265ProfileTierLevel.Ptroperations.Auxiliary interface for unifyingStdVideoH265ProfileTierLevelFlagsandStdVideoH265ProfileTierLevelFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH265ScalingListsandStdVideoH265ScalingLists.Ptroperations.Auxiliary interface for unifyingStdVideoH265SequenceParameterSetandStdVideoH265SequenceParameterSet.Ptroperations.Auxiliary interface for unifyingStdVideoH265SequenceParameterSetVuiandStdVideoH265SequenceParameterSetVui.Ptroperations.Auxiliary interface for unifyingStdVideoH265ShortTermRefPicSetandStdVideoH265ShortTermRefPicSet.Ptroperations.Auxiliary interface for unifyingStdVideoH265ShortTermRefPicSetFlagsandStdVideoH265ShortTermRefPicSetFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH265SpsFlagsandStdVideoH265SpsFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH265SpsVuiFlagsandStdVideoH265SpsVuiFlags.Ptroperations.Auxiliary interface for unifyingStdVideoH265SubLayerHrdParametersandStdVideoH265SubLayerHrdParameters.Ptroperations.Auxiliary interface for unifyingStdVideoH265VideoParameterSetandStdVideoH265VideoParameterSet.Ptroperations.Auxiliary interface for unifyingStdVideoH265VpsFlagsandStdVideoH265VpsFlags.Ptroperations.Auxiliary interface for unifyingVkAabbPositionsKHRandVkAabbPositionsKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureBuildGeometryInfoKHRandVkAccelerationStructureBuildGeometryInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureBuildRangeInfoKHRandVkAccelerationStructureBuildRangeInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureBuildSizesInfoKHRandVkAccelerationStructureBuildSizesInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureCaptureDescriptorDataInfoEXTandVkAccelerationStructureCaptureDescriptorDataInfoEXT.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureCreateInfoKHRandVkAccelerationStructureCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureCreateInfoNVandVkAccelerationStructureCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureDeviceAddressInfoKHRandVkAccelerationStructureDeviceAddressInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometryAabbsDataKHRandVkAccelerationStructureGeometryAabbsDataKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometryDataKHRandVkAccelerationStructureGeometryDataKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometryInstancesDataKHRandVkAccelerationStructureGeometryInstancesDataKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometryKHRandVkAccelerationStructureGeometryKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometryLinearSweptSpheresDataNVandVkAccelerationStructureGeometryLinearSweptSpheresDataNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometryMotionTrianglesDataNVandVkAccelerationStructureGeometryMotionTrianglesDataNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometrySpheresDataNVandVkAccelerationStructureGeometrySpheresDataNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureGeometryTrianglesDataKHRandVkAccelerationStructureGeometryTrianglesDataKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureInfoNVandVkAccelerationStructureInfoNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureInstanceKHRandVkAccelerationStructureInstanceKHR.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureMatrixMotionInstanceNVandVkAccelerationStructureMatrixMotionInstanceNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureMemoryRequirementsInfoNVandVkAccelerationStructureMemoryRequirementsInfoNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureMotionInfoNVandVkAccelerationStructureMotionInfoNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureMotionInstanceDataNVandVkAccelerationStructureMotionInstanceDataNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureMotionInstanceNVandVkAccelerationStructureMotionInstanceNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureSRTMotionInstanceNVandVkAccelerationStructureSRTMotionInstanceNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureTrianglesDisplacementMicromapNVandVkAccelerationStructureTrianglesDisplacementMicromapNV.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureTrianglesOpacityMicromapEXTandVkAccelerationStructureTrianglesOpacityMicromapEXT.Ptroperations.Auxiliary interface for unifyingVkAccelerationStructureVersionInfoKHRandVkAccelerationStructureVersionInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAcquireNextImageInfoKHRandVkAcquireNextImageInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAcquireProfilingLockInfoKHRandVkAcquireProfilingLockInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAllocationCallbacksandVkAllocationCallbacks.Ptroperations.Auxiliary interface for unifyingVkAmigoProfilingSubmitInfoSECandVkAmigoProfilingSubmitInfoSEC.Ptroperations.Auxiliary interface for unifyingVkAndroidHardwareBufferFormatProperties2ANDROIDandVkAndroidHardwareBufferFormatProperties2ANDROID.Ptroperations.Auxiliary interface for unifyingVkAndroidHardwareBufferFormatPropertiesANDROIDandVkAndroidHardwareBufferFormatPropertiesANDROID.Ptroperations.Auxiliary interface for unifyingVkAndroidHardwareBufferFormatResolvePropertiesANDROIDandVkAndroidHardwareBufferFormatResolvePropertiesANDROID.Ptroperations.Auxiliary interface for unifyingVkAndroidHardwareBufferPropertiesANDROIDandVkAndroidHardwareBufferPropertiesANDROID.Ptroperations.Auxiliary interface for unifyingVkAndroidHardwareBufferUsageANDROIDandVkAndroidHardwareBufferUsageANDROID.Ptroperations.Auxiliary interface for unifyingVkAndroidSurfaceCreateInfoKHRandVkAndroidSurfaceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkAntiLagDataAMDandVkAntiLagDataAMD.Ptroperations.Auxiliary interface for unifyingVkAntiLagPresentationInfoAMDandVkAntiLagPresentationInfoAMD.Ptroperations.Auxiliary interface for unifyingVkApplicationInfoandVkApplicationInfo.Ptroperations.Auxiliary interface for unifyingVkApplicationParametersEXTandVkApplicationParametersEXT.Ptroperations.Auxiliary interface for unifyingVkAttachmentDescriptionandVkAttachmentDescription.Ptroperations.Auxiliary interface for unifyingVkAttachmentDescription2andVkAttachmentDescription2.Ptroperations.Auxiliary interface for unifyingVkAttachmentDescriptionStencilLayoutandVkAttachmentDescriptionStencilLayout.Ptroperations.Auxiliary interface for unifyingVkAttachmentReferenceandVkAttachmentReference.Ptroperations.Auxiliary interface for unifyingVkAttachmentReference2andVkAttachmentReference2.Ptroperations.Auxiliary interface for unifyingVkAttachmentReferenceStencilLayoutandVkAttachmentReferenceStencilLayout.Ptroperations.Auxiliary interface for unifyingVkAttachmentSampleCountInfoAMDandVkAttachmentSampleCountInfoAMD.Ptroperations.Auxiliary interface for unifyingVkAttachmentSampleLocationsEXTandVkAttachmentSampleLocationsEXT.Ptroperations.Auxiliary interface for unifyingVkBaseInStructureandVkBaseInStructure.Ptroperations.Auxiliary interface for unifyingVkBaseOutStructureandVkBaseOutStructure.Ptroperations.Auxiliary interface for unifyingVkBindAccelerationStructureMemoryInfoNVandVkBindAccelerationStructureMemoryInfoNV.Ptroperations.Auxiliary interface for unifyingVkBindBufferMemoryDeviceGroupInfoandVkBindBufferMemoryDeviceGroupInfo.Ptroperations.Auxiliary interface for unifyingVkBindBufferMemoryInfoandVkBindBufferMemoryInfo.Ptroperations.Auxiliary interface for unifyingVkBindDescriptorBufferEmbeddedSamplersInfoEXTandVkBindDescriptorBufferEmbeddedSamplersInfoEXT.Ptroperations.Auxiliary interface for unifyingVkBindDescriptorSetsInfoandVkBindDescriptorSetsInfo.Ptroperations.Auxiliary interface for unifyingVkBindImageMemoryDeviceGroupInfoandVkBindImageMemoryDeviceGroupInfo.Ptroperations.Auxiliary interface for unifyingVkBindImageMemoryInfoandVkBindImageMemoryInfo.Ptroperations.Auxiliary interface for unifyingVkBindImageMemorySwapchainInfoKHRandVkBindImageMemorySwapchainInfoKHR.Ptroperations.Auxiliary interface for unifyingVkBindImagePlaneMemoryInfoandVkBindImagePlaneMemoryInfo.Ptroperations.Auxiliary interface for unifyingVkBindIndexBufferIndirectCommandEXTandVkBindIndexBufferIndirectCommandEXT.Ptroperations.Auxiliary interface for unifyingVkBindIndexBufferIndirectCommandNVandVkBindIndexBufferIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkBindMemoryStatusandVkBindMemoryStatus.Ptroperations.Auxiliary interface for unifyingVkBindPipelineIndirectCommandNVandVkBindPipelineIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkBindShaderGroupIndirectCommandNVandVkBindShaderGroupIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkBindSparseInfoandVkBindSparseInfo.Ptroperations.Auxiliary interface for unifyingVkBindVertexBufferIndirectCommandEXTandVkBindVertexBufferIndirectCommandEXT.Ptroperations.Auxiliary interface for unifyingVkBindVertexBufferIndirectCommandNVandVkBindVertexBufferIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkBindVideoSessionMemoryInfoKHRandVkBindVideoSessionMemoryInfoKHR.Ptroperations.Auxiliary interface for unifyingVkBlitImageCubicWeightsInfoQCOMandVkBlitImageCubicWeightsInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkBlitImageInfo2andVkBlitImageInfo2.Ptroperations.Auxiliary interface for unifyingVkBufferCaptureDescriptorDataInfoEXTandVkBufferCaptureDescriptorDataInfoEXT.Ptroperations.Auxiliary interface for unifyingVkBufferCollectionBufferCreateInfoFUCHSIAandVkBufferCollectionBufferCreateInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkBufferCollectionConstraintsInfoFUCHSIAandVkBufferCollectionConstraintsInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkBufferCollectionCreateInfoFUCHSIAandVkBufferCollectionCreateInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkBufferCollectionImageCreateInfoFUCHSIAandVkBufferCollectionImageCreateInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkBufferCollectionPropertiesFUCHSIAandVkBufferCollectionPropertiesFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkBufferConstraintsInfoFUCHSIAandVkBufferConstraintsInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkBufferCopyandVkBufferCopy.Ptroperations.Auxiliary interface for unifyingVkBufferCopy2andVkBufferCopy2.Ptroperations.Auxiliary interface for unifyingVkBufferCreateInfoandVkBufferCreateInfo.Ptroperations.Auxiliary interface for unifyingVkBufferDeviceAddressCreateInfoEXTandVkBufferDeviceAddressCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkBufferDeviceAddressInfoandVkBufferDeviceAddressInfo.Ptroperations.Auxiliary interface for unifyingVkBufferImageCopyandVkBufferImageCopy.Ptroperations.Auxiliary interface for unifyingVkBufferImageCopy2andVkBufferImageCopy2.Ptroperations.Auxiliary interface for unifyingVkBufferMemoryBarrierandVkBufferMemoryBarrier.Ptroperations.Auxiliary interface for unifyingVkBufferMemoryBarrier2andVkBufferMemoryBarrier2.Ptroperations.Auxiliary interface for unifyingVkBufferMemoryRequirementsInfo2andVkBufferMemoryRequirementsInfo2.Ptroperations.Auxiliary interface for unifyingVkBufferOpaqueCaptureAddressCreateInfoandVkBufferOpaqueCaptureAddressCreateInfo.Ptroperations.Auxiliary interface for unifyingVkBufferUsageFlags2CreateInfoandVkBufferUsageFlags2CreateInfo.Ptroperations.Auxiliary interface for unifyingVkBufferViewCreateInfoandVkBufferViewCreateInfo.Ptroperations.Auxiliary interface for unifyingVkBuildPartitionedAccelerationStructureIndirectCommandNVandVkBuildPartitionedAccelerationStructureIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkBuildPartitionedAccelerationStructureInfoNVandVkBuildPartitionedAccelerationStructureInfoNV.Ptroperations.Auxiliary interface for unifyingVkCalibratedTimestampInfoKHRandVkCalibratedTimestampInfoKHR.Ptroperations.Auxiliary interface for unifyingVkCheckpointData2NVandVkCheckpointData2NV.Ptroperations.Auxiliary interface for unifyingVkCheckpointDataNVandVkCheckpointDataNV.Ptroperations.Auxiliary interface for unifyingVkClearAttachmentandVkClearAttachment.Ptroperations.Auxiliary interface for unifyingVkClearColorValueandVkClearColorValue.Ptroperations.Auxiliary interface for unifyingVkClearDepthStencilValueandVkClearDepthStencilValue.Ptroperations.Auxiliary interface for unifyingVkClearRectandVkClearRect.Ptroperations.Auxiliary interface for unifyingVkClearValueandVkClearValue.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureBuildClustersBottomLevelInfoNVandVkClusterAccelerationStructureBuildClustersBottomLevelInfoNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureBuildTriangleClusterInfoNVandVkClusterAccelerationStructureBuildTriangleClusterInfoNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNVandVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureClustersBottomLevelInputNVandVkClusterAccelerationStructureClustersBottomLevelInputNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureCommandsInfoNVandVkClusterAccelerationStructureCommandsInfoNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNVandVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureInputInfoNVandVkClusterAccelerationStructureInputInfoNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureInstantiateClusterInfoNVandVkClusterAccelerationStructureInstantiateClusterInfoNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureMoveObjectsInfoNVandVkClusterAccelerationStructureMoveObjectsInfoNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureMoveObjectsInputNVandVkClusterAccelerationStructureMoveObjectsInputNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureOpInputNVandVkClusterAccelerationStructureOpInputNV.Ptroperations.Auxiliary interface for unifyingVkClusterAccelerationStructureTriangleClusterInputNVandVkClusterAccelerationStructureTriangleClusterInputNV.Ptroperations.Auxiliary interface for unifyingVkCoarseSampleLocationNVandVkCoarseSampleLocationNV.Ptroperations.Auxiliary interface for unifyingVkCoarseSampleOrderCustomNVandVkCoarseSampleOrderCustomNV.Ptroperations.Auxiliary interface for unifyingVkColorBlendAdvancedEXTandVkColorBlendAdvancedEXT.Ptroperations.Auxiliary interface for unifyingVkColorBlendEquationEXTandVkColorBlendEquationEXT.Ptroperations.Auxiliary interface for unifyingVkCommandBufferAllocateInfoandVkCommandBufferAllocateInfo.Ptroperations.Auxiliary interface for unifyingVkCommandBufferBeginInfoandVkCommandBufferBeginInfo.Ptroperations.Auxiliary interface for unifyingVkCommandBufferInheritanceConditionalRenderingInfoEXTandVkCommandBufferInheritanceConditionalRenderingInfoEXT.Ptroperations.Auxiliary interface for unifyingVkCommandBufferInheritanceInfoandVkCommandBufferInheritanceInfo.Ptroperations.Auxiliary interface for unifyingVkCommandBufferInheritanceRenderingInfoandVkCommandBufferInheritanceRenderingInfo.Ptroperations.Auxiliary interface for unifyingVkCommandBufferInheritanceRenderPassTransformInfoQCOMandVkCommandBufferInheritanceRenderPassTransformInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkCommandBufferInheritanceViewportScissorInfoNVandVkCommandBufferInheritanceViewportScissorInfoNV.Ptroperations.Auxiliary interface for unifyingVkCommandBufferSubmitInfoandVkCommandBufferSubmitInfo.Ptroperations.Auxiliary interface for unifyingVkCommandPoolCreateInfoandVkCommandPoolCreateInfo.Ptroperations.Auxiliary interface for unifyingVkComponentMappingandVkComponentMapping.Ptroperations.Auxiliary interface for unifyingVkComputePipelineCreateInfoandVkComputePipelineCreateInfo.Ptroperations.Auxiliary interface for unifyingVkComputePipelineIndirectBufferInfoNVandVkComputePipelineIndirectBufferInfoNV.Ptroperations.Auxiliary interface for unifyingVkConditionalRenderingBeginInfoEXTandVkConditionalRenderingBeginInfoEXT.Ptroperations.Auxiliary interface for unifyingVkConformanceVersionandVkConformanceVersion.Ptroperations.Auxiliary interface for unifyingVkConvertCooperativeVectorMatrixInfoNVandVkConvertCooperativeVectorMatrixInfoNV.Ptroperations.Auxiliary interface for unifyingVkCooperativeMatrixFlexibleDimensionsPropertiesNVandVkCooperativeMatrixFlexibleDimensionsPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkCooperativeMatrixPropertiesKHRandVkCooperativeMatrixPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkCooperativeMatrixPropertiesNVandVkCooperativeMatrixPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkCooperativeVectorPropertiesNVandVkCooperativeVectorPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkCopyAccelerationStructureInfoKHRandVkCopyAccelerationStructureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkCopyAccelerationStructureToMemoryInfoKHRandVkCopyAccelerationStructureToMemoryInfoKHR.Ptroperations.Auxiliary interface for unifyingVkCopyBufferInfo2andVkCopyBufferInfo2.Ptroperations.Auxiliary interface for unifyingVkCopyBufferToImageInfo2andVkCopyBufferToImageInfo2.Ptroperations.Auxiliary interface for unifyingVkCopyCommandTransformInfoQCOMandVkCopyCommandTransformInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkCopyDescriptorSetandVkCopyDescriptorSet.Ptroperations.Auxiliary interface for unifyingVkCopyImageInfo2andVkCopyImageInfo2.Ptroperations.Auxiliary interface for unifyingVkCopyImageToBufferInfo2andVkCopyImageToBufferInfo2.Ptroperations.Auxiliary interface for unifyingVkCopyImageToImageInfoandVkCopyImageToImageInfo.Ptroperations.Auxiliary interface for unifyingVkCopyImageToMemoryInfoandVkCopyImageToMemoryInfo.Ptroperations.Auxiliary interface for unifyingVkCopyMemoryIndirectCommandNVandVkCopyMemoryIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkCopyMemoryToAccelerationStructureInfoKHRandVkCopyMemoryToAccelerationStructureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkCopyMemoryToImageIndirectCommandNVandVkCopyMemoryToImageIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkCopyMemoryToImageInfoandVkCopyMemoryToImageInfo.Ptroperations.Auxiliary interface for unifyingVkCopyMemoryToMicromapInfoEXTandVkCopyMemoryToMicromapInfoEXT.Ptroperations.Auxiliary interface for unifyingVkCopyMicromapInfoEXTandVkCopyMicromapInfoEXT.Ptroperations.Auxiliary interface for unifyingVkCopyMicromapToMemoryInfoEXTandVkCopyMicromapToMemoryInfoEXT.Ptroperations.Auxiliary interface for unifyingVkCudaFunctionCreateInfoNVandVkCudaFunctionCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkCudaLaunchInfoNVandVkCudaLaunchInfoNV.Ptroperations.Auxiliary interface for unifyingVkCudaModuleCreateInfoNVandVkCudaModuleCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkCuFunctionCreateInfoNVXandVkCuFunctionCreateInfoNVX.Ptroperations.Auxiliary interface for unifyingVkCuLaunchInfoNVXandVkCuLaunchInfoNVX.Ptroperations.Auxiliary interface for unifyingVkCuModuleCreateInfoNVXandVkCuModuleCreateInfoNVX.Ptroperations.Auxiliary interface for unifyingVkCuModuleTexturingModeCreateInfoNVXandVkCuModuleTexturingModeCreateInfoNVX.Ptroperations.Auxiliary interface for unifyingVkD3D12FenceSubmitInfoKHRandVkD3D12FenceSubmitInfoKHR.Ptroperations.Auxiliary interface for unifyingVkDebugMarkerMarkerInfoEXTandVkDebugMarkerMarkerInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDebugMarkerObjectNameInfoEXTandVkDebugMarkerObjectNameInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDebugMarkerObjectTagInfoEXTandVkDebugMarkerObjectTagInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDebugReportCallbackCreateInfoEXTandVkDebugReportCallbackCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDebugUtilsLabelEXTandVkDebugUtilsLabelEXT.Ptroperations.Auxiliary interface for unifyingVkDebugUtilsMessengerCallbackDataEXTandVkDebugUtilsMessengerCallbackDataEXT.Ptroperations.Auxiliary interface for unifyingVkDebugUtilsMessengerCreateInfoEXTandVkDebugUtilsMessengerCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDebugUtilsObjectNameInfoEXTandVkDebugUtilsObjectNameInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDebugUtilsObjectTagInfoEXTandVkDebugUtilsObjectTagInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDecompressMemoryRegionNVandVkDecompressMemoryRegionNV.Ptroperations.Auxiliary interface for unifyingVkDedicatedAllocationBufferCreateInfoNVandVkDedicatedAllocationBufferCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkDedicatedAllocationImageCreateInfoNVandVkDedicatedAllocationImageCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkDedicatedAllocationMemoryAllocateInfoNVandVkDedicatedAllocationMemoryAllocateInfoNV.Ptroperations.Auxiliary interface for unifyingVkDependencyInfoandVkDependencyInfo.Ptroperations.Auxiliary interface for unifyingVkDepthBiasInfoEXTandVkDepthBiasInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDepthBiasRepresentationInfoEXTandVkDepthBiasRepresentationInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDepthClampRangeEXTandVkDepthClampRangeEXT.Ptroperations.Auxiliary interface for unifyingVkDescriptorAddressInfoEXTandVkDescriptorAddressInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDescriptorBufferBindingInfoEXTandVkDescriptorBufferBindingInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDescriptorBufferBindingPushDescriptorBufferHandleEXTandVkDescriptorBufferBindingPushDescriptorBufferHandleEXT.Ptroperations.Auxiliary interface for unifyingVkDescriptorBufferInfoandVkDescriptorBufferInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorDataEXTandVkDescriptorDataEXT.Ptroperations.Auxiliary interface for unifyingVkDescriptorGetInfoEXTandVkDescriptorGetInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDescriptorImageInfoandVkDescriptorImageInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorPoolCreateInfoandVkDescriptorPoolCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorPoolInlineUniformBlockCreateInfoandVkDescriptorPoolInlineUniformBlockCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorPoolSizeandVkDescriptorPoolSize.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetAllocateInfoandVkDescriptorSetAllocateInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetBindingReferenceVALVEandVkDescriptorSetBindingReferenceVALVE.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetLayoutBindingandVkDescriptorSetLayoutBinding.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetLayoutBindingFlagsCreateInfoandVkDescriptorSetLayoutBindingFlagsCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetLayoutCreateInfoandVkDescriptorSetLayoutCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetLayoutHostMappingInfoVALVEandVkDescriptorSetLayoutHostMappingInfoVALVE.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetLayoutSupportandVkDescriptorSetLayoutSupport.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetVariableDescriptorCountAllocateInfoandVkDescriptorSetVariableDescriptorCountAllocateInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorSetVariableDescriptorCountLayoutSupportandVkDescriptorSetVariableDescriptorCountLayoutSupport.Ptroperations.Auxiliary interface for unifyingVkDescriptorUpdateTemplateCreateInfoandVkDescriptorUpdateTemplateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDescriptorUpdateTemplateEntryandVkDescriptorUpdateTemplateEntry.Ptroperations.Auxiliary interface for unifyingVkDeviceAddressBindingCallbackDataEXTandVkDeviceAddressBindingCallbackDataEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceBufferMemoryRequirementsandVkDeviceBufferMemoryRequirements.Ptroperations.Auxiliary interface for unifyingVkDeviceCreateInfoandVkDeviceCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceDeviceMemoryReportCreateInfoEXTandVkDeviceDeviceMemoryReportCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceDiagnosticsConfigCreateInfoNVandVkDeviceDiagnosticsConfigCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkDeviceEventInfoEXTandVkDeviceEventInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceFaultAddressInfoEXTandVkDeviceFaultAddressInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceFaultCountsEXTandVkDeviceFaultCountsEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceFaultInfoEXTandVkDeviceFaultInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceFaultVendorBinaryHeaderVersionOneEXTandVkDeviceFaultVendorBinaryHeaderVersionOneEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceFaultVendorInfoEXTandVkDeviceFaultVendorInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupBindSparseInfoandVkDeviceGroupBindSparseInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupCommandBufferBeginInfoandVkDeviceGroupCommandBufferBeginInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupDeviceCreateInfoandVkDeviceGroupDeviceCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupPresentCapabilitiesKHRandVkDeviceGroupPresentCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupPresentInfoKHRandVkDeviceGroupPresentInfoKHR.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupRenderPassBeginInfoandVkDeviceGroupRenderPassBeginInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupSubmitInfoandVkDeviceGroupSubmitInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceGroupSwapchainCreateInfoKHRandVkDeviceGroupSwapchainCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkDeviceImageMemoryRequirementsandVkDeviceImageMemoryRequirements.Ptroperations.Auxiliary interface for unifyingVkDeviceImageSubresourceInfoandVkDeviceImageSubresourceInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceMemoryOpaqueCaptureAddressInfoandVkDeviceMemoryOpaqueCaptureAddressInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceMemoryOverallocationCreateInfoAMDandVkDeviceMemoryOverallocationCreateInfoAMD.Ptroperations.Auxiliary interface for unifyingVkDeviceMemoryReportCallbackDataEXTandVkDeviceMemoryReportCallbackDataEXT.Ptroperations.Auxiliary interface for unifyingVkDeviceOrHostAddressConstAMDXandVkDeviceOrHostAddressConstAMDX.Ptroperations.Auxiliary interface for unifyingVkDeviceOrHostAddressConstKHRandVkDeviceOrHostAddressConstKHR.Ptroperations.Auxiliary interface for unifyingVkDeviceOrHostAddressKHRandVkDeviceOrHostAddressKHR.Ptroperations.Auxiliary interface for unifyingVkDevicePipelineBinaryInternalCacheControlKHRandVkDevicePipelineBinaryInternalCacheControlKHR.Ptroperations.Auxiliary interface for unifyingVkDevicePrivateDataCreateInfoandVkDevicePrivateDataCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceQueueCreateInfoandVkDeviceQueueCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceQueueGlobalPriorityCreateInfoandVkDeviceQueueGlobalPriorityCreateInfo.Ptroperations.Auxiliary interface for unifyingVkDeviceQueueInfo2andVkDeviceQueueInfo2.Ptroperations.Auxiliary interface for unifyingVkDeviceQueueShaderCoreControlCreateInfoARMandVkDeviceQueueShaderCoreControlCreateInfoARM.Ptroperations.Auxiliary interface for unifyingVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNVandVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkDirectDriverLoadingInfoLUNARGandVkDirectDriverLoadingInfoLUNARG.Ptroperations.Auxiliary interface for unifyingVkDirectDriverLoadingListLUNARGandVkDirectDriverLoadingListLUNARG.Ptroperations.Auxiliary interface for unifyingVkDirectFBSurfaceCreateInfoEXTandVkDirectFBSurfaceCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDispatchGraphCountInfoAMDXandVkDispatchGraphCountInfoAMDX.Ptroperations.Auxiliary interface for unifyingVkDispatchGraphInfoAMDXandVkDispatchGraphInfoAMDX.Ptroperations.Auxiliary interface for unifyingVkDispatchIndirectCommandandVkDispatchIndirectCommand.Ptroperations.Auxiliary interface for unifyingVkDispatchTileInfoQCOMandVkDispatchTileInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkDisplayEventInfoEXTandVkDisplayEventInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDisplayModeCreateInfoKHRandVkDisplayModeCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkDisplayModeParametersKHRandVkDisplayModeParametersKHR.Ptroperations.Auxiliary interface for unifyingVkDisplayModeProperties2KHRandVkDisplayModeProperties2KHR.Ptroperations.Auxiliary interface for unifyingVkDisplayModePropertiesKHRandVkDisplayModePropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkDisplayModeStereoPropertiesNVandVkDisplayModeStereoPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkDisplayNativeHdrSurfaceCapabilitiesAMDandVkDisplayNativeHdrSurfaceCapabilitiesAMD.Ptroperations.Auxiliary interface for unifyingVkDisplayPlaneCapabilities2KHRandVkDisplayPlaneCapabilities2KHR.Ptroperations.Auxiliary interface for unifyingVkDisplayPlaneCapabilitiesKHRandVkDisplayPlaneCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkDisplayPlaneInfo2KHRandVkDisplayPlaneInfo2KHR.Ptroperations.Auxiliary interface for unifyingVkDisplayPlaneProperties2KHRandVkDisplayPlaneProperties2KHR.Ptroperations.Auxiliary interface for unifyingVkDisplayPlanePropertiesKHRandVkDisplayPlanePropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkDisplayPowerInfoEXTandVkDisplayPowerInfoEXT.Ptroperations.Auxiliary interface for unifyingVkDisplayPresentInfoKHRandVkDisplayPresentInfoKHR.Ptroperations.Auxiliary interface for unifyingVkDisplayProperties2KHRandVkDisplayProperties2KHR.Ptroperations.Auxiliary interface for unifyingVkDisplayPropertiesKHRandVkDisplayPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkDisplaySurfaceCreateInfoKHRandVkDisplaySurfaceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkDisplaySurfaceStereoCreateInfoNVandVkDisplaySurfaceStereoCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkDrawIndexedIndirectCommandandVkDrawIndexedIndirectCommand.Ptroperations.Auxiliary interface for unifyingVkDrawIndirectCommandandVkDrawIndirectCommand.Ptroperations.Auxiliary interface for unifyingVkDrawIndirectCountIndirectCommandEXTandVkDrawIndirectCountIndirectCommandEXT.Ptroperations.Auxiliary interface for unifyingVkDrawMeshTasksIndirectCommandEXTandVkDrawMeshTasksIndirectCommandEXT.Ptroperations.Auxiliary interface for unifyingVkDrawMeshTasksIndirectCommandNVandVkDrawMeshTasksIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkDrmFormatModifierProperties2EXTandVkDrmFormatModifierProperties2EXT.Ptroperations.Auxiliary interface for unifyingVkDrmFormatModifierPropertiesEXTandVkDrmFormatModifierPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkDrmFormatModifierPropertiesList2EXTandVkDrmFormatModifierPropertiesList2EXT.Ptroperations.Auxiliary interface for unifyingVkDrmFormatModifierPropertiesListEXTandVkDrmFormatModifierPropertiesListEXT.Ptroperations.Auxiliary interface for unifyingVkEventCreateInfoandVkEventCreateInfo.Ptroperations.Auxiliary interface for unifyingVkExecutionGraphPipelineCreateInfoAMDXandVkExecutionGraphPipelineCreateInfoAMDX.Ptroperations.Auxiliary interface for unifyingVkExecutionGraphPipelineScratchSizeAMDXandVkExecutionGraphPipelineScratchSizeAMDX.Ptroperations.Auxiliary interface for unifyingVkExportFenceCreateInfoandVkExportFenceCreateInfo.Ptroperations.Auxiliary interface for unifyingVkExportFenceSciSyncInfoNVandVkExportFenceSciSyncInfoNV.Ptroperations.Auxiliary interface for unifyingVkExportFenceWin32HandleInfoKHRandVkExportFenceWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkExportMemoryAllocateInfoandVkExportMemoryAllocateInfo.Ptroperations.Auxiliary interface for unifyingVkExportMemoryAllocateInfoNVandVkExportMemoryAllocateInfoNV.Ptroperations.Auxiliary interface for unifyingVkExportMemorySciBufInfoNVandVkExportMemorySciBufInfoNV.Ptroperations.Auxiliary interface for unifyingVkExportMemoryWin32HandleInfoKHRandVkExportMemoryWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkExportMemoryWin32HandleInfoNVandVkExportMemoryWin32HandleInfoNV.Ptroperations.Auxiliary interface for unifyingVkExportMetalBufferInfoEXTandVkExportMetalBufferInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportMetalCommandQueueInfoEXTandVkExportMetalCommandQueueInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportMetalDeviceInfoEXTandVkExportMetalDeviceInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportMetalIOSurfaceInfoEXTandVkExportMetalIOSurfaceInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportMetalObjectCreateInfoEXTandVkExportMetalObjectCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportMetalObjectsInfoEXTandVkExportMetalObjectsInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportMetalSharedEventInfoEXTandVkExportMetalSharedEventInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportMetalTextureInfoEXTandVkExportMetalTextureInfoEXT.Ptroperations.Auxiliary interface for unifyingVkExportSemaphoreCreateInfoandVkExportSemaphoreCreateInfo.Ptroperations.Auxiliary interface for unifyingVkExportSemaphoreSciSyncInfoNVandVkExportSemaphoreSciSyncInfoNV.Ptroperations.Auxiliary interface for unifyingVkExportSemaphoreWin32HandleInfoKHRandVkExportSemaphoreWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkExtensionPropertiesandVkExtensionProperties.Ptroperations.Auxiliary interface for unifyingVkExtent2DandVkExtent2D.Ptroperations.Auxiliary interface for unifyingVkExtent3DandVkExtent3D.Ptroperations.Auxiliary interface for unifyingVkExternalBufferPropertiesandVkExternalBufferProperties.Ptroperations.Auxiliary interface for unifyingVkExternalComputeQueueCreateInfoNVandVkExternalComputeQueueCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkExternalComputeQueueDataParamsNVandVkExternalComputeQueueDataParamsNV.Ptroperations.Auxiliary interface for unifyingVkExternalComputeQueueDeviceCreateInfoNVandVkExternalComputeQueueDeviceCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkExternalFencePropertiesandVkExternalFenceProperties.Ptroperations.Auxiliary interface for unifyingVkExternalFormatANDROIDandVkExternalFormatANDROID.Ptroperations.Auxiliary interface for unifyingVkExternalFormatQNXandVkExternalFormatQNX.Ptroperations.Auxiliary interface for unifyingVkExternalImageFormatPropertiesandVkExternalImageFormatProperties.Ptroperations.Auxiliary interface for unifyingVkExternalImageFormatPropertiesNVandVkExternalImageFormatPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkExternalMemoryAcquireUnmodifiedEXTandVkExternalMemoryAcquireUnmodifiedEXT.Ptroperations.Auxiliary interface for unifyingVkExternalMemoryBufferCreateInfoandVkExternalMemoryBufferCreateInfo.Ptroperations.Auxiliary interface for unifyingVkExternalMemoryImageCreateInfoandVkExternalMemoryImageCreateInfo.Ptroperations.Auxiliary interface for unifyingVkExternalMemoryImageCreateInfoNVandVkExternalMemoryImageCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkExternalMemoryPropertiesandVkExternalMemoryProperties.Ptroperations.Auxiliary interface for unifyingVkExternalSemaphorePropertiesandVkExternalSemaphoreProperties.Ptroperations.Auxiliary interface for unifyingVkFenceCreateInfoandVkFenceCreateInfo.Ptroperations.Auxiliary interface for unifyingVkFenceGetFdInfoKHRandVkFenceGetFdInfoKHR.Ptroperations.Auxiliary interface for unifyingVkFenceGetSciSyncInfoNVandVkFenceGetSciSyncInfoNV.Ptroperations.Auxiliary interface for unifyingVkFenceGetWin32HandleInfoKHRandVkFenceGetWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkFilterCubicImageViewImageFormatPropertiesEXTandVkFilterCubicImageViewImageFormatPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkFormatPropertiesandVkFormatProperties.Ptroperations.Auxiliary interface for unifyingVkFormatProperties2andVkFormatProperties2.Ptroperations.Auxiliary interface for unifyingVkFormatProperties3andVkFormatProperties3.Ptroperations.Auxiliary interface for unifyingVkFragmentShadingRateAttachmentInfoKHRandVkFragmentShadingRateAttachmentInfoKHR.Ptroperations.Auxiliary interface for unifyingVkFrameBoundaryEXTandVkFrameBoundaryEXT.Ptroperations.Auxiliary interface for unifyingVkFramebufferAttachmentImageInfoandVkFramebufferAttachmentImageInfo.Ptroperations.Auxiliary interface for unifyingVkFramebufferAttachmentsCreateInfoandVkFramebufferAttachmentsCreateInfo.Ptroperations.Auxiliary interface for unifyingVkFramebufferCreateInfoandVkFramebufferCreateInfo.Ptroperations.Auxiliary interface for unifyingVkFramebufferMixedSamplesCombinationNVandVkFramebufferMixedSamplesCombinationNV.Ptroperations.Auxiliary interface for unifyingVkGeneratedCommandsInfoEXTandVkGeneratedCommandsInfoEXT.Ptroperations.Auxiliary interface for unifyingVkGeneratedCommandsInfoNVandVkGeneratedCommandsInfoNV.Ptroperations.Auxiliary interface for unifyingVkGeneratedCommandsMemoryRequirementsInfoEXTandVkGeneratedCommandsMemoryRequirementsInfoEXT.Ptroperations.Auxiliary interface for unifyingVkGeneratedCommandsMemoryRequirementsInfoNVandVkGeneratedCommandsMemoryRequirementsInfoNV.Ptroperations.Auxiliary interface for unifyingVkGeneratedCommandsPipelineInfoEXTandVkGeneratedCommandsPipelineInfoEXT.Ptroperations.Auxiliary interface for unifyingVkGeneratedCommandsShaderInfoEXTandVkGeneratedCommandsShaderInfoEXT.Ptroperations.Auxiliary interface for unifyingVkGeometryAABBNVandVkGeometryAABBNV.Ptroperations.Auxiliary interface for unifyingVkGeometryDataNVandVkGeometryDataNV.Ptroperations.Auxiliary interface for unifyingVkGeometryNVandVkGeometryNV.Ptroperations.Auxiliary interface for unifyingVkGeometryTrianglesNVandVkGeometryTrianglesNV.Ptroperations.Auxiliary interface for unifyingVkGetLatencyMarkerInfoNVandVkGetLatencyMarkerInfoNV.Ptroperations.Auxiliary interface for unifyingVkGraphicsPipelineCreateInfoandVkGraphicsPipelineCreateInfo.Ptroperations.Auxiliary interface for unifyingVkGraphicsPipelineLibraryCreateInfoEXTandVkGraphicsPipelineLibraryCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkGraphicsPipelineShaderGroupsCreateInfoNVandVkGraphicsPipelineShaderGroupsCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkGraphicsShaderGroupCreateInfoNVandVkGraphicsShaderGroupCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkHdrMetadataEXTandVkHdrMetadataEXT.Ptroperations.Auxiliary interface for unifyingVkHdrVividDynamicMetadataHUAWEIandVkHdrVividDynamicMetadataHUAWEI.Ptroperations.Auxiliary interface for unifyingVkHeadlessSurfaceCreateInfoEXTandVkHeadlessSurfaceCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkHostImageCopyDevicePerformanceQueryandVkHostImageCopyDevicePerformanceQuery.Ptroperations.Auxiliary interface for unifyingVkHostImageLayoutTransitionInfoandVkHostImageLayoutTransitionInfo.Ptroperations.Auxiliary interface for unifyingVkImageAlignmentControlCreateInfoMESAandVkImageAlignmentControlCreateInfoMESA.Ptroperations.Auxiliary interface for unifyingVkImageBlitandVkImageBlit.Ptroperations.Auxiliary interface for unifyingVkImageBlit2andVkImageBlit2.Ptroperations.Auxiliary interface for unifyingVkImageCaptureDescriptorDataInfoEXTandVkImageCaptureDescriptorDataInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImageCompressionControlEXTandVkImageCompressionControlEXT.Ptroperations.Auxiliary interface for unifyingVkImageCompressionPropertiesEXTandVkImageCompressionPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkImageConstraintsInfoFUCHSIAandVkImageConstraintsInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkImageCopyandVkImageCopy.Ptroperations.Auxiliary interface for unifyingVkImageCopy2andVkImageCopy2.Ptroperations.Auxiliary interface for unifyingVkImageCreateInfoandVkImageCreateInfo.Ptroperations.Auxiliary interface for unifyingVkImageDrmFormatModifierExplicitCreateInfoEXTandVkImageDrmFormatModifierExplicitCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImageDrmFormatModifierListCreateInfoEXTandVkImageDrmFormatModifierListCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImageDrmFormatModifierPropertiesEXTandVkImageDrmFormatModifierPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkImageFormatConstraintsInfoFUCHSIAandVkImageFormatConstraintsInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkImageFormatListCreateInfoandVkImageFormatListCreateInfo.Ptroperations.Auxiliary interface for unifyingVkImageFormatPropertiesandVkImageFormatProperties.Ptroperations.Auxiliary interface for unifyingVkImageFormatProperties2andVkImageFormatProperties2.Ptroperations.Auxiliary interface for unifyingVkImageMemoryBarrierandVkImageMemoryBarrier.Ptroperations.Auxiliary interface for unifyingVkImageMemoryBarrier2andVkImageMemoryBarrier2.Ptroperations.Auxiliary interface for unifyingVkImageMemoryRequirementsInfo2andVkImageMemoryRequirementsInfo2.Ptroperations.Auxiliary interface for unifyingVkImagePipeSurfaceCreateInfoFUCHSIAandVkImagePipeSurfaceCreateInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkImagePlaneMemoryRequirementsInfoandVkImagePlaneMemoryRequirementsInfo.Ptroperations.Auxiliary interface for unifyingVkImageResolveandVkImageResolve.Ptroperations.Auxiliary interface for unifyingVkImageResolve2andVkImageResolve2.Ptroperations.Auxiliary interface for unifyingVkImageSparseMemoryRequirementsInfo2andVkImageSparseMemoryRequirementsInfo2.Ptroperations.Auxiliary interface for unifyingVkImageStencilUsageCreateInfoandVkImageStencilUsageCreateInfo.Ptroperations.Auxiliary interface for unifyingVkImageSubresourceandVkImageSubresource.Ptroperations.Auxiliary interface for unifyingVkImageSubresource2andVkImageSubresource2.Ptroperations.Auxiliary interface for unifyingVkImageSubresourceLayersandVkImageSubresourceLayers.Ptroperations.Auxiliary interface for unifyingVkImageSubresourceRangeandVkImageSubresourceRange.Ptroperations.Auxiliary interface for unifyingVkImageSwapchainCreateInfoKHRandVkImageSwapchainCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkImageToMemoryCopyandVkImageToMemoryCopy.Ptroperations.Auxiliary interface for unifyingVkImageViewAddressPropertiesNVXandVkImageViewAddressPropertiesNVX.Ptroperations.Auxiliary interface for unifyingVkImageViewASTCDecodeModeEXTandVkImageViewASTCDecodeModeEXT.Ptroperations.Auxiliary interface for unifyingVkImageViewCaptureDescriptorDataInfoEXTandVkImageViewCaptureDescriptorDataInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImageViewCreateInfoandVkImageViewCreateInfo.Ptroperations.Auxiliary interface for unifyingVkImageViewHandleInfoNVXandVkImageViewHandleInfoNVX.Ptroperations.Auxiliary interface for unifyingVkImageViewMinLodCreateInfoEXTandVkImageViewMinLodCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImageViewSampleWeightCreateInfoQCOMandVkImageViewSampleWeightCreateInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkImageViewSlicedCreateInfoEXTandVkImageViewSlicedCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImageViewUsageCreateInfoandVkImageViewUsageCreateInfo.Ptroperations.Auxiliary interface for unifyingVkImportAndroidHardwareBufferInfoANDROIDandVkImportAndroidHardwareBufferInfoANDROID.Ptroperations.Auxiliary interface for unifyingVkImportFenceFdInfoKHRandVkImportFenceFdInfoKHR.Ptroperations.Auxiliary interface for unifyingVkImportFenceSciSyncInfoNVandVkImportFenceSciSyncInfoNV.Ptroperations.Auxiliary interface for unifyingVkImportFenceWin32HandleInfoKHRandVkImportFenceWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkImportMemoryBufferCollectionFUCHSIAandVkImportMemoryBufferCollectionFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkImportMemoryFdInfoKHRandVkImportMemoryFdInfoKHR.Ptroperations.Auxiliary interface for unifyingVkImportMemoryHostPointerInfoEXTandVkImportMemoryHostPointerInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImportMemoryMetalHandleInfoEXTandVkImportMemoryMetalHandleInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImportMemorySciBufInfoNVandVkImportMemorySciBufInfoNV.Ptroperations.Auxiliary interface for unifyingVkImportMemoryWin32HandleInfoKHRandVkImportMemoryWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkImportMemoryWin32HandleInfoNVandVkImportMemoryWin32HandleInfoNV.Ptroperations.Auxiliary interface for unifyingVkImportMemoryZirconHandleInfoFUCHSIAandVkImportMemoryZirconHandleInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkImportMetalBufferInfoEXTandVkImportMetalBufferInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImportMetalIOSurfaceInfoEXTandVkImportMetalIOSurfaceInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImportMetalSharedEventInfoEXTandVkImportMetalSharedEventInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImportMetalTextureInfoEXTandVkImportMetalTextureInfoEXT.Ptroperations.Auxiliary interface for unifyingVkImportScreenBufferInfoQNXandVkImportScreenBufferInfoQNX.Ptroperations.Auxiliary interface for unifyingVkImportSemaphoreFdInfoKHRandVkImportSemaphoreFdInfoKHR.Ptroperations.Auxiliary interface for unifyingVkImportSemaphoreSciSyncInfoNVandVkImportSemaphoreSciSyncInfoNV.Ptroperations.Auxiliary interface for unifyingVkImportSemaphoreWin32HandleInfoKHRandVkImportSemaphoreWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkImportSemaphoreZirconHandleInfoFUCHSIAandVkImportSemaphoreZirconHandleInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsExecutionSetTokenEXTandVkIndirectCommandsExecutionSetTokenEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsIndexBufferTokenEXTandVkIndirectCommandsIndexBufferTokenEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsLayoutCreateInfoEXTandVkIndirectCommandsLayoutCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsLayoutCreateInfoNVandVkIndirectCommandsLayoutCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsLayoutTokenEXTandVkIndirectCommandsLayoutTokenEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsLayoutTokenNVandVkIndirectCommandsLayoutTokenNV.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsPushConstantTokenEXTandVkIndirectCommandsPushConstantTokenEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsStreamNVandVkIndirectCommandsStreamNV.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsTokenDataEXTandVkIndirectCommandsTokenDataEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectCommandsVertexBufferTokenEXTandVkIndirectCommandsVertexBufferTokenEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectExecutionSetCreateInfoEXTandVkIndirectExecutionSetCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectExecutionSetInfoEXTandVkIndirectExecutionSetInfoEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectExecutionSetPipelineInfoEXTandVkIndirectExecutionSetPipelineInfoEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectExecutionSetShaderInfoEXTandVkIndirectExecutionSetShaderInfoEXT.Ptroperations.Auxiliary interface for unifyingVkIndirectExecutionSetShaderLayoutInfoEXTandVkIndirectExecutionSetShaderLayoutInfoEXT.Ptroperations.Auxiliary interface for unifyingVkInitializePerformanceApiInfoINTELandVkInitializePerformanceApiInfoINTEL.Ptroperations.Auxiliary interface for unifyingVkInputAttachmentAspectReferenceandVkInputAttachmentAspectReference.Ptroperations.Auxiliary interface for unifyingVkInstanceCreateInfoandVkInstanceCreateInfo.Ptroperations.Auxiliary interface for unifyingVkIOSSurfaceCreateInfoMVKandVkIOSSurfaceCreateInfoMVK.Ptroperations.Auxiliary interface for unifyingVkLatencySleepInfoNVandVkLatencySleepInfoNV.Ptroperations.Auxiliary interface for unifyingVkLatencySleepModeInfoNVandVkLatencySleepModeInfoNV.Ptroperations.Auxiliary interface for unifyingVkLatencySubmissionPresentIdNVandVkLatencySubmissionPresentIdNV.Ptroperations.Auxiliary interface for unifyingVkLatencySurfaceCapabilitiesNVandVkLatencySurfaceCapabilitiesNV.Ptroperations.Auxiliary interface for unifyingVkLatencyTimingsFrameReportNVandVkLatencyTimingsFrameReportNV.Ptroperations.Auxiliary interface for unifyingVkLayerPropertiesandVkLayerProperties.Ptroperations.Auxiliary interface for unifyingVkLayerSettingEXTandVkLayerSettingEXT.Ptroperations.Auxiliary interface for unifyingVkLayerSettingsCreateInfoEXTandVkLayerSettingsCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMacOSSurfaceCreateInfoMVKandVkMacOSSurfaceCreateInfoMVK.Ptroperations.Auxiliary interface for unifyingVkMappedMemoryRangeandVkMappedMemoryRange.Ptroperations.Auxiliary interface for unifyingVkMemoryAllocateFlagsInfoandVkMemoryAllocateFlagsInfo.Ptroperations.Auxiliary interface for unifyingVkMemoryAllocateInfoandVkMemoryAllocateInfo.Ptroperations.Auxiliary interface for unifyingVkMemoryBarrierandVkMemoryBarrier.Ptroperations.Auxiliary interface for unifyingVkMemoryBarrier2andVkMemoryBarrier2.Ptroperations.Auxiliary interface for unifyingVkMemoryBarrierAccessFlags3KHRandVkMemoryBarrierAccessFlags3KHR.Ptroperations.Auxiliary interface for unifyingVkMemoryDedicatedAllocateInfoandVkMemoryDedicatedAllocateInfo.Ptroperations.Auxiliary interface for unifyingVkMemoryDedicatedRequirementsandVkMemoryDedicatedRequirements.Ptroperations.Auxiliary interface for unifyingVkMemoryFdPropertiesKHRandVkMemoryFdPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkMemoryGetAndroidHardwareBufferInfoANDROIDandVkMemoryGetAndroidHardwareBufferInfoANDROID.Ptroperations.Auxiliary interface for unifyingVkMemoryGetFdInfoKHRandVkMemoryGetFdInfoKHR.Ptroperations.Auxiliary interface for unifyingVkMemoryGetMetalHandleInfoEXTandVkMemoryGetMetalHandleInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMemoryGetRemoteAddressInfoNVandVkMemoryGetRemoteAddressInfoNV.Ptroperations.Auxiliary interface for unifyingVkMemoryGetSciBufInfoNVandVkMemoryGetSciBufInfoNV.Ptroperations.Auxiliary interface for unifyingVkMemoryGetWin32HandleInfoKHRandVkMemoryGetWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkMemoryGetZirconHandleInfoFUCHSIAandVkMemoryGetZirconHandleInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkMemoryHeapandVkMemoryHeap.Ptroperations.Auxiliary interface for unifyingVkMemoryHostPointerPropertiesEXTandVkMemoryHostPointerPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkMemoryMapInfoandVkMemoryMapInfo.Ptroperations.Auxiliary interface for unifyingVkMemoryMapPlacedInfoEXTandVkMemoryMapPlacedInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMemoryMetalHandlePropertiesEXTandVkMemoryMetalHandlePropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkMemoryOpaqueCaptureAddressAllocateInfoandVkMemoryOpaqueCaptureAddressAllocateInfo.Ptroperations.Auxiliary interface for unifyingVkMemoryPriorityAllocateInfoEXTandVkMemoryPriorityAllocateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMemoryRequirementsandVkMemoryRequirements.Ptroperations.Auxiliary interface for unifyingVkMemoryRequirements2andVkMemoryRequirements2.Ptroperations.Auxiliary interface for unifyingVkMemorySciBufPropertiesNVandVkMemorySciBufPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkMemoryToImageCopyandVkMemoryToImageCopy.Ptroperations.Auxiliary interface for unifyingVkMemoryTypeandVkMemoryType.Ptroperations.Auxiliary interface for unifyingVkMemoryUnmapInfoandVkMemoryUnmapInfo.Ptroperations.Auxiliary interface for unifyingVkMemoryWin32HandlePropertiesKHRandVkMemoryWin32HandlePropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkMemoryZirconHandlePropertiesFUCHSIAandVkMemoryZirconHandlePropertiesFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkMetalSurfaceCreateInfoEXTandVkMetalSurfaceCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMicromapBuildInfoEXTandVkMicromapBuildInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMicromapBuildSizesInfoEXTandVkMicromapBuildSizesInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMicromapCreateInfoEXTandVkMicromapCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMicromapTriangleEXTandVkMicromapTriangleEXT.Ptroperations.Auxiliary interface for unifyingVkMicromapUsageEXTandVkMicromapUsageEXT.Ptroperations.Auxiliary interface for unifyingVkMicromapVersionInfoEXTandVkMicromapVersionInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMultiDrawIndexedInfoEXTandVkMultiDrawIndexedInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMultiDrawInfoEXTandVkMultiDrawInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMultisampledRenderToSingleSampledInfoEXTandVkMultisampledRenderToSingleSampledInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMultisamplePropertiesEXTandVkMultisamplePropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkMultiviewPerViewAttributesInfoNVXandVkMultiviewPerViewAttributesInfoNVX.Ptroperations.Auxiliary interface for unifyingVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOMandVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkMutableDescriptorTypeCreateInfoEXTandVkMutableDescriptorTypeCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkMutableDescriptorTypeListEXTandVkMutableDescriptorTypeListEXT.Ptroperations.Auxiliary interface for unifyingVkOffset2DandVkOffset2D.Ptroperations.Auxiliary interface for unifyingVkOffset3DandVkOffset3D.Ptroperations.Auxiliary interface for unifyingVkOpaqueCaptureDescriptorDataCreateInfoEXTandVkOpaqueCaptureDescriptorDataCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkOpticalFlowExecuteInfoNVandVkOpticalFlowExecuteInfoNV.Ptroperations.Auxiliary interface for unifyingVkOpticalFlowImageFormatInfoNVandVkOpticalFlowImageFormatInfoNV.Ptroperations.Auxiliary interface for unifyingVkOpticalFlowImageFormatPropertiesNVandVkOpticalFlowImageFormatPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkOpticalFlowSessionCreateInfoNVandVkOpticalFlowSessionCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkOpticalFlowSessionCreatePrivateDataInfoNVandVkOpticalFlowSessionCreatePrivateDataInfoNV.Ptroperations.Auxiliary interface for unifyingVkOutOfBandQueueTypeInfoNVandVkOutOfBandQueueTypeInfoNV.Ptroperations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureFlagsNVandVkPartitionedAccelerationStructureFlagsNV.Ptroperations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureInstancesInputNVandVkPartitionedAccelerationStructureInstancesInputNV.Ptroperations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureUpdateInstanceDataNVandVkPartitionedAccelerationStructureUpdateInstanceDataNV.Ptroperations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureWriteInstanceDataNVandVkPartitionedAccelerationStructureWriteInstanceDataNV.Ptroperations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureWritePartitionTranslationDataNVandVkPartitionedAccelerationStructureWritePartitionTranslationDataNV.Ptroperations.Auxiliary interface for unifyingVkPastPresentationTimingGOOGLEandVkPastPresentationTimingGOOGLE.Ptroperations.Auxiliary interface for unifyingVkPerformanceConfigurationAcquireInfoINTELandVkPerformanceConfigurationAcquireInfoINTEL.Ptroperations.Auxiliary interface for unifyingVkPerformanceCounterDescriptionKHRandVkPerformanceCounterDescriptionKHR.Ptroperations.Auxiliary interface for unifyingVkPerformanceCounterKHRandVkPerformanceCounterKHR.Ptroperations.Auxiliary interface for unifyingVkPerformanceCounterResultKHRandVkPerformanceCounterResultKHR.Ptroperations.Auxiliary interface for unifyingVkPerformanceMarkerInfoINTELandVkPerformanceMarkerInfoINTEL.Ptroperations.Auxiliary interface for unifyingVkPerformanceOverrideInfoINTELandVkPerformanceOverrideInfoINTEL.Ptroperations.Auxiliary interface for unifyingVkPerformanceQueryReservationInfoKHRandVkPerformanceQueryReservationInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPerformanceQuerySubmitInfoKHRandVkPerformanceQuerySubmitInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPerformanceStreamMarkerInfoINTELandVkPerformanceStreamMarkerInfoINTEL.Ptroperations.Auxiliary interface for unifyingVkPerformanceValueDataINTELandVkPerformanceValueDataINTEL.Ptroperations.Auxiliary interface for unifyingVkPerformanceValueINTELandVkPerformanceValueINTEL.Ptroperations.Auxiliary interface for unifyingVkPerTileBeginInfoQCOMandVkPerTileBeginInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkPerTileEndInfoQCOMandVkPerTileEndInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevice16BitStorageFeaturesandVkPhysicalDevice16BitStorageFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevice4444FormatsFeaturesEXTandVkPhysicalDevice4444FormatsFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevice8BitStorageFeaturesandVkPhysicalDevice8BitStorageFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceAccelerationStructureFeaturesKHRandVkPhysicalDeviceAccelerationStructureFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceAccelerationStructurePropertiesKHRandVkPhysicalDeviceAccelerationStructurePropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceAddressBindingReportFeaturesEXTandVkPhysicalDeviceAddressBindingReportFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceAmigoProfilingFeaturesSECandVkPhysicalDeviceAmigoProfilingFeaturesSEC.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceAntiLagFeaturesAMDandVkPhysicalDeviceAntiLagFeaturesAMD.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceASTCDecodeFeaturesEXTandVkPhysicalDeviceASTCDecodeFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXTandVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXTandVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceBlendOperationAdvancedFeaturesEXTandVkPhysicalDeviceBlendOperationAdvancedFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceBlendOperationAdvancedPropertiesEXTandVkPhysicalDeviceBlendOperationAdvancedPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceBorderColorSwizzleFeaturesEXTandVkPhysicalDeviceBorderColorSwizzleFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceBufferDeviceAddressFeaturesandVkPhysicalDeviceBufferDeviceAddressFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceBufferDeviceAddressFeaturesEXTandVkPhysicalDeviceBufferDeviceAddressFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceClusterAccelerationStructureFeaturesNVandVkPhysicalDeviceClusterAccelerationStructureFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceClusterAccelerationStructurePropertiesNVandVkPhysicalDeviceClusterAccelerationStructurePropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEIandVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEI.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEIandVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEI.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEIandVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEI.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCoherentMemoryFeaturesAMDandVkPhysicalDeviceCoherentMemoryFeaturesAMD.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceColorWriteEnableFeaturesEXTandVkPhysicalDeviceColorWriteEnableFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCommandBufferInheritanceFeaturesNVandVkPhysicalDeviceCommandBufferInheritanceFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceComputeShaderDerivativesFeaturesKHRandVkPhysicalDeviceComputeShaderDerivativesFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceComputeShaderDerivativesPropertiesKHRandVkPhysicalDeviceComputeShaderDerivativesPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceConditionalRenderingFeaturesEXTandVkPhysicalDeviceConditionalRenderingFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceConservativeRasterizationPropertiesEXTandVkPhysicalDeviceConservativeRasterizationPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrix2FeaturesNVandVkPhysicalDeviceCooperativeMatrix2FeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrix2PropertiesNVandVkPhysicalDeviceCooperativeMatrix2PropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixFeaturesKHRandVkPhysicalDeviceCooperativeMatrixFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixFeaturesNVandVkPhysicalDeviceCooperativeMatrixFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixPropertiesKHRandVkPhysicalDeviceCooperativeMatrixPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixPropertiesNVandVkPhysicalDeviceCooperativeMatrixPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeVectorFeaturesNVandVkPhysicalDeviceCooperativeVectorFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeVectorPropertiesNVandVkPhysicalDeviceCooperativeVectorPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCopyMemoryIndirectFeaturesNVandVkPhysicalDeviceCopyMemoryIndirectFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCopyMemoryIndirectPropertiesNVandVkPhysicalDeviceCopyMemoryIndirectPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCornerSampledImageFeaturesNVandVkPhysicalDeviceCornerSampledImageFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCoverageReductionModeFeaturesNVandVkPhysicalDeviceCoverageReductionModeFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCubicClampFeaturesQCOMandVkPhysicalDeviceCubicClampFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCubicWeightsFeaturesQCOMandVkPhysicalDeviceCubicWeightsFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCudaKernelLaunchFeaturesNVandVkPhysicalDeviceCudaKernelLaunchFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCudaKernelLaunchPropertiesNVandVkPhysicalDeviceCudaKernelLaunchPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCustomBorderColorFeaturesEXTandVkPhysicalDeviceCustomBorderColorFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceCustomBorderColorPropertiesEXTandVkPhysicalDeviceCustomBorderColorPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNVandVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDepthBiasControlFeaturesEXTandVkPhysicalDeviceDepthBiasControlFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClampControlFeaturesEXTandVkPhysicalDeviceDepthClampControlFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClampZeroOneFeaturesKHRandVkPhysicalDeviceDepthClampZeroOneFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClipControlFeaturesEXTandVkPhysicalDeviceDepthClipControlFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClipEnableFeaturesEXTandVkPhysicalDeviceDepthClipEnableFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDepthStencilResolvePropertiesandVkPhysicalDeviceDepthStencilResolveProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXTandVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorBufferFeaturesEXTandVkPhysicalDeviceDescriptorBufferFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorBufferPropertiesEXTandVkPhysicalDeviceDescriptorBufferPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorIndexingFeaturesandVkPhysicalDeviceDescriptorIndexingFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorIndexingPropertiesandVkPhysicalDeviceDescriptorIndexingProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNVandVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVEandVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNVandVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXTandVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNVandVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXTandVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNVandVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceMemoryReportFeaturesEXTandVkPhysicalDeviceDeviceMemoryReportFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDiagnosticsConfigFeaturesNVandVkPhysicalDeviceDiagnosticsConfigFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDiscardRectanglePropertiesEXTandVkPhysicalDeviceDiscardRectanglePropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDisplacementMicromapFeaturesNVandVkPhysicalDeviceDisplacementMicromapFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDisplacementMicromapPropertiesNVandVkPhysicalDeviceDisplacementMicromapPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDriverPropertiesandVkPhysicalDeviceDriverProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDrmPropertiesEXTandVkPhysicalDeviceDrmPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDynamicRenderingFeaturesandVkPhysicalDeviceDynamicRenderingFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDynamicRenderingLocalReadFeaturesandVkPhysicalDeviceDynamicRenderingLocalReadFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXTandVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExclusiveScissorFeaturesNVandVkPhysicalDeviceExclusiveScissorFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicState2FeaturesEXTandVkPhysicalDeviceExtendedDynamicState2FeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicState3FeaturesEXTandVkPhysicalDeviceExtendedDynamicState3FeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicState3PropertiesEXTandVkPhysicalDeviceExtendedDynamicState3PropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicStateFeaturesEXTandVkPhysicalDeviceExtendedDynamicStateFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNVandVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNVandVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalBufferInfoandVkPhysicalDeviceExternalBufferInfo.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalComputeQueuePropertiesNVandVkPhysicalDeviceExternalComputeQueuePropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalFenceInfoandVkPhysicalDeviceExternalFenceInfo.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalFormatResolveFeaturesANDROIDandVkPhysicalDeviceExternalFormatResolveFeaturesANDROID.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalFormatResolvePropertiesANDROIDandVkPhysicalDeviceExternalFormatResolvePropertiesANDROID.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalImageFormatInfoandVkPhysicalDeviceExternalImageFormatInfo.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemoryHostPropertiesEXTandVkPhysicalDeviceExternalMemoryHostPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemoryRDMAFeaturesNVandVkPhysicalDeviceExternalMemoryRDMAFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemorySciBufFeaturesNVandVkPhysicalDeviceExternalMemorySciBufFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNXandVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNX.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalSciSync2FeaturesNVandVkPhysicalDeviceExternalSciSync2FeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalSciSyncFeaturesNVandVkPhysicalDeviceExternalSciSyncFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceExternalSemaphoreInfoandVkPhysicalDeviceExternalSemaphoreInfo.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFaultFeaturesEXTandVkPhysicalDeviceFaultFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFeaturesandVkPhysicalDeviceFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFeatures2andVkPhysicalDeviceFeatures2.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFloatControlsPropertiesandVkPhysicalDeviceFloatControlsProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMap2FeaturesEXTandVkPhysicalDeviceFragmentDensityMap2FeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMap2PropertiesEXTandVkPhysicalDeviceFragmentDensityMap2PropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapFeaturesEXTandVkPhysicalDeviceFragmentDensityMapFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXTandVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXTandVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapPropertiesEXTandVkPhysicalDeviceFragmentDensityMapPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHRandVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHRandVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShaderInterlockFeaturesEXTandVkPhysicalDeviceFragmentShaderInterlockFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNVandVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNVandVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateFeaturesKHRandVkPhysicalDeviceFragmentShadingRateFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateKHRandVkPhysicalDeviceFragmentShadingRateKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRatePropertiesKHRandVkPhysicalDeviceFragmentShadingRatePropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceFrameBoundaryFeaturesEXTandVkPhysicalDeviceFrameBoundaryFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceGlobalPriorityQueryFeaturesandVkPhysicalDeviceGlobalPriorityQueryFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXTandVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXTandVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceGroupPropertiesandVkPhysicalDeviceGroupProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceHdrVividFeaturesHUAWEIandVkPhysicalDeviceHdrVividFeaturesHUAWEI.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceHostImageCopyFeaturesandVkPhysicalDeviceHostImageCopyFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceHostImageCopyPropertiesandVkPhysicalDeviceHostImageCopyProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceHostQueryResetFeaturesandVkPhysicalDeviceHostQueryResetFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceIDPropertiesandVkPhysicalDeviceIDProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImage2DViewOf3DFeaturesEXTandVkPhysicalDeviceImage2DViewOf3DFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageAlignmentControlFeaturesMESAandVkPhysicalDeviceImageAlignmentControlFeaturesMESA.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageAlignmentControlPropertiesMESAandVkPhysicalDeviceImageAlignmentControlPropertiesMESA.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageCompressionControlFeaturesEXTandVkPhysicalDeviceImageCompressionControlFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXTandVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageDrmFormatModifierInfoEXTandVkPhysicalDeviceImageDrmFormatModifierInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageFormatInfo2andVkPhysicalDeviceImageFormatInfo2.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImagelessFramebufferFeaturesandVkPhysicalDeviceImagelessFramebufferFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessing2FeaturesQCOMandVkPhysicalDeviceImageProcessing2FeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessing2PropertiesQCOMandVkPhysicalDeviceImageProcessing2PropertiesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessingFeaturesQCOMandVkPhysicalDeviceImageProcessingFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessingPropertiesQCOMandVkPhysicalDeviceImageProcessingPropertiesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageRobustnessFeaturesandVkPhysicalDeviceImageRobustnessFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXTandVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageViewImageFormatInfoEXTandVkPhysicalDeviceImageViewImageFormatInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceImageViewMinLodFeaturesEXTandVkPhysicalDeviceImageViewMinLodFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceIndexTypeUint8FeaturesandVkPhysicalDeviceIndexTypeUint8Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceInheritedViewportScissorFeaturesNVandVkPhysicalDeviceInheritedViewportScissorFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceInlineUniformBlockFeaturesandVkPhysicalDeviceInlineUniformBlockFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceInlineUniformBlockPropertiesandVkPhysicalDeviceInlineUniformBlockProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceInvocationMaskFeaturesHUAWEIandVkPhysicalDeviceInvocationMaskFeaturesHUAWEI.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredApiPropertiesKHRandVkPhysicalDeviceLayeredApiPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredApiPropertiesListKHRandVkPhysicalDeviceLayeredApiPropertiesListKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredApiVulkanPropertiesKHRandVkPhysicalDeviceLayeredApiVulkanPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredDriverPropertiesMSFTandVkPhysicalDeviceLayeredDriverPropertiesMSFT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLegacyDitheringFeaturesEXTandVkPhysicalDeviceLegacyDitheringFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLegacyVertexAttributesFeaturesEXTandVkPhysicalDeviceLegacyVertexAttributesFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLegacyVertexAttributesPropertiesEXTandVkPhysicalDeviceLegacyVertexAttributesPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLimitsandVkPhysicalDeviceLimits.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLinearColorAttachmentFeaturesNVandVkPhysicalDeviceLinearColorAttachmentFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLineRasterizationFeaturesandVkPhysicalDeviceLineRasterizationFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceLineRasterizationPropertiesandVkPhysicalDeviceLineRasterizationProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance3PropertiesandVkPhysicalDeviceMaintenance3Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance4FeaturesandVkPhysicalDeviceMaintenance4Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance4PropertiesandVkPhysicalDeviceMaintenance4Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance5FeaturesandVkPhysicalDeviceMaintenance5Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance5PropertiesandVkPhysicalDeviceMaintenance5Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance6FeaturesandVkPhysicalDeviceMaintenance6Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance6PropertiesandVkPhysicalDeviceMaintenance6Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance7FeaturesKHRandVkPhysicalDeviceMaintenance7FeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance7PropertiesKHRandVkPhysicalDeviceMaintenance7PropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance8FeaturesKHRandVkPhysicalDeviceMaintenance8FeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMapMemoryPlacedFeaturesEXTandVkPhysicalDeviceMapMemoryPlacedFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMapMemoryPlacedPropertiesEXTandVkPhysicalDeviceMapMemoryPlacedPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryBudgetPropertiesEXTandVkPhysicalDeviceMemoryBudgetPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryDecompressionFeaturesNVandVkPhysicalDeviceMemoryDecompressionFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryDecompressionPropertiesNVandVkPhysicalDeviceMemoryDecompressionPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryPriorityFeaturesEXTandVkPhysicalDeviceMemoryPriorityFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryPropertiesandVkPhysicalDeviceMemoryProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryProperties2andVkPhysicalDeviceMemoryProperties2.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderFeaturesEXTandVkPhysicalDeviceMeshShaderFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderFeaturesNVandVkPhysicalDeviceMeshShaderFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderPropertiesEXTandVkPhysicalDeviceMeshShaderPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderPropertiesNVandVkPhysicalDeviceMeshShaderPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultiDrawFeaturesEXTandVkPhysicalDeviceMultiDrawFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultiDrawPropertiesEXTandVkPhysicalDeviceMultiDrawPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXTandVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewFeaturesandVkPhysicalDeviceMultiviewFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVXandVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOMandVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOMandVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewPropertiesandVkPhysicalDeviceMultiviewProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceMutableDescriptorTypeFeaturesEXTandVkPhysicalDeviceMutableDescriptorTypeFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceNestedCommandBufferFeaturesEXTandVkPhysicalDeviceNestedCommandBufferFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceNestedCommandBufferPropertiesEXTandVkPhysicalDeviceNestedCommandBufferPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXTandVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceOpacityMicromapFeaturesEXTandVkPhysicalDeviceOpacityMicromapFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceOpacityMicromapPropertiesEXTandVkPhysicalDeviceOpacityMicromapPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceOpticalFlowFeaturesNVandVkPhysicalDeviceOpticalFlowFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceOpticalFlowPropertiesNVandVkPhysicalDeviceOpticalFlowPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXTandVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePartitionedAccelerationStructureFeaturesNVandVkPhysicalDevicePartitionedAccelerationStructureFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePartitionedAccelerationStructurePropertiesNVandVkPhysicalDevicePartitionedAccelerationStructurePropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePCIBusInfoPropertiesEXTandVkPhysicalDevicePCIBusInfoPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePerformanceQueryFeaturesKHRandVkPhysicalDevicePerformanceQueryFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePerformanceQueryPropertiesKHRandVkPhysicalDevicePerformanceQueryPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePerStageDescriptorSetFeaturesNVandVkPhysicalDevicePerStageDescriptorSetFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineBinaryFeaturesKHRandVkPhysicalDevicePipelineBinaryFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineBinaryPropertiesKHRandVkPhysicalDevicePipelineBinaryPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineCreationCacheControlFeaturesandVkPhysicalDevicePipelineCreationCacheControlFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHRandVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXTandVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineOpacityMicromapFeaturesARMandVkPhysicalDevicePipelineOpacityMicromapFeaturesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelinePropertiesFeaturesEXTandVkPhysicalDevicePipelinePropertiesFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineProtectedAccessFeaturesandVkPhysicalDevicePipelineProtectedAccessFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineRobustnessFeaturesandVkPhysicalDevicePipelineRobustnessFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePipelineRobustnessPropertiesandVkPhysicalDevicePipelineRobustnessProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePointClippingPropertiesandVkPhysicalDevicePointClippingProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePortabilitySubsetFeaturesKHRandVkPhysicalDevicePortabilitySubsetFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePortabilitySubsetPropertiesKHRandVkPhysicalDevicePortabilitySubsetPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePresentBarrierFeaturesNVandVkPhysicalDevicePresentBarrierFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePresentIdFeaturesKHRandVkPhysicalDevicePresentIdFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePresentMeteringFeaturesNVandVkPhysicalDevicePresentMeteringFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXTandVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePresentWaitFeaturesKHRandVkPhysicalDevicePresentWaitFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXTandVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXTandVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePrivateDataFeaturesandVkPhysicalDevicePrivateDataFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePropertiesandVkPhysicalDeviceProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceProperties2andVkPhysicalDeviceProperties2.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceProtectedMemoryFeaturesandVkPhysicalDeviceProtectedMemoryFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceProtectedMemoryPropertiesandVkPhysicalDeviceProtectedMemoryProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceProvokingVertexFeaturesEXTandVkPhysicalDeviceProvokingVertexFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceProvokingVertexPropertiesEXTandVkPhysicalDeviceProvokingVertexPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDevicePushDescriptorPropertiesandVkPhysicalDevicePushDescriptorProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXTandVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRawAccessChainsFeaturesNVandVkPhysicalDeviceRawAccessChainsFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayQueryFeaturesKHRandVkPhysicalDeviceRayQueryFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingInvocationReorderFeaturesNVandVkPhysicalDeviceRayTracingInvocationReorderFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingInvocationReorderPropertiesNVandVkPhysicalDeviceRayTracingInvocationReorderPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNVandVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingMaintenance1FeaturesKHRandVkPhysicalDeviceRayTracingMaintenance1FeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingMotionBlurFeaturesNVandVkPhysicalDeviceRayTracingMotionBlurFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPipelineFeaturesKHRandVkPhysicalDeviceRayTracingPipelineFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPipelinePropertiesKHRandVkPhysicalDeviceRayTracingPipelinePropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPositionFetchFeaturesKHRandVkPhysicalDeviceRayTracingPositionFetchFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPropertiesNVandVkPhysicalDeviceRayTracingPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingValidationFeaturesNVandVkPhysicalDeviceRayTracingValidationFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMGandVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMG.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRenderPassStripedFeaturesARMandVkPhysicalDeviceRenderPassStripedFeaturesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRenderPassStripedPropertiesARMandVkPhysicalDeviceRenderPassStripedPropertiesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRepresentativeFragmentTestFeaturesNVandVkPhysicalDeviceRepresentativeFragmentTestFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRGBA10X6FormatsFeaturesEXTandVkPhysicalDeviceRGBA10X6FormatsFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRobustness2FeaturesEXTandVkPhysicalDeviceRobustness2FeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceRobustness2PropertiesEXTandVkPhysicalDeviceRobustness2PropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSampleLocationsPropertiesEXTandVkPhysicalDeviceSampleLocationsPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSamplerFilterMinmaxPropertiesandVkPhysicalDeviceSamplerFilterMinmaxProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSamplerYcbcrConversionFeaturesandVkPhysicalDeviceSamplerYcbcrConversionFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceScalarBlockLayoutFeaturesandVkPhysicalDeviceScalarBlockLayoutFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSchedulingControlsFeaturesARMandVkPhysicalDeviceSchedulingControlsFeaturesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSchedulingControlsPropertiesARMandVkPhysicalDeviceSchedulingControlsPropertiesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesandVkPhysicalDeviceSeparateDepthStencilLayoutsFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNVandVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicFloat2FeaturesEXTandVkPhysicalDeviceShaderAtomicFloat2FeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicFloatFeaturesEXTandVkPhysicalDeviceShaderAtomicFloatFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicInt64FeaturesandVkPhysicalDeviceShaderAtomicInt64Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderBfloat16FeaturesKHRandVkPhysicalDeviceShaderBfloat16FeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderClockFeaturesKHRandVkPhysicalDeviceShaderClockFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCoreBuiltinsFeaturesARMandVkPhysicalDeviceShaderCoreBuiltinsFeaturesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCoreBuiltinsPropertiesARMandVkPhysicalDeviceShaderCoreBuiltinsPropertiesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCoreProperties2AMDandVkPhysicalDeviceShaderCoreProperties2AMD.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCorePropertiesAMDandVkPhysicalDeviceShaderCorePropertiesAMD.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCorePropertiesARMandVkPhysicalDeviceShaderCorePropertiesARM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderDemoteToHelperInvocationFeaturesandVkPhysicalDeviceShaderDemoteToHelperInvocationFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderDrawParametersFeaturesandVkPhysicalDeviceShaderDrawParametersFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMDandVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderEnqueueFeaturesAMDXandVkPhysicalDeviceShaderEnqueueFeaturesAMDX.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderEnqueuePropertiesAMDXandVkPhysicalDeviceShaderEnqueuePropertiesAMDX.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderExpectAssumeFeaturesandVkPhysicalDeviceShaderExpectAssumeFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderFloat16Int8FeaturesandVkPhysicalDeviceShaderFloat16Int8Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderFloatControls2FeaturesandVkPhysicalDeviceShaderFloatControls2Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXTandVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderImageFootprintFeaturesNVandVkPhysicalDeviceShaderImageFootprintFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderIntegerDotProductFeaturesandVkPhysicalDeviceShaderIntegerDotProductFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderIntegerDotProductPropertiesandVkPhysicalDeviceShaderIntegerDotProductProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTELandVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHRandVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderModuleIdentifierFeaturesEXTandVkPhysicalDeviceShaderModuleIdentifierFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderModuleIdentifierPropertiesEXTandVkPhysicalDeviceShaderModuleIdentifierPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderObjectFeaturesEXTandVkPhysicalDeviceShaderObjectFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderObjectPropertiesEXTandVkPhysicalDeviceShaderObjectPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderQuadControlFeaturesKHRandVkPhysicalDeviceShaderQuadControlFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHRandVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXTandVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSMBuiltinsFeaturesNVandVkPhysicalDeviceShaderSMBuiltinsFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSMBuiltinsPropertiesNVandVkPhysicalDeviceShaderSMBuiltinsPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSubgroupExtendedTypesFeaturesandVkPhysicalDeviceShaderSubgroupExtendedTypesFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSubgroupRotateFeaturesandVkPhysicalDeviceShaderSubgroupRotateFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHRandVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderTerminateInvocationFeaturesandVkPhysicalDeviceShaderTerminateInvocationFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderTileImageFeaturesEXTandVkPhysicalDeviceShaderTileImageFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShaderTileImagePropertiesEXTandVkPhysicalDeviceShaderTileImagePropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShadingRateImageFeaturesNVandVkPhysicalDeviceShadingRateImageFeaturesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceShadingRateImagePropertiesNVandVkPhysicalDeviceShadingRateImagePropertiesNV.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSparseImageFormatInfo2andVkPhysicalDeviceSparseImageFormatInfo2.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSparsePropertiesandVkPhysicalDeviceSparseProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSubgroupPropertiesandVkPhysicalDeviceSubgroupProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSubgroupSizeControlFeaturesandVkPhysicalDeviceSubgroupSizeControlFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSubgroupSizeControlPropertiesandVkPhysicalDeviceSubgroupSizeControlProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXTandVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSubpassShadingFeaturesHUAWEIandVkPhysicalDeviceSubpassShadingFeaturesHUAWEI.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSubpassShadingPropertiesHUAWEIandVkPhysicalDeviceSubpassShadingPropertiesHUAWEI.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSurfaceInfo2KHRandVkPhysicalDeviceSurfaceInfo2KHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSwapchainMaintenance1FeaturesEXTandVkPhysicalDeviceSwapchainMaintenance1FeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceSynchronization2FeaturesandVkPhysicalDeviceSynchronization2Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTexelBufferAlignmentFeaturesEXTandVkPhysicalDeviceTexelBufferAlignmentFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTexelBufferAlignmentPropertiesandVkPhysicalDeviceTexelBufferAlignmentProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTextureCompressionASTCHDRFeaturesandVkPhysicalDeviceTextureCompressionASTCHDRFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTileMemoryHeapFeaturesQCOMandVkPhysicalDeviceTileMemoryHeapFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTileMemoryHeapPropertiesQCOMandVkPhysicalDeviceTileMemoryHeapPropertiesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTilePropertiesFeaturesQCOMandVkPhysicalDeviceTilePropertiesFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTileShadingFeaturesQCOMandVkPhysicalDeviceTileShadingFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTileShadingPropertiesQCOMandVkPhysicalDeviceTileShadingPropertiesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTimelineSemaphoreFeaturesandVkPhysicalDeviceTimelineSemaphoreFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTimelineSemaphorePropertiesandVkPhysicalDeviceTimelineSemaphoreProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceToolPropertiesandVkPhysicalDeviceToolProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTransformFeedbackFeaturesEXTandVkPhysicalDeviceTransformFeedbackFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceTransformFeedbackPropertiesEXTandVkPhysicalDeviceTransformFeedbackPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceUniformBufferStandardLayoutFeaturesandVkPhysicalDeviceUniformBufferStandardLayoutFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVariablePointersFeaturesandVkPhysicalDeviceVariablePointersFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeDivisorFeaturesandVkPhysicalDeviceVertexAttributeDivisorFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeDivisorPropertiesandVkPhysicalDeviceVertexAttributeDivisorProperties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeDivisorPropertiesEXTandVkPhysicalDeviceVertexAttributeDivisorPropertiesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXTandVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVertexInputDynamicStateFeaturesEXTandVkPhysicalDeviceVertexInputDynamicStateFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVideoEncodeAV1FeaturesKHRandVkPhysicalDeviceVideoEncodeAV1FeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVideoEncodeQualityLevelInfoKHRandVkPhysicalDeviceVideoEncodeQualityLevelInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHRandVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVideoFormatInfoKHRandVkPhysicalDeviceVideoFormatInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVideoMaintenance1FeaturesKHRandVkPhysicalDeviceVideoMaintenance1FeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVideoMaintenance2FeaturesKHRandVkPhysicalDeviceVideoMaintenance2FeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan11FeaturesandVkPhysicalDeviceVulkan11Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan11PropertiesandVkPhysicalDeviceVulkan11Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan12FeaturesandVkPhysicalDeviceVulkan12Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan12PropertiesandVkPhysicalDeviceVulkan12Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan13FeaturesandVkPhysicalDeviceVulkan13Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan13PropertiesandVkPhysicalDeviceVulkan13Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan14FeaturesandVkPhysicalDeviceVulkan14Features.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan14PropertiesandVkPhysicalDeviceVulkan14Properties.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceVulkanMemoryModelFeaturesandVkPhysicalDeviceVulkanMemoryModelFeatures.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHRandVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXTandVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceYcbcrDegammaFeaturesQCOMandVkPhysicalDeviceYcbcrDegammaFeaturesQCOM.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceYcbcrImageArraysFeaturesEXTandVkPhysicalDeviceYcbcrImageArraysFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesandVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures.Ptroperations.Auxiliary interface for unifyingVkPipelineBinaryCreateInfoKHRandVkPipelineBinaryCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineBinaryDataInfoKHRandVkPipelineBinaryDataInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineBinaryDataKHRandVkPipelineBinaryDataKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineBinaryHandlesInfoKHRandVkPipelineBinaryHandlesInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineBinaryInfoKHRandVkPipelineBinaryInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineBinaryKeyKHRandVkPipelineBinaryKeyKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineBinaryKeysAndDataKHRandVkPipelineBinaryKeysAndDataKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineCacheCreateInfoandVkPipelineCacheCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineCacheHeaderVersionOneandVkPipelineCacheHeaderVersionOne.Ptroperations.Auxiliary interface for unifyingVkPipelineColorBlendAdvancedStateCreateInfoEXTandVkPipelineColorBlendAdvancedStateCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineColorBlendAttachmentStateandVkPipelineColorBlendAttachmentState.Ptroperations.Auxiliary interface for unifyingVkPipelineColorBlendStateCreateInfoandVkPipelineColorBlendStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineColorWriteCreateInfoEXTandVkPipelineColorWriteCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineCompilerControlCreateInfoAMDandVkPipelineCompilerControlCreateInfoAMD.Ptroperations.Auxiliary interface for unifyingVkPipelineCoverageModulationStateCreateInfoNVandVkPipelineCoverageModulationStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineCoverageReductionStateCreateInfoNVandVkPipelineCoverageReductionStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineCoverageToColorStateCreateInfoNVandVkPipelineCoverageToColorStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineCreateFlags2CreateInfoandVkPipelineCreateFlags2CreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineCreateInfoKHRandVkPipelineCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineCreationFeedbackandVkPipelineCreationFeedback.Ptroperations.Auxiliary interface for unifyingVkPipelineCreationFeedbackCreateInfoandVkPipelineCreationFeedbackCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineDepthStencilStateCreateInfoandVkPipelineDepthStencilStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineDiscardRectangleStateCreateInfoEXTandVkPipelineDiscardRectangleStateCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineDynamicStateCreateInfoandVkPipelineDynamicStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineExecutableInfoKHRandVkPipelineExecutableInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineExecutableInternalRepresentationKHRandVkPipelineExecutableInternalRepresentationKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineExecutablePropertiesKHRandVkPipelineExecutablePropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineExecutableStatisticKHRandVkPipelineExecutableStatisticKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineExecutableStatisticValueKHRandVkPipelineExecutableStatisticValueKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineFragmentShadingRateEnumStateCreateInfoNVandVkPipelineFragmentShadingRateEnumStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineFragmentShadingRateStateCreateInfoKHRandVkPipelineFragmentShadingRateStateCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineIndirectDeviceAddressInfoNVandVkPipelineIndirectDeviceAddressInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineInfoKHRandVkPipelineInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineInputAssemblyStateCreateInfoandVkPipelineInputAssemblyStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineLayoutCreateInfoandVkPipelineLayoutCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineLibraryCreateInfoKHRandVkPipelineLibraryCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPipelineMultisampleStateCreateInfoandVkPipelineMultisampleStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelinePropertiesIdentifierEXTandVkPipelinePropertiesIdentifierEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineRasterizationConservativeStateCreateInfoEXTandVkPipelineRasterizationConservativeStateCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineRasterizationDepthClipStateCreateInfoEXTandVkPipelineRasterizationDepthClipStateCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineRasterizationLineStateCreateInfoandVkPipelineRasterizationLineStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineRasterizationProvokingVertexStateCreateInfoEXTandVkPipelineRasterizationProvokingVertexStateCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineRasterizationStateCreateInfoandVkPipelineRasterizationStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineRasterizationStateRasterizationOrderAMDandVkPipelineRasterizationStateRasterizationOrderAMD.Ptroperations.Auxiliary interface for unifyingVkPipelineRasterizationStateStreamCreateInfoEXTandVkPipelineRasterizationStateStreamCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineRenderingCreateInfoandVkPipelineRenderingCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineRepresentativeFragmentTestStateCreateInfoNVandVkPipelineRepresentativeFragmentTestStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineRobustnessCreateInfoandVkPipelineRobustnessCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineSampleLocationsStateCreateInfoEXTandVkPipelineSampleLocationsStateCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineShaderStageCreateInfoandVkPipelineShaderStageCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineShaderStageModuleIdentifierCreateInfoEXTandVkPipelineShaderStageModuleIdentifierCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineShaderStageNodeCreateInfoAMDXandVkPipelineShaderStageNodeCreateInfoAMDX.Ptroperations.Auxiliary interface for unifyingVkPipelineShaderStageRequiredSubgroupSizeCreateInfoandVkPipelineShaderStageRequiredSubgroupSizeCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineTessellationDomainOriginStateCreateInfoandVkPipelineTessellationDomainOriginStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineTessellationStateCreateInfoandVkPipelineTessellationStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineVertexInputDivisorStateCreateInfoandVkPipelineVertexInputDivisorStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineVertexInputStateCreateInfoandVkPipelineVertexInputStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportCoarseSampleOrderStateCreateInfoNVandVkPipelineViewportCoarseSampleOrderStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportDepthClampControlCreateInfoEXTandVkPipelineViewportDepthClampControlCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportDepthClipControlCreateInfoEXTandVkPipelineViewportDepthClipControlCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportExclusiveScissorStateCreateInfoNVandVkPipelineViewportExclusiveScissorStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportShadingRateImageStateCreateInfoNVandVkPipelineViewportShadingRateImageStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportStateCreateInfoandVkPipelineViewportStateCreateInfo.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportSwizzleStateCreateInfoNVandVkPipelineViewportSwizzleStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPipelineViewportWScalingStateCreateInfoNVandVkPipelineViewportWScalingStateCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkPresentFrameTokenGGPandVkPresentFrameTokenGGP.Ptroperations.Auxiliary interface for unifyingVkPresentIdKHRandVkPresentIdKHR.Ptroperations.Auxiliary interface for unifyingVkPresentInfoKHRandVkPresentInfoKHR.Ptroperations.Auxiliary interface for unifyingVkPresentRegionKHRandVkPresentRegionKHR.Ptroperations.Auxiliary interface for unifyingVkPresentRegionsKHRandVkPresentRegionsKHR.Ptroperations.Auxiliary interface for unifyingVkPresentTimeGOOGLEandVkPresentTimeGOOGLE.Ptroperations.Auxiliary interface for unifyingVkPresentTimesInfoGOOGLEandVkPresentTimesInfoGOOGLE.Ptroperations.Auxiliary interface for unifyingVkPrivateDataSlotCreateInfoandVkPrivateDataSlotCreateInfo.Ptroperations.Auxiliary interface for unifyingVkProtectedSubmitInfoandVkProtectedSubmitInfo.Ptroperations.Auxiliary interface for unifyingVkPushConstantRangeandVkPushConstantRange.Ptroperations.Auxiliary interface for unifyingVkPushConstantsInfoandVkPushConstantsInfo.Ptroperations.Auxiliary interface for unifyingVkPushDescriptorSetInfoandVkPushDescriptorSetInfo.Ptroperations.Auxiliary interface for unifyingVkPushDescriptorSetWithTemplateInfoandVkPushDescriptorSetWithTemplateInfo.Ptroperations.Auxiliary interface for unifyingVkQueryLowLatencySupportNVandVkQueryLowLatencySupportNV.Ptroperations.Auxiliary interface for unifyingVkQueryPoolCreateInfoandVkQueryPoolCreateInfo.Ptroperations.Auxiliary interface for unifyingVkQueryPoolPerformanceCreateInfoKHRandVkQueryPoolPerformanceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkQueryPoolPerformanceQueryCreateInfoINTELandVkQueryPoolPerformanceQueryCreateInfoINTEL.Ptroperations.Auxiliary interface for unifyingVkQueryPoolVideoEncodeFeedbackCreateInfoKHRandVkQueryPoolVideoEncodeFeedbackCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkQueueFamilyCheckpointProperties2NVandVkQueueFamilyCheckpointProperties2NV.Ptroperations.Auxiliary interface for unifyingVkQueueFamilyCheckpointPropertiesNVandVkQueueFamilyCheckpointPropertiesNV.Ptroperations.Auxiliary interface for unifyingVkQueueFamilyGlobalPriorityPropertiesandVkQueueFamilyGlobalPriorityProperties.Ptroperations.Auxiliary interface for unifyingVkQueueFamilyPropertiesandVkQueueFamilyProperties.Ptroperations.Auxiliary interface for unifyingVkQueueFamilyProperties2andVkQueueFamilyProperties2.Ptroperations.Auxiliary interface for unifyingVkQueueFamilyQueryResultStatusPropertiesKHRandVkQueueFamilyQueryResultStatusPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkQueueFamilyVideoPropertiesKHRandVkQueueFamilyVideoPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkRayTracingPipelineClusterAccelerationStructureCreateInfoNVandVkRayTracingPipelineClusterAccelerationStructureCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkRayTracingPipelineCreateInfoKHRandVkRayTracingPipelineCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkRayTracingPipelineCreateInfoNVandVkRayTracingPipelineCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkRayTracingPipelineInterfaceCreateInfoKHRandVkRayTracingPipelineInterfaceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkRayTracingShaderGroupCreateInfoKHRandVkRayTracingShaderGroupCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkRayTracingShaderGroupCreateInfoNVandVkRayTracingShaderGroupCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkRect2DandVkRect2D.Ptroperations.Auxiliary interface for unifyingVkRectLayerKHRandVkRectLayerKHR.Ptroperations.Auxiliary interface for unifyingVkRefreshCycleDurationGOOGLEandVkRefreshCycleDurationGOOGLE.Ptroperations.Auxiliary interface for unifyingVkRefreshObjectKHRandVkRefreshObjectKHR.Ptroperations.Auxiliary interface for unifyingVkRefreshObjectListKHRandVkRefreshObjectListKHR.Ptroperations.Auxiliary interface for unifyingVkReleaseCapturedPipelineDataInfoKHRandVkReleaseCapturedPipelineDataInfoKHR.Ptroperations.Auxiliary interface for unifyingVkReleaseSwapchainImagesInfoEXTandVkReleaseSwapchainImagesInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderingAreaInfoandVkRenderingAreaInfo.Ptroperations.Auxiliary interface for unifyingVkRenderingAttachmentInfoandVkRenderingAttachmentInfo.Ptroperations.Auxiliary interface for unifyingVkRenderingAttachmentLocationInfoandVkRenderingAttachmentLocationInfo.Ptroperations.Auxiliary interface for unifyingVkRenderingEndInfoEXTandVkRenderingEndInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderingFragmentDensityMapAttachmentInfoEXTandVkRenderingFragmentDensityMapAttachmentInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderingFragmentShadingRateAttachmentInfoKHRandVkRenderingFragmentShadingRateAttachmentInfoKHR.Ptroperations.Auxiliary interface for unifyingVkRenderingInfoandVkRenderingInfo.Ptroperations.Auxiliary interface for unifyingVkRenderingInputAttachmentIndexInfoandVkRenderingInputAttachmentIndexInfo.Ptroperations.Auxiliary interface for unifyingVkRenderPassAttachmentBeginInfoandVkRenderPassAttachmentBeginInfo.Ptroperations.Auxiliary interface for unifyingVkRenderPassBeginInfoandVkRenderPassBeginInfo.Ptroperations.Auxiliary interface for unifyingVkRenderPassCreateInfoandVkRenderPassCreateInfo.Ptroperations.Auxiliary interface for unifyingVkRenderPassCreateInfo2andVkRenderPassCreateInfo2.Ptroperations.Auxiliary interface for unifyingVkRenderPassCreationControlEXTandVkRenderPassCreationControlEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassCreationFeedbackCreateInfoEXTandVkRenderPassCreationFeedbackCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassCreationFeedbackInfoEXTandVkRenderPassCreationFeedbackInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassFragmentDensityMapCreateInfoEXTandVkRenderPassFragmentDensityMapCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassFragmentDensityMapOffsetEndInfoEXTandVkRenderPassFragmentDensityMapOffsetEndInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassInputAttachmentAspectCreateInfoandVkRenderPassInputAttachmentAspectCreateInfo.Ptroperations.Auxiliary interface for unifyingVkRenderPassMultiviewCreateInfoandVkRenderPassMultiviewCreateInfo.Ptroperations.Auxiliary interface for unifyingVkRenderPassSampleLocationsBeginInfoEXTandVkRenderPassSampleLocationsBeginInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassStripeBeginInfoARMandVkRenderPassStripeBeginInfoARM.Ptroperations.Auxiliary interface for unifyingVkRenderPassStripeInfoARMandVkRenderPassStripeInfoARM.Ptroperations.Auxiliary interface for unifyingVkRenderPassStripeSubmitInfoARMandVkRenderPassStripeSubmitInfoARM.Ptroperations.Auxiliary interface for unifyingVkRenderPassSubpassFeedbackCreateInfoEXTandVkRenderPassSubpassFeedbackCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassSubpassFeedbackInfoEXTandVkRenderPassSubpassFeedbackInfoEXT.Ptroperations.Auxiliary interface for unifyingVkRenderPassTileShadingCreateInfoQCOMandVkRenderPassTileShadingCreateInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkRenderPassTransformBeginInfoQCOMandVkRenderPassTransformBeginInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkResolveImageInfo2andVkResolveImageInfo2.Ptroperations.Auxiliary interface for unifyingVkSampleLocationEXTandVkSampleLocationEXT.Ptroperations.Auxiliary interface for unifyingVkSampleLocationsInfoEXTandVkSampleLocationsInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSamplerBlockMatchWindowCreateInfoQCOMandVkSamplerBlockMatchWindowCreateInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkSamplerBorderColorComponentMappingCreateInfoEXTandVkSamplerBorderColorComponentMappingCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSamplerCaptureDescriptorDataInfoEXTandVkSamplerCaptureDescriptorDataInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSamplerCreateInfoandVkSamplerCreateInfo.Ptroperations.Auxiliary interface for unifyingVkSamplerCubicWeightsCreateInfoQCOMandVkSamplerCubicWeightsCreateInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkSamplerCustomBorderColorCreateInfoEXTandVkSamplerCustomBorderColorCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSamplerReductionModeCreateInfoandVkSamplerReductionModeCreateInfo.Ptroperations.Auxiliary interface for unifyingVkSamplerYcbcrConversionCreateInfoandVkSamplerYcbcrConversionCreateInfo.Ptroperations.Auxiliary interface for unifyingVkSamplerYcbcrConversionImageFormatPropertiesandVkSamplerYcbcrConversionImageFormatProperties.Ptroperations.Auxiliary interface for unifyingVkSamplerYcbcrConversionInfoandVkSamplerYcbcrConversionInfo.Ptroperations.Auxiliary interface for unifyingVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOMandVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkSciSyncAttributesInfoNVandVkSciSyncAttributesInfoNV.Ptroperations.Auxiliary interface for unifyingVkScreenBufferFormatPropertiesQNXandVkScreenBufferFormatPropertiesQNX.Ptroperations.Auxiliary interface for unifyingVkScreenBufferPropertiesQNXandVkScreenBufferPropertiesQNX.Ptroperations.Auxiliary interface for unifyingVkScreenSurfaceCreateInfoQNXandVkScreenSurfaceCreateInfoQNX.Ptroperations.Auxiliary interface for unifyingVkSemaphoreCreateInfoandVkSemaphoreCreateInfo.Ptroperations.Auxiliary interface for unifyingVkSemaphoreGetFdInfoKHRandVkSemaphoreGetFdInfoKHR.Ptroperations.Auxiliary interface for unifyingVkSemaphoreGetSciSyncInfoNVandVkSemaphoreGetSciSyncInfoNV.Ptroperations.Auxiliary interface for unifyingVkSemaphoreGetWin32HandleInfoKHRandVkSemaphoreGetWin32HandleInfoKHR.Ptroperations.Auxiliary interface for unifyingVkSemaphoreGetZirconHandleInfoFUCHSIAandVkSemaphoreGetZirconHandleInfoFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkSemaphoreSciSyncCreateInfoNVandVkSemaphoreSciSyncCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkSemaphoreSciSyncPoolCreateInfoNVandVkSemaphoreSciSyncPoolCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkSemaphoreSignalInfoandVkSemaphoreSignalInfo.Ptroperations.Auxiliary interface for unifyingVkSemaphoreSubmitInfoandVkSemaphoreSubmitInfo.Ptroperations.Auxiliary interface for unifyingVkSemaphoreTypeCreateInfoandVkSemaphoreTypeCreateInfo.Ptroperations.Auxiliary interface for unifyingVkSemaphoreWaitInfoandVkSemaphoreWaitInfo.Ptroperations.Auxiliary interface for unifyingVkSetDescriptorBufferOffsetsInfoEXTandVkSetDescriptorBufferOffsetsInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSetLatencyMarkerInfoNVandVkSetLatencyMarkerInfoNV.Ptroperations.Auxiliary interface for unifyingVkSetPresentConfigNVandVkSetPresentConfigNV.Ptroperations.Auxiliary interface for unifyingVkSetStateFlagsIndirectCommandNVandVkSetStateFlagsIndirectCommandNV.Ptroperations.Auxiliary interface for unifyingVkShaderCreateInfoEXTandVkShaderCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkShaderModuleCreateInfoandVkShaderModuleCreateInfo.Ptroperations.Auxiliary interface for unifyingVkShaderModuleIdentifierEXTandVkShaderModuleIdentifierEXT.Ptroperations.Auxiliary interface for unifyingVkShaderModuleValidationCacheCreateInfoEXTandVkShaderModuleValidationCacheCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkShaderResourceUsageAMDandVkShaderResourceUsageAMD.Ptroperations.Auxiliary interface for unifyingVkShaderStatisticsInfoAMDandVkShaderStatisticsInfoAMD.Ptroperations.Auxiliary interface for unifyingVkShadingRatePaletteNVandVkShadingRatePaletteNV.Ptroperations.Auxiliary interface for unifyingVkSharedPresentSurfaceCapabilitiesKHRandVkSharedPresentSurfaceCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkSparseBufferMemoryBindInfoandVkSparseBufferMemoryBindInfo.Ptroperations.Auxiliary interface for unifyingVkSparseImageFormatPropertiesandVkSparseImageFormatProperties.Ptroperations.Auxiliary interface for unifyingVkSparseImageFormatProperties2andVkSparseImageFormatProperties2.Ptroperations.Auxiliary interface for unifyingVkSparseImageMemoryBindandVkSparseImageMemoryBind.Ptroperations.Auxiliary interface for unifyingVkSparseImageMemoryBindInfoandVkSparseImageMemoryBindInfo.Ptroperations.Auxiliary interface for unifyingVkSparseImageMemoryRequirementsandVkSparseImageMemoryRequirements.Ptroperations.Auxiliary interface for unifyingVkSparseImageMemoryRequirements2andVkSparseImageMemoryRequirements2.Ptroperations.Auxiliary interface for unifyingVkSparseImageOpaqueMemoryBindInfoandVkSparseImageOpaqueMemoryBindInfo.Ptroperations.Auxiliary interface for unifyingVkSparseMemoryBindandVkSparseMemoryBind.Ptroperations.Auxiliary interface for unifyingVkSpecializationInfoandVkSpecializationInfo.Ptroperations.Auxiliary interface for unifyingVkSpecializationMapEntryandVkSpecializationMapEntry.Ptroperations.Auxiliary interface for unifyingVkSRTDataNVandVkSRTDataNV.Ptroperations.Auxiliary interface for unifyingVkStencilOpStateandVkStencilOpState.Ptroperations.Auxiliary interface for unifyingVkStreamDescriptorSurfaceCreateInfoGGPandVkStreamDescriptorSurfaceCreateInfoGGP.Ptroperations.Auxiliary interface for unifyingVkStridedDeviceAddressNVandVkStridedDeviceAddressNV.Ptroperations.Auxiliary interface for unifyingVkStridedDeviceAddressRegionKHRandVkStridedDeviceAddressRegionKHR.Ptroperations.Auxiliary interface for unifyingVkSubmitInfoandVkSubmitInfo.Ptroperations.Auxiliary interface for unifyingVkSubmitInfo2andVkSubmitInfo2.Ptroperations.Auxiliary interface for unifyingVkSubpassBeginInfoandVkSubpassBeginInfo.Ptroperations.Auxiliary interface for unifyingVkSubpassDependencyandVkSubpassDependency.Ptroperations.Auxiliary interface for unifyingVkSubpassDependency2andVkSubpassDependency2.Ptroperations.Auxiliary interface for unifyingVkSubpassDescriptionandVkSubpassDescription.Ptroperations.Auxiliary interface for unifyingVkSubpassDescription2andVkSubpassDescription2.Ptroperations.Auxiliary interface for unifyingVkSubpassDescriptionDepthStencilResolveandVkSubpassDescriptionDepthStencilResolve.Ptroperations.Auxiliary interface for unifyingVkSubpassEndInfoandVkSubpassEndInfo.Ptroperations.Auxiliary interface for unifyingVkSubpassResolvePerformanceQueryEXTandVkSubpassResolvePerformanceQueryEXT.Ptroperations.Auxiliary interface for unifyingVkSubpassSampleLocationsEXTandVkSubpassSampleLocationsEXT.Ptroperations.Auxiliary interface for unifyingVkSubpassShadingPipelineCreateInfoHUAWEIandVkSubpassShadingPipelineCreateInfoHUAWEI.Ptroperations.Auxiliary interface for unifyingVkSubresourceHostMemcpySizeandVkSubresourceHostMemcpySize.Ptroperations.Auxiliary interface for unifyingVkSubresourceLayoutandVkSubresourceLayout.Ptroperations.Auxiliary interface for unifyingVkSubresourceLayout2andVkSubresourceLayout2.Ptroperations.Auxiliary interface for unifyingVkSurfaceCapabilities2EXTandVkSurfaceCapabilities2EXT.Ptroperations.Auxiliary interface for unifyingVkSurfaceCapabilities2KHRandVkSurfaceCapabilities2KHR.Ptroperations.Auxiliary interface for unifyingVkSurfaceCapabilitiesFullScreenExclusiveEXTandVkSurfaceCapabilitiesFullScreenExclusiveEXT.Ptroperations.Auxiliary interface for unifyingVkSurfaceCapabilitiesKHRandVkSurfaceCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkSurfaceCapabilitiesPresentBarrierNVandVkSurfaceCapabilitiesPresentBarrierNV.Ptroperations.Auxiliary interface for unifyingVkSurfaceFormat2KHRandVkSurfaceFormat2KHR.Ptroperations.Auxiliary interface for unifyingVkSurfaceFormatKHRandVkSurfaceFormatKHR.Ptroperations.Auxiliary interface for unifyingVkSurfaceFullScreenExclusiveInfoEXTandVkSurfaceFullScreenExclusiveInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSurfaceFullScreenExclusiveWin32InfoEXTandVkSurfaceFullScreenExclusiveWin32InfoEXT.Ptroperations.Auxiliary interface for unifyingVkSurfacePresentModeCompatibilityEXTandVkSurfacePresentModeCompatibilityEXT.Ptroperations.Auxiliary interface for unifyingVkSurfacePresentModeEXTandVkSurfacePresentModeEXT.Ptroperations.Auxiliary interface for unifyingVkSurfacePresentScalingCapabilitiesEXTandVkSurfacePresentScalingCapabilitiesEXT.Ptroperations.Auxiliary interface for unifyingVkSurfaceProtectedCapabilitiesKHRandVkSurfaceProtectedCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkSwapchainCounterCreateInfoEXTandVkSwapchainCounterCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSwapchainCreateInfoKHRandVkSwapchainCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkSwapchainDisplayNativeHdrCreateInfoAMDandVkSwapchainDisplayNativeHdrCreateInfoAMD.Ptroperations.Auxiliary interface for unifyingVkSwapchainLatencyCreateInfoNVandVkSwapchainLatencyCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkSwapchainPresentBarrierCreateInfoNVandVkSwapchainPresentBarrierCreateInfoNV.Ptroperations.Auxiliary interface for unifyingVkSwapchainPresentFenceInfoEXTandVkSwapchainPresentFenceInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSwapchainPresentModeInfoEXTandVkSwapchainPresentModeInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSwapchainPresentModesCreateInfoEXTandVkSwapchainPresentModesCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSwapchainPresentScalingCreateInfoEXTandVkSwapchainPresentScalingCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkSysmemColorSpaceFUCHSIAandVkSysmemColorSpaceFUCHSIA.Ptroperations.Auxiliary interface for unifyingVkTextureLODGatherFormatPropertiesAMDandVkTextureLODGatherFormatPropertiesAMD.Ptroperations.Auxiliary interface for unifyingVkTileMemoryBindInfoQCOMandVkTileMemoryBindInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkTileMemoryRequirementsQCOMandVkTileMemoryRequirementsQCOM.Ptroperations.Auxiliary interface for unifyingVkTileMemorySizeInfoQCOMandVkTileMemorySizeInfoQCOM.Ptroperations.Auxiliary interface for unifyingVkTilePropertiesQCOMandVkTilePropertiesQCOM.Ptroperations.Auxiliary interface for unifyingVkTimelineSemaphoreSubmitInfoandVkTimelineSemaphoreSubmitInfo.Ptroperations.Auxiliary interface for unifyingVkTraceRaysIndirectCommand2KHRandVkTraceRaysIndirectCommand2KHR.Ptroperations.Auxiliary interface for unifyingVkTraceRaysIndirectCommandKHRandVkTraceRaysIndirectCommandKHR.Ptroperations.Auxiliary interface for unifyingVkTransformMatrixKHRandVkTransformMatrixKHR.Ptroperations.Auxiliary interface for unifyingVkValidationCacheCreateInfoEXTandVkValidationCacheCreateInfoEXT.Ptroperations.Auxiliary interface for unifyingVkValidationFeaturesEXTandVkValidationFeaturesEXT.Ptroperations.Auxiliary interface for unifyingVkValidationFlagsEXTandVkValidationFlagsEXT.Ptroperations.Auxiliary interface for unifyingVkVertexInputAttributeDescriptionandVkVertexInputAttributeDescription.Ptroperations.Auxiliary interface for unifyingVkVertexInputAttributeDescription2EXTandVkVertexInputAttributeDescription2EXT.Ptroperations.Auxiliary interface for unifyingVkVertexInputBindingDescriptionandVkVertexInputBindingDescription.Ptroperations.Auxiliary interface for unifyingVkVertexInputBindingDescription2EXTandVkVertexInputBindingDescription2EXT.Ptroperations.Auxiliary interface for unifyingVkVertexInputBindingDivisorDescriptionandVkVertexInputBindingDivisorDescription.Ptroperations.Auxiliary interface for unifyingVkVideoBeginCodingInfoKHRandVkVideoBeginCodingInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoCapabilitiesKHRandVkVideoCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoCodingControlInfoKHRandVkVideoCodingControlInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeAV1CapabilitiesKHRandVkVideoDecodeAV1CapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeAV1DpbSlotInfoKHRandVkVideoDecodeAV1DpbSlotInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeAV1InlineSessionParametersInfoKHRandVkVideoDecodeAV1InlineSessionParametersInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeAV1PictureInfoKHRandVkVideoDecodeAV1PictureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeAV1ProfileInfoKHRandVkVideoDecodeAV1ProfileInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeAV1SessionParametersCreateInfoKHRandVkVideoDecodeAV1SessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeCapabilitiesKHRandVkVideoDecodeCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH264CapabilitiesKHRandVkVideoDecodeH264CapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH264DpbSlotInfoKHRandVkVideoDecodeH264DpbSlotInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH264InlineSessionParametersInfoKHRandVkVideoDecodeH264InlineSessionParametersInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH264PictureInfoKHRandVkVideoDecodeH264PictureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH264ProfileInfoKHRandVkVideoDecodeH264ProfileInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH264SessionParametersAddInfoKHRandVkVideoDecodeH264SessionParametersAddInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH264SessionParametersCreateInfoKHRandVkVideoDecodeH264SessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH265CapabilitiesKHRandVkVideoDecodeH265CapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH265DpbSlotInfoKHRandVkVideoDecodeH265DpbSlotInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH265InlineSessionParametersInfoKHRandVkVideoDecodeH265InlineSessionParametersInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH265PictureInfoKHRandVkVideoDecodeH265PictureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH265ProfileInfoKHRandVkVideoDecodeH265ProfileInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH265SessionParametersAddInfoKHRandVkVideoDecodeH265SessionParametersAddInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeH265SessionParametersCreateInfoKHRandVkVideoDecodeH265SessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeInfoKHRandVkVideoDecodeInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoDecodeUsageInfoKHRandVkVideoDecodeUsageInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1CapabilitiesKHRandVkVideoEncodeAV1CapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1DpbSlotInfoKHRandVkVideoEncodeAV1DpbSlotInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1FrameSizeKHRandVkVideoEncodeAV1FrameSizeKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1GopRemainingFrameInfoKHRandVkVideoEncodeAV1GopRemainingFrameInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1PictureInfoKHRandVkVideoEncodeAV1PictureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1ProfileInfoKHRandVkVideoEncodeAV1ProfileInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1QIndexKHRandVkVideoEncodeAV1QIndexKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1QualityLevelPropertiesKHRandVkVideoEncodeAV1QualityLevelPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1QuantizationMapCapabilitiesKHRandVkVideoEncodeAV1QuantizationMapCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1RateControlInfoKHRandVkVideoEncodeAV1RateControlInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1RateControlLayerInfoKHRandVkVideoEncodeAV1RateControlLayerInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1SessionCreateInfoKHRandVkVideoEncodeAV1SessionCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeAV1SessionParametersCreateInfoKHRandVkVideoEncodeAV1SessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeCapabilitiesKHRandVkVideoEncodeCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264CapabilitiesKHRandVkVideoEncodeH264CapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264DpbSlotInfoKHRandVkVideoEncodeH264DpbSlotInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264FrameSizeKHRandVkVideoEncodeH264FrameSizeKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264GopRemainingFrameInfoKHRandVkVideoEncodeH264GopRemainingFrameInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264NaluSliceInfoKHRandVkVideoEncodeH264NaluSliceInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264PictureInfoKHRandVkVideoEncodeH264PictureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264ProfileInfoKHRandVkVideoEncodeH264ProfileInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264QpKHRandVkVideoEncodeH264QpKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264QualityLevelPropertiesKHRandVkVideoEncodeH264QualityLevelPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264QuantizationMapCapabilitiesKHRandVkVideoEncodeH264QuantizationMapCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264RateControlInfoKHRandVkVideoEncodeH264RateControlInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264RateControlLayerInfoKHRandVkVideoEncodeH264RateControlLayerInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264SessionCreateInfoKHRandVkVideoEncodeH264SessionCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersAddInfoKHRandVkVideoEncodeH264SessionParametersAddInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersCreateInfoKHRandVkVideoEncodeH264SessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersFeedbackInfoKHRandVkVideoEncodeH264SessionParametersFeedbackInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersGetInfoKHRandVkVideoEncodeH264SessionParametersGetInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265CapabilitiesKHRandVkVideoEncodeH265CapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265DpbSlotInfoKHRandVkVideoEncodeH265DpbSlotInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265FrameSizeKHRandVkVideoEncodeH265FrameSizeKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265GopRemainingFrameInfoKHRandVkVideoEncodeH265GopRemainingFrameInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265NaluSliceSegmentInfoKHRandVkVideoEncodeH265NaluSliceSegmentInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265PictureInfoKHRandVkVideoEncodeH265PictureInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265ProfileInfoKHRandVkVideoEncodeH265ProfileInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265QpKHRandVkVideoEncodeH265QpKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265QualityLevelPropertiesKHRandVkVideoEncodeH265QualityLevelPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265QuantizationMapCapabilitiesKHRandVkVideoEncodeH265QuantizationMapCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265RateControlInfoKHRandVkVideoEncodeH265RateControlInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265RateControlLayerInfoKHRandVkVideoEncodeH265RateControlLayerInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265SessionCreateInfoKHRandVkVideoEncodeH265SessionCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersAddInfoKHRandVkVideoEncodeH265SessionParametersAddInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersCreateInfoKHRandVkVideoEncodeH265SessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersFeedbackInfoKHRandVkVideoEncodeH265SessionParametersFeedbackInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersGetInfoKHRandVkVideoEncodeH265SessionParametersGetInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeInfoKHRandVkVideoEncodeInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeQualityLevelInfoKHRandVkVideoEncodeQualityLevelInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeQualityLevelPropertiesKHRandVkVideoEncodeQualityLevelPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeQuantizationMapCapabilitiesKHRandVkVideoEncodeQuantizationMapCapabilitiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeQuantizationMapInfoKHRandVkVideoEncodeQuantizationMapInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHRandVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeRateControlInfoKHRandVkVideoEncodeRateControlInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeRateControlLayerInfoKHRandVkVideoEncodeRateControlLayerInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeSessionParametersFeedbackInfoKHRandVkVideoEncodeSessionParametersFeedbackInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeSessionParametersGetInfoKHRandVkVideoEncodeSessionParametersGetInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEncodeUsageInfoKHRandVkVideoEncodeUsageInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoEndCodingInfoKHRandVkVideoEndCodingInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoFormatAV1QuantizationMapPropertiesKHRandVkVideoFormatAV1QuantizationMapPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoFormatH265QuantizationMapPropertiesKHRandVkVideoFormatH265QuantizationMapPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoFormatPropertiesKHRandVkVideoFormatPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoFormatQuantizationMapPropertiesKHRandVkVideoFormatQuantizationMapPropertiesKHR.Ptroperations.Auxiliary interface for unifyingVkVideoInlineQueryInfoKHRandVkVideoInlineQueryInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoPictureResourceInfoKHRandVkVideoPictureResourceInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoProfileInfoKHRandVkVideoProfileInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoProfileListInfoKHRandVkVideoProfileListInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoReferenceSlotInfoKHRandVkVideoReferenceSlotInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoSessionCreateInfoKHRandVkVideoSessionCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoSessionMemoryRequirementsKHRandVkVideoSessionMemoryRequirementsKHR.Ptroperations.Auxiliary interface for unifyingVkVideoSessionParametersCreateInfoKHRandVkVideoSessionParametersCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkVideoSessionParametersUpdateInfoKHRandVkVideoSessionParametersUpdateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkViewportandVkViewport.Ptroperations.Auxiliary interface for unifyingVkViewportSwizzleNVandVkViewportSwizzleNV.Ptroperations.Auxiliary interface for unifyingVkViewportWScalingNVandVkViewportWScalingNV.Ptroperations.Auxiliary interface for unifyingVkViSurfaceCreateInfoNNandVkViSurfaceCreateInfoNN.Ptroperations.Auxiliary interface for unifyingVkWaylandSurfaceCreateInfoKHRandVkWaylandSurfaceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkWin32KeyedMutexAcquireReleaseInfoKHRandVkWin32KeyedMutexAcquireReleaseInfoKHR.Ptroperations.Auxiliary interface for unifyingVkWin32KeyedMutexAcquireReleaseInfoNVandVkWin32KeyedMutexAcquireReleaseInfoNV.Ptroperations.Auxiliary interface for unifyingVkWin32SurfaceCreateInfoKHRandVkWin32SurfaceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkWriteDescriptorSetandVkWriteDescriptorSet.Ptroperations.Auxiliary interface for unifyingVkWriteDescriptorSetAccelerationStructureKHRandVkWriteDescriptorSetAccelerationStructureKHR.Ptroperations.Auxiliary interface for unifyingVkWriteDescriptorSetAccelerationStructureNVandVkWriteDescriptorSetAccelerationStructureNV.Ptroperations.Auxiliary interface for unifyingVkWriteDescriptorSetInlineUniformBlockandVkWriteDescriptorSetInlineUniformBlock.Ptroperations.Auxiliary interface for unifyingVkWriteDescriptorSetPartitionedAccelerationStructureNVandVkWriteDescriptorSetPartitionedAccelerationStructureNV.Ptroperations.Auxiliary interface for unifyingVkWriteIndirectExecutionSetPipelineEXTandVkWriteIndirectExecutionSetPipelineEXT.Ptroperations.Auxiliary interface for unifyingVkWriteIndirectExecutionSetShaderEXTandVkWriteIndirectExecutionSetShaderEXT.Ptroperations.Auxiliary interface for unifyingVkXcbSurfaceCreateInfoKHRandVkXcbSurfaceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkXlibSurfaceCreateInfoKHRandVkXlibSurfaceCreateInfoKHR.Ptroperations.Auxiliary interface for unifyingVkXYColorEXTandVkXYColorEXT.Ptroperations.Represents a pointer to aNvSciSyncFencestructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1CDEFstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1ColorConfigstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1ColorConfigFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1FilmGrainstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1FilmGrainFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1GlobalMotionstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1LoopFilterstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1LoopFilterFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1LoopRestorationstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1Quantizationstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1QuantizationFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1Segmentationstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1SequenceHeaderstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1SequenceHeaderFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TileInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TileInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TimingInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TimingInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1PictureInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1PictureInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1ReferenceInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1ReferenceInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264PictureInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264PictureInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264ReferenceInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264ReferenceInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265PictureInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265PictureInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265ReferenceInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265ReferenceInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1DecoderModelInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1ExtensionHeaderstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1OperatingPointInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1OperatingPointInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1PictureInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1PictureInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1ReferenceInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1ReferenceInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264PictureInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264PictureInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceListsInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceListsInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264RefListModEntrystructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264RefPicMarkingEntrystructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264SliceHeaderstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264SliceHeaderFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264WeightTablestructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264WeightTableFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265LongTermRefPicsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265PictureInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265PictureInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceListsInfostructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceListsInfoFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265SliceSegmentHeaderstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265SliceSegmentHeaderFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265WeightTablestructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265WeightTableFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264HrdParametersstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264PictureParameterSetstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264PpsFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264ScalingListsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SequenceParameterSetstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SequenceParameterSetVuistructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SpsFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SpsVuiFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265DecPicBufMgrstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265HrdFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265HrdParametersstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265LongTermRefPicsSpsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265PictureParameterSetstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265PpsFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265PredictorPaletteEntriesstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ProfileTierLevelstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ProfileTierLevelFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ScalingListsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SequenceParameterSetstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SequenceParameterSetVuistructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ShortTermRefPicSetstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ShortTermRefPicSetFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SpsFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SpsVuiFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SubLayerHrdParametersstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265VideoParameterSetstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265VpsFlagsstructure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aVkAabbPositionsKHRstructure in native memory.Represents a pointer to / an array ofVkAabbPositionsKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureBuildGeometryInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureBuildGeometryInfoKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureBuildRangeInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureBuildRangeInfoKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureBuildSizesInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureBuildSizesInfoKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureCaptureDescriptorDataInfoEXTstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureCaptureDescriptorDataInfoEXTstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureDeviceAddressInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureDeviceAddressInfoKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryAabbsDataKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryAabbsDataKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryDataKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryDataKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryInstancesDataKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryInstancesDataKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryLinearSweptSpheresDataNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryLinearSweptSpheresDataNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryMotionTrianglesDataNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryMotionTrianglesDataNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometrySpheresDataNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometrySpheresDataNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryTrianglesDataKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryTrianglesDataKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureInfoNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureInfoNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureInstanceKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureInstanceKHRstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureMatrixMotionInstanceNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMatrixMotionInstanceNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureMemoryRequirementsInfoNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMemoryRequirementsInfoNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureMotionInfoNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMotionInfoNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureMotionInstanceDataNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMotionInstanceDataNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureMotionInstanceNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMotionInstanceNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureSRTMotionInstanceNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureSRTMotionInstanceNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureTrianglesDisplacementMicromapNVstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureTrianglesDisplacementMicromapNVstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureTrianglesOpacityMicromapEXTstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureTrianglesOpacityMicromapEXTstructure(s) in native memory.Represents a pointer to aVkAccelerationStructureVersionInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAccelerationStructureVersionInfoKHRstructure(s) in native memory.Represents a pointer to aVkAcquireNextImageInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAcquireNextImageInfoKHRstructure(s) in native memory.Represents a pointer to aVkAcquireProfilingLockInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAcquireProfilingLockInfoKHRstructure(s) in native memory.Represents a pointer to aVkAllocationCallbacksstructure in native memory.Represents a pointer to / an array ofVkAllocationCallbacksstructure(s) in native memory.Represents a pointer to aVkAmigoProfilingSubmitInfoSECstructure in native memory.Represents a pointer to / an array ofVkAmigoProfilingSubmitInfoSECstructure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferFormatProperties2ANDROIDstructure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferFormatProperties2ANDROIDstructure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferFormatPropertiesANDROIDstructure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferFormatPropertiesANDROIDstructure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferFormatResolvePropertiesANDROIDstructure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferFormatResolvePropertiesANDROIDstructure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferPropertiesANDROIDstructure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferPropertiesANDROIDstructure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferUsageANDROIDstructure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferUsageANDROIDstructure(s) in native memory.Represents a pointer to aVkAndroidSurfaceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkAndroidSurfaceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkAntiLagDataAMDstructure in native memory.Represents a pointer to / an array ofVkAntiLagDataAMDstructure(s) in native memory.Represents a pointer to aVkAntiLagPresentationInfoAMDstructure in native memory.Represents a pointer to / an array ofVkAntiLagPresentationInfoAMDstructure(s) in native memory.Represents a pointer to aVkApplicationInfostructure in native memory.Represents a pointer to / an array ofVkApplicationInfostructure(s) in native memory.Represents a pointer to aVkApplicationParametersEXTstructure in native memory.Represents a pointer to / an array ofVkApplicationParametersEXTstructure(s) in native memory.Represents a pointer to aVkAttachmentDescriptionstructure in native memory.Represents a pointer to / an array ofVkAttachmentDescriptionstructure(s) in native memory.Represents a pointer to aVkAttachmentDescription2structure in native memory.Represents a pointer to / an array ofVkAttachmentDescription2structure(s) in native memory.Represents a pointer to aVkAttachmentDescriptionStencilLayoutstructure in native memory.Represents a pointer to / an array ofVkAttachmentDescriptionStencilLayoutstructure(s) in native memory.Represents a pointer to aVkAttachmentReferencestructure in native memory.Represents a pointer to / an array ofVkAttachmentReferencestructure(s) in native memory.Represents a pointer to aVkAttachmentReference2structure in native memory.Represents a pointer to / an array ofVkAttachmentReference2structure(s) in native memory.Represents a pointer to aVkAttachmentReferenceStencilLayoutstructure in native memory.Represents a pointer to / an array ofVkAttachmentReferenceStencilLayoutstructure(s) in native memory.Represents a pointer to aVkAttachmentSampleCountInfoAMDstructure in native memory.Represents a pointer to / an array ofVkAttachmentSampleCountInfoAMDstructure(s) in native memory.Represents a pointer to aVkAttachmentSampleLocationsEXTstructure in native memory.Represents a pointer to / an array ofVkAttachmentSampleLocationsEXTstructure(s) in native memory.Represents a pointer to aVkBaseInStructurestructure in native memory.Represents a pointer to / an array ofVkBaseInStructurestructure(s) in native memory.Represents a pointer to aVkBaseOutStructurestructure in native memory.Represents a pointer to / an array ofVkBaseOutStructurestructure(s) in native memory.Represents a pointer to aVkBindAccelerationStructureMemoryInfoNVstructure in native memory.Represents a pointer to / an array ofVkBindAccelerationStructureMemoryInfoNVstructure(s) in native memory.Represents a pointer to aVkBindBufferMemoryDeviceGroupInfostructure in native memory.Represents a pointer to / an array ofVkBindBufferMemoryDeviceGroupInfostructure(s) in native memory.Represents a pointer to aVkBindBufferMemoryInfostructure in native memory.Represents a pointer to / an array ofVkBindBufferMemoryInfostructure(s) in native memory.Represents a pointer to aVkBindDescriptorBufferEmbeddedSamplersInfoEXTstructure in native memory.Represents a pointer to / an array ofVkBindDescriptorBufferEmbeddedSamplersInfoEXTstructure(s) in native memory.Represents a pointer to aVkBindDescriptorSetsInfostructure in native memory.Represents a pointer to / an array ofVkBindDescriptorSetsInfostructure(s) in native memory.Represents a pointer to aVkBindImageMemoryDeviceGroupInfostructure in native memory.Represents a pointer to / an array ofVkBindImageMemoryDeviceGroupInfostructure(s) in native memory.Represents a pointer to aVkBindImageMemoryInfostructure in native memory.Represents a pointer to / an array ofVkBindImageMemoryInfostructure(s) in native memory.Represents a pointer to aVkBindImageMemorySwapchainInfoKHRstructure in native memory.Represents a pointer to / an array ofVkBindImageMemorySwapchainInfoKHRstructure(s) in native memory.Represents a pointer to aVkBindImagePlaneMemoryInfostructure in native memory.Represents a pointer to / an array ofVkBindImagePlaneMemoryInfostructure(s) in native memory.Represents a pointer to aVkBindIndexBufferIndirectCommandEXTstructure in native memory.Represents a pointer to / an array ofVkBindIndexBufferIndirectCommandEXTstructure(s) in native memory.Represents a pointer to aVkBindIndexBufferIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkBindIndexBufferIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkBindMemoryStatusstructure in native memory.Represents a pointer to / an array ofVkBindMemoryStatusstructure(s) in native memory.Represents a pointer to aVkBindPipelineIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkBindPipelineIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkBindShaderGroupIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkBindShaderGroupIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkBindSparseInfostructure in native memory.Represents a pointer to / an array ofVkBindSparseInfostructure(s) in native memory.Represents a pointer to aVkBindVertexBufferIndirectCommandEXTstructure in native memory.Represents a pointer to / an array ofVkBindVertexBufferIndirectCommandEXTstructure(s) in native memory.Represents a pointer to aVkBindVertexBufferIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkBindVertexBufferIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkBindVideoSessionMemoryInfoKHRstructure in native memory.Represents a pointer to / an array ofVkBindVideoSessionMemoryInfoKHRstructure(s) in native memory.Represents a pointer to aVkBlitImageCubicWeightsInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkBlitImageCubicWeightsInfoQCOMstructure(s) in native memory.Represents a pointer to aVkBlitImageInfo2structure in native memory.Represents a pointer to / an array ofVkBlitImageInfo2structure(s) in native memory.Represents a pointer to aVkBufferCaptureDescriptorDataInfoEXTstructure in native memory.Represents a pointer to / an array ofVkBufferCaptureDescriptorDataInfoEXTstructure(s) in native memory.Represents a pointer to aVkBufferCollectionBufferCreateInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkBufferCollectionBufferCreateInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkBufferCollectionConstraintsInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkBufferCollectionConstraintsInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkBufferCollectionCreateInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkBufferCollectionCreateInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkBufferCollectionImageCreateInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkBufferCollectionImageCreateInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkBufferCollectionPropertiesFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkBufferCollectionPropertiesFUCHSIAstructure(s) in native memory.Represents a pointer to aVkBufferConstraintsInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkBufferConstraintsInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkBufferCopystructure in native memory.Represents a pointer to / an array ofVkBufferCopystructure(s) in native memory.Represents a pointer to aVkBufferCopy2structure in native memory.Represents a pointer to / an array ofVkBufferCopy2structure(s) in native memory.Represents a pointer to aVkBufferCreateInfostructure in native memory.Represents a pointer to / an array ofVkBufferCreateInfostructure(s) in native memory.Represents a pointer to aVkBufferDeviceAddressCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkBufferDeviceAddressCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkBufferDeviceAddressInfostructure in native memory.Represents a pointer to / an array ofVkBufferDeviceAddressInfostructure(s) in native memory.Represents a pointer to aVkBufferImageCopystructure in native memory.Represents a pointer to / an array ofVkBufferImageCopystructure(s) in native memory.Represents a pointer to aVkBufferImageCopy2structure in native memory.Represents a pointer to / an array ofVkBufferImageCopy2structure(s) in native memory.Represents a pointer to aVkBufferMemoryBarrierstructure in native memory.Represents a pointer to / an array ofVkBufferMemoryBarrierstructure(s) in native memory.Represents a pointer to aVkBufferMemoryBarrier2structure in native memory.Represents a pointer to / an array ofVkBufferMemoryBarrier2structure(s) in native memory.Represents a pointer to aVkBufferMemoryRequirementsInfo2structure in native memory.Represents a pointer to / an array ofVkBufferMemoryRequirementsInfo2structure(s) in native memory.Represents a pointer to aVkBufferOpaqueCaptureAddressCreateInfostructure in native memory.Represents a pointer to / an array ofVkBufferOpaqueCaptureAddressCreateInfostructure(s) in native memory.Represents a pointer to aVkBufferUsageFlags2CreateInfostructure in native memory.Represents a pointer to / an array ofVkBufferUsageFlags2CreateInfostructure(s) in native memory.Represents a pointer to aVkBufferViewCreateInfostructure in native memory.Represents a pointer to / an array ofVkBufferViewCreateInfostructure(s) in native memory.Represents a pointer to aVkBuildPartitionedAccelerationStructureIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkBuildPartitionedAccelerationStructureIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkBuildPartitionedAccelerationStructureInfoNVstructure in native memory.Represents a pointer to / an array ofVkBuildPartitionedAccelerationStructureInfoNVstructure(s) in native memory.Represents a pointer to aVkCalibratedTimestampInfoKHRstructure in native memory.Represents a pointer to / an array ofVkCalibratedTimestampInfoKHRstructure(s) in native memory.Represents a pointer to aVkCheckpointData2NVstructure in native memory.Represents a pointer to / an array ofVkCheckpointData2NVstructure(s) in native memory.Represents a pointer to aVkCheckpointDataNVstructure in native memory.Represents a pointer to / an array ofVkCheckpointDataNVstructure(s) in native memory.Represents a pointer to aVkClearAttachmentstructure in native memory.Represents a pointer to / an array ofVkClearAttachmentstructure(s) in native memory.Represents a pointer to aVkClearColorValuestructure in native memory.Represents a pointer to / an array ofVkClearColorValuestructure(s) in native memory.Represents a pointer to aVkClearDepthStencilValuestructure in native memory.Represents a pointer to / an array ofVkClearDepthStencilValuestructure(s) in native memory.Represents a pointer to aVkClearRectstructure in native memory.Represents a pointer to / an array ofVkClearRectstructure(s) in native memory.Represents a pointer to aVkClearValuestructure in native memory.Represents a pointer to / an array ofVkClearValuestructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureBuildClustersBottomLevelInfoNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureBuildClustersBottomLevelInfoNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureBuildTriangleClusterInfoNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureBuildTriangleClusterInfoNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureClustersBottomLevelInputNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureClustersBottomLevelInputNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureCommandsInfoNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureCommandsInfoNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureInputInfoNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureInputInfoNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureInstantiateClusterInfoNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureInstantiateClusterInfoNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureMoveObjectsInfoNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureMoveObjectsInfoNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureMoveObjectsInputNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureMoveObjectsInputNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureOpInputNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureOpInputNVstructure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureTriangleClusterInputNVstructure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureTriangleClusterInputNVstructure(s) in native memory.Represents a pointer to aVkCoarseSampleLocationNVstructure in native memory.Represents a pointer to / an array ofVkCoarseSampleLocationNVstructure(s) in native memory.Represents a pointer to aVkCoarseSampleOrderCustomNVstructure in native memory.Represents a pointer to / an array ofVkCoarseSampleOrderCustomNVstructure(s) in native memory.Represents a pointer to aVkColorBlendAdvancedEXTstructure in native memory.Represents a pointer to / an array ofVkColorBlendAdvancedEXTstructure(s) in native memory.Represents a pointer to aVkColorBlendEquationEXTstructure in native memory.Represents a pointer to / an array ofVkColorBlendEquationEXTstructure(s) in native memory.Represents a pointer to aVkCommandBufferAllocateInfostructure in native memory.Represents a pointer to / an array ofVkCommandBufferAllocateInfostructure(s) in native memory.Represents a pointer to aVkCommandBufferBeginInfostructure in native memory.Represents a pointer to / an array ofVkCommandBufferBeginInfostructure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceConditionalRenderingInfoEXTstructure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceConditionalRenderingInfoEXTstructure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceInfostructure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceInfostructure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceRenderingInfostructure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceRenderingInfostructure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceRenderPassTransformInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceRenderPassTransformInfoQCOMstructure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceViewportScissorInfoNVstructure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceViewportScissorInfoNVstructure(s) in native memory.Represents a pointer to aVkCommandBufferSubmitInfostructure in native memory.Represents a pointer to / an array ofVkCommandBufferSubmitInfostructure(s) in native memory.Represents a pointer to aVkCommandPoolCreateInfostructure in native memory.Represents a pointer to / an array ofVkCommandPoolCreateInfostructure(s) in native memory.Represents a pointer to aVkComponentMappingstructure in native memory.Represents a pointer to / an array ofVkComponentMappingstructure(s) in native memory.Represents a pointer to aVkComputePipelineCreateInfostructure in native memory.Represents a pointer to / an array ofVkComputePipelineCreateInfostructure(s) in native memory.Represents a pointer to aVkComputePipelineIndirectBufferInfoNVstructure in native memory.Represents a pointer to / an array ofVkComputePipelineIndirectBufferInfoNVstructure(s) in native memory.Represents a pointer to aVkConditionalRenderingBeginInfoEXTstructure in native memory.Represents a pointer to / an array ofVkConditionalRenderingBeginInfoEXTstructure(s) in native memory.Represents a pointer to aVkConformanceVersionstructure in native memory.Represents a pointer to / an array ofVkConformanceVersionstructure(s) in native memory.Represents a pointer to aVkConvertCooperativeVectorMatrixInfoNVstructure in native memory.Represents a pointer to / an array ofVkConvertCooperativeVectorMatrixInfoNVstructure(s) in native memory.Represents a pointer to aVkCooperativeMatrixFlexibleDimensionsPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkCooperativeMatrixFlexibleDimensionsPropertiesNVstructure(s) in native memory.Represents a pointer to aVkCooperativeMatrixPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkCooperativeMatrixPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkCooperativeMatrixPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkCooperativeMatrixPropertiesNVstructure(s) in native memory.Represents a pointer to aVkCooperativeVectorPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkCooperativeVectorPropertiesNVstructure(s) in native memory.Represents a pointer to aVkCopyAccelerationStructureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkCopyAccelerationStructureInfoKHRstructure(s) in native memory.Represents a pointer to aVkCopyAccelerationStructureToMemoryInfoKHRstructure in native memory.Represents a pointer to / an array ofVkCopyAccelerationStructureToMemoryInfoKHRstructure(s) in native memory.Represents a pointer to aVkCopyBufferInfo2structure in native memory.Represents a pointer to / an array ofVkCopyBufferInfo2structure(s) in native memory.Represents a pointer to aVkCopyBufferToImageInfo2structure in native memory.Represents a pointer to / an array ofVkCopyBufferToImageInfo2structure(s) in native memory.Represents a pointer to aVkCopyCommandTransformInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkCopyCommandTransformInfoQCOMstructure(s) in native memory.Represents a pointer to aVkCopyDescriptorSetstructure in native memory.Represents a pointer to / an array ofVkCopyDescriptorSetstructure(s) in native memory.Represents a pointer to aVkCopyImageInfo2structure in native memory.Represents a pointer to / an array ofVkCopyImageInfo2structure(s) in native memory.Represents a pointer to aVkCopyImageToBufferInfo2structure in native memory.Represents a pointer to / an array ofVkCopyImageToBufferInfo2structure(s) in native memory.Represents a pointer to aVkCopyImageToImageInfostructure in native memory.Represents a pointer to / an array ofVkCopyImageToImageInfostructure(s) in native memory.Represents a pointer to aVkCopyImageToMemoryInfostructure in native memory.Represents a pointer to / an array ofVkCopyImageToMemoryInfostructure(s) in native memory.Represents a pointer to aVkCopyMemoryIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkCopyMemoryIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkCopyMemoryToAccelerationStructureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkCopyMemoryToAccelerationStructureInfoKHRstructure(s) in native memory.Represents a pointer to aVkCopyMemoryToImageIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkCopyMemoryToImageIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkCopyMemoryToImageInfostructure in native memory.Represents a pointer to / an array ofVkCopyMemoryToImageInfostructure(s) in native memory.Represents a pointer to aVkCopyMemoryToMicromapInfoEXTstructure in native memory.Represents a pointer to / an array ofVkCopyMemoryToMicromapInfoEXTstructure(s) in native memory.Represents a pointer to aVkCopyMicromapInfoEXTstructure in native memory.Represents a pointer to / an array ofVkCopyMicromapInfoEXTstructure(s) in native memory.Represents a pointer to aVkCopyMicromapToMemoryInfoEXTstructure in native memory.Represents a pointer to / an array ofVkCopyMicromapToMemoryInfoEXTstructure(s) in native memory.Represents a pointer to aVkCudaFunctionCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkCudaFunctionCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkCudaLaunchInfoNVstructure in native memory.Represents a pointer to / an array ofVkCudaLaunchInfoNVstructure(s) in native memory.Represents a pointer to aVkCudaModuleCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkCudaModuleCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkCuFunctionCreateInfoNVXstructure in native memory.Represents a pointer to / an array ofVkCuFunctionCreateInfoNVXstructure(s) in native memory.Represents a pointer to aVkCuLaunchInfoNVXstructure in native memory.Represents a pointer to / an array ofVkCuLaunchInfoNVXstructure(s) in native memory.Represents a pointer to aVkCuModuleCreateInfoNVXstructure in native memory.Represents a pointer to / an array ofVkCuModuleCreateInfoNVXstructure(s) in native memory.Represents a pointer to aVkCuModuleTexturingModeCreateInfoNVXstructure in native memory.Represents a pointer to / an array ofVkCuModuleTexturingModeCreateInfoNVXstructure(s) in native memory.Represents a pointer to aVkD3D12FenceSubmitInfoKHRstructure in native memory.Represents a pointer to / an array ofVkD3D12FenceSubmitInfoKHRstructure(s) in native memory.Represents a pointer to aVkDebugMarkerMarkerInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDebugMarkerMarkerInfoEXTstructure(s) in native memory.Represents a pointer to aVkDebugMarkerObjectNameInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDebugMarkerObjectNameInfoEXTstructure(s) in native memory.Represents a pointer to aVkDebugMarkerObjectTagInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDebugMarkerObjectTagInfoEXTstructure(s) in native memory.Represents a pointer to aVkDebugReportCallbackCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDebugReportCallbackCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkDebugUtilsLabelEXTstructure in native memory.Represents a pointer to / an array ofVkDebugUtilsLabelEXTstructure(s) in native memory.Represents a pointer to aVkDebugUtilsMessengerCallbackDataEXTstructure in native memory.Represents a pointer to / an array ofVkDebugUtilsMessengerCallbackDataEXTstructure(s) in native memory.Represents a pointer to aVkDebugUtilsMessengerCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDebugUtilsMessengerCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkDebugUtilsObjectNameInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDebugUtilsObjectNameInfoEXTstructure(s) in native memory.Represents a pointer to aVkDebugUtilsObjectTagInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDebugUtilsObjectTagInfoEXTstructure(s) in native memory.Represents a pointer to aVkDecompressMemoryRegionNVstructure in native memory.Represents a pointer to / an array ofVkDecompressMemoryRegionNVstructure(s) in native memory.Represents a pointer to aVkDedicatedAllocationBufferCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkDedicatedAllocationBufferCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkDedicatedAllocationImageCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkDedicatedAllocationImageCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkDedicatedAllocationMemoryAllocateInfoNVstructure in native memory.Represents a pointer to / an array ofVkDedicatedAllocationMemoryAllocateInfoNVstructure(s) in native memory.Represents a pointer to aVkDependencyInfostructure in native memory.Represents a pointer to / an array ofVkDependencyInfostructure(s) in native memory.Represents a pointer to aVkDepthBiasInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDepthBiasInfoEXTstructure(s) in native memory.Represents a pointer to aVkDepthBiasRepresentationInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDepthBiasRepresentationInfoEXTstructure(s) in native memory.Represents a pointer to aVkDepthClampRangeEXTstructure in native memory.Represents a pointer to / an array ofVkDepthClampRangeEXTstructure(s) in native memory.Represents a pointer to aVkDescriptorAddressInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDescriptorAddressInfoEXTstructure(s) in native memory.Represents a pointer to aVkDescriptorBufferBindingInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDescriptorBufferBindingInfoEXTstructure(s) in native memory.Represents a pointer to aVkDescriptorBufferBindingPushDescriptorBufferHandleEXTstructure in native memory.Represents a pointer to / an array ofVkDescriptorBufferBindingPushDescriptorBufferHandleEXTstructure(s) in native memory.Represents a pointer to aVkDescriptorBufferInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorBufferInfostructure(s) in native memory.Represents a pointer to aVkDescriptorDataEXTstructure in native memory.Represents a pointer to / an array ofVkDescriptorDataEXTstructure(s) in native memory.Represents a pointer to aVkDescriptorGetInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDescriptorGetInfoEXTstructure(s) in native memory.Represents a pointer to aVkDescriptorImageInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorImageInfostructure(s) in native memory.Represents a pointer to aVkDescriptorPoolCreateInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorPoolCreateInfostructure(s) in native memory.Represents a pointer to aVkDescriptorPoolInlineUniformBlockCreateInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorPoolInlineUniformBlockCreateInfostructure(s) in native memory.Represents a pointer to aVkDescriptorPoolSizestructure in native memory.Represents a pointer to / an array ofVkDescriptorPoolSizestructure(s) in native memory.Represents a pointer to aVkDescriptorSetAllocateInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorSetAllocateInfostructure(s) in native memory.Represents a pointer to aVkDescriptorSetBindingReferenceVALVEstructure in native memory.Represents a pointer to / an array ofVkDescriptorSetBindingReferenceVALVEstructure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutBindingstructure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutBindingstructure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutBindingFlagsCreateInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutBindingFlagsCreateInfostructure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutCreateInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutCreateInfostructure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutHostMappingInfoVALVEstructure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutHostMappingInfoVALVEstructure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutSupportstructure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutSupportstructure(s) in native memory.Represents a pointer to aVkDescriptorSetVariableDescriptorCountAllocateInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorSetVariableDescriptorCountAllocateInfostructure(s) in native memory.Represents a pointer to aVkDescriptorSetVariableDescriptorCountLayoutSupportstructure in native memory.Represents a pointer to / an array ofVkDescriptorSetVariableDescriptorCountLayoutSupportstructure(s) in native memory.Represents a pointer to aVkDescriptorUpdateTemplateCreateInfostructure in native memory.Represents a pointer to / an array ofVkDescriptorUpdateTemplateCreateInfostructure(s) in native memory.Represents a pointer to aVkDescriptorUpdateTemplateEntrystructure in native memory.Represents a pointer to / an array ofVkDescriptorUpdateTemplateEntrystructure(s) in native memory.Represents a pointer to aVkDeviceAddressBindingCallbackDataEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceAddressBindingCallbackDataEXTstructure(s) in native memory.Represents a pointer to aVkDeviceBufferMemoryRequirementsstructure in native memory.Represents a pointer to / an array ofVkDeviceBufferMemoryRequirementsstructure(s) in native memory.Represents a pointer to aVkDeviceCreateInfostructure in native memory.Represents a pointer to / an array ofVkDeviceCreateInfostructure(s) in native memory.Represents a pointer to aVkDeviceDeviceMemoryReportCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceDeviceMemoryReportCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkDeviceDiagnosticsConfigCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkDeviceDiagnosticsConfigCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkDeviceEventInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceEventInfoEXTstructure(s) in native memory.Represents a pointer to aVkDeviceFaultAddressInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceFaultAddressInfoEXTstructure(s) in native memory.Represents a pointer to aVkDeviceFaultCountsEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceFaultCountsEXTstructure(s) in native memory.Represents a pointer to aVkDeviceFaultInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceFaultInfoEXTstructure(s) in native memory.Represents a pointer to aVkDeviceFaultVendorBinaryHeaderVersionOneEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceFaultVendorBinaryHeaderVersionOneEXTstructure(s) in native memory.Represents a pointer to aVkDeviceFaultVendorInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceFaultVendorInfoEXTstructure(s) in native memory.Represents a pointer to aVkDeviceGroupBindSparseInfostructure in native memory.Represents a pointer to / an array ofVkDeviceGroupBindSparseInfostructure(s) in native memory.Represents a pointer to aVkDeviceGroupCommandBufferBeginInfostructure in native memory.Represents a pointer to / an array ofVkDeviceGroupCommandBufferBeginInfostructure(s) in native memory.Represents a pointer to aVkDeviceGroupDeviceCreateInfostructure in native memory.Represents a pointer to / an array ofVkDeviceGroupDeviceCreateInfostructure(s) in native memory.Represents a pointer to aVkDeviceGroupPresentCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkDeviceGroupPresentCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkDeviceGroupPresentInfoKHRstructure in native memory.Represents a pointer to / an array ofVkDeviceGroupPresentInfoKHRstructure(s) in native memory.Represents a pointer to aVkDeviceGroupRenderPassBeginInfostructure in native memory.Represents a pointer to / an array ofVkDeviceGroupRenderPassBeginInfostructure(s) in native memory.Represents a pointer to aVkDeviceGroupSubmitInfostructure in native memory.Represents a pointer to / an array ofVkDeviceGroupSubmitInfostructure(s) in native memory.Represents a pointer to aVkDeviceGroupSwapchainCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkDeviceGroupSwapchainCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkDeviceImageMemoryRequirementsstructure in native memory.Represents a pointer to / an array ofVkDeviceImageMemoryRequirementsstructure(s) in native memory.Represents a pointer to aVkDeviceImageSubresourceInfostructure in native memory.Represents a pointer to / an array ofVkDeviceImageSubresourceInfostructure(s) in native memory.Represents a pointer to aVkDeviceMemoryOpaqueCaptureAddressInfostructure in native memory.Represents a pointer to / an array ofVkDeviceMemoryOpaqueCaptureAddressInfostructure(s) in native memory.Represents a pointer to aVkDeviceMemoryOverallocationCreateInfoAMDstructure in native memory.Represents a pointer to / an array ofVkDeviceMemoryOverallocationCreateInfoAMDstructure(s) in native memory.Represents a pointer to aVkDeviceMemoryReportCallbackDataEXTstructure in native memory.Represents a pointer to / an array ofVkDeviceMemoryReportCallbackDataEXTstructure(s) in native memory.Represents a pointer to aVkDeviceOrHostAddressConstAMDXstructure in native memory.Represents a pointer to / an array ofVkDeviceOrHostAddressConstAMDXstructure(s) in native memory.Represents a pointer to aVkDeviceOrHostAddressConstKHRstructure in native memory.Represents a pointer to / an array ofVkDeviceOrHostAddressConstKHRstructure(s) in native memory.Represents a pointer to aVkDeviceOrHostAddressKHRstructure in native memory.Represents a pointer to / an array ofVkDeviceOrHostAddressKHRstructure(s) in native memory.Represents a pointer to aVkDevicePipelineBinaryInternalCacheControlKHRstructure in native memory.Represents a pointer to / an array ofVkDevicePipelineBinaryInternalCacheControlKHRstructure(s) in native memory.Represents a pointer to aVkDevicePrivateDataCreateInfostructure in native memory.Represents a pointer to / an array ofVkDevicePrivateDataCreateInfostructure(s) in native memory.Represents a pointer to aVkDeviceQueueCreateInfostructure in native memory.Represents a pointer to / an array ofVkDeviceQueueCreateInfostructure(s) in native memory.Represents a pointer to aVkDeviceQueueGlobalPriorityCreateInfostructure in native memory.Represents a pointer to / an array ofVkDeviceQueueGlobalPriorityCreateInfostructure(s) in native memory.Represents a pointer to aVkDeviceQueueInfo2structure in native memory.Represents a pointer to / an array ofVkDeviceQueueInfo2structure(s) in native memory.Represents a pointer to aVkDeviceQueueShaderCoreControlCreateInfoARMstructure in native memory.Represents a pointer to / an array ofVkDeviceQueueShaderCoreControlCreateInfoARMstructure(s) in native memory.Represents a pointer to aVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkDirectDriverLoadingInfoLUNARGstructure in native memory.Represents a pointer to / an array ofVkDirectDriverLoadingInfoLUNARGstructure(s) in native memory.Represents a pointer to aVkDirectDriverLoadingListLUNARGstructure in native memory.Represents a pointer to / an array ofVkDirectDriverLoadingListLUNARGstructure(s) in native memory.Represents a pointer to aVkDirectFBSurfaceCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDirectFBSurfaceCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkDispatchGraphCountInfoAMDXstructure in native memory.Represents a pointer to / an array ofVkDispatchGraphCountInfoAMDXstructure(s) in native memory.Represents a pointer to aVkDispatchGraphInfoAMDXstructure in native memory.Represents a pointer to / an array ofVkDispatchGraphInfoAMDXstructure(s) in native memory.Represents a pointer to aVkDispatchIndirectCommandstructure in native memory.Represents a pointer to / an array ofVkDispatchIndirectCommandstructure(s) in native memory.Represents a pointer to aVkDispatchTileInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkDispatchTileInfoQCOMstructure(s) in native memory.Represents a pointer to aVkDisplayEventInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDisplayEventInfoEXTstructure(s) in native memory.Represents a pointer to aVkDisplayModeCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkDisplayModeCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkDisplayModeParametersKHRstructure in native memory.Represents a pointer to / an array ofVkDisplayModeParametersKHRstructure(s) in native memory.Represents a pointer to aVkDisplayModeProperties2KHRstructure in native memory.Represents a pointer to / an array ofVkDisplayModeProperties2KHRstructure(s) in native memory.Represents a pointer to aVkDisplayModePropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkDisplayModePropertiesKHRstructure(s) in native memory.Represents a pointer to aVkDisplayModeStereoPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkDisplayModeStereoPropertiesNVstructure(s) in native memory.Represents a pointer to aVkDisplayNativeHdrSurfaceCapabilitiesAMDstructure in native memory.Represents a pointer to / an array ofVkDisplayNativeHdrSurfaceCapabilitiesAMDstructure(s) in native memory.Represents a pointer to aVkDisplayPlaneCapabilities2KHRstructure in native memory.Represents a pointer to / an array ofVkDisplayPlaneCapabilities2KHRstructure(s) in native memory.Represents a pointer to aVkDisplayPlaneCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkDisplayPlaneCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkDisplayPlaneInfo2KHRstructure in native memory.Represents a pointer to / an array ofVkDisplayPlaneInfo2KHRstructure(s) in native memory.Represents a pointer to aVkDisplayPlaneProperties2KHRstructure in native memory.Represents a pointer to / an array ofVkDisplayPlaneProperties2KHRstructure(s) in native memory.Represents a pointer to aVkDisplayPlanePropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkDisplayPlanePropertiesKHRstructure(s) in native memory.Represents a pointer to aVkDisplayPowerInfoEXTstructure in native memory.Represents a pointer to / an array ofVkDisplayPowerInfoEXTstructure(s) in native memory.Represents a pointer to aVkDisplayPresentInfoKHRstructure in native memory.Represents a pointer to / an array ofVkDisplayPresentInfoKHRstructure(s) in native memory.Represents a pointer to aVkDisplayProperties2KHRstructure in native memory.Represents a pointer to / an array ofVkDisplayProperties2KHRstructure(s) in native memory.Represents a pointer to aVkDisplayPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkDisplayPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkDisplaySurfaceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkDisplaySurfaceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkDisplaySurfaceStereoCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkDisplaySurfaceStereoCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkDrawIndexedIndirectCommandstructure in native memory.Represents a pointer to / an array ofVkDrawIndexedIndirectCommandstructure(s) in native memory.Represents a pointer to aVkDrawIndirectCommandstructure in native memory.Represents a pointer to / an array ofVkDrawIndirectCommandstructure(s) in native memory.Represents a pointer to aVkDrawIndirectCountIndirectCommandEXTstructure in native memory.Represents a pointer to / an array ofVkDrawIndirectCountIndirectCommandEXTstructure(s) in native memory.Represents a pointer to aVkDrawMeshTasksIndirectCommandEXTstructure in native memory.Represents a pointer to / an array ofVkDrawMeshTasksIndirectCommandEXTstructure(s) in native memory.Represents a pointer to aVkDrawMeshTasksIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkDrawMeshTasksIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkDrmFormatModifierProperties2EXTstructure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierProperties2EXTstructure(s) in native memory.Represents a pointer to aVkDrmFormatModifierPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkDrmFormatModifierPropertiesList2EXTstructure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierPropertiesList2EXTstructure(s) in native memory.Represents a pointer to aVkDrmFormatModifierPropertiesListEXTstructure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierPropertiesListEXTstructure(s) in native memory.Represents a pointer to aVkEventCreateInfostructure in native memory.Represents a pointer to / an array ofVkEventCreateInfostructure(s) in native memory.Represents a pointer to aVkExecutionGraphPipelineCreateInfoAMDXstructure in native memory.Represents a pointer to / an array ofVkExecutionGraphPipelineCreateInfoAMDXstructure(s) in native memory.Represents a pointer to aVkExecutionGraphPipelineScratchSizeAMDXstructure in native memory.Represents a pointer to / an array ofVkExecutionGraphPipelineScratchSizeAMDXstructure(s) in native memory.Represents a pointer to aVkExportFenceCreateInfostructure in native memory.Represents a pointer to / an array ofVkExportFenceCreateInfostructure(s) in native memory.Represents a pointer to aVkExportFenceSciSyncInfoNVstructure in native memory.Represents a pointer to / an array ofVkExportFenceSciSyncInfoNVstructure(s) in native memory.Represents a pointer to aVkExportFenceWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkExportFenceWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkExportMemoryAllocateInfostructure in native memory.Represents a pointer to / an array ofVkExportMemoryAllocateInfostructure(s) in native memory.Represents a pointer to aVkExportMemoryAllocateInfoNVstructure in native memory.Represents a pointer to / an array ofVkExportMemoryAllocateInfoNVstructure(s) in native memory.Represents a pointer to aVkExportMemorySciBufInfoNVstructure in native memory.Represents a pointer to / an array ofVkExportMemorySciBufInfoNVstructure(s) in native memory.Represents a pointer to aVkExportMemoryWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkExportMemoryWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkExportMemoryWin32HandleInfoNVstructure in native memory.Represents a pointer to / an array ofVkExportMemoryWin32HandleInfoNVstructure(s) in native memory.Represents a pointer to aVkExportMetalBufferInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalBufferInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportMetalCommandQueueInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalCommandQueueInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportMetalDeviceInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalDeviceInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportMetalIOSurfaceInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalIOSurfaceInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportMetalObjectCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalObjectCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportMetalObjectsInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalObjectsInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportMetalSharedEventInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalSharedEventInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportMetalTextureInfoEXTstructure in native memory.Represents a pointer to / an array ofVkExportMetalTextureInfoEXTstructure(s) in native memory.Represents a pointer to aVkExportSemaphoreCreateInfostructure in native memory.Represents a pointer to / an array ofVkExportSemaphoreCreateInfostructure(s) in native memory.Represents a pointer to aVkExportSemaphoreSciSyncInfoNVstructure in native memory.Represents a pointer to / an array ofVkExportSemaphoreSciSyncInfoNVstructure(s) in native memory.Represents a pointer to aVkExportSemaphoreWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkExportSemaphoreWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkExtensionPropertiesstructure in native memory.Represents a pointer to / an array ofVkExtensionPropertiesstructure(s) in native memory.Represents a pointer to aVkExtent2Dstructure in native memory.Represents a pointer to / an array ofVkExtent2Dstructure(s) in native memory.Represents a pointer to aVkExtent3Dstructure in native memory.Represents a pointer to / an array ofVkExtent3Dstructure(s) in native memory.Represents a pointer to aVkExternalBufferPropertiesstructure in native memory.Represents a pointer to / an array ofVkExternalBufferPropertiesstructure(s) in native memory.Represents a pointer to aVkExternalComputeQueueCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkExternalComputeQueueCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkExternalComputeQueueDataParamsNVstructure in native memory.Represents a pointer to / an array ofVkExternalComputeQueueDataParamsNVstructure(s) in native memory.Represents a pointer to aVkExternalComputeQueueDeviceCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkExternalComputeQueueDeviceCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkExternalFencePropertiesstructure in native memory.Represents a pointer to / an array ofVkExternalFencePropertiesstructure(s) in native memory.Represents a pointer to aVkExternalFormatANDROIDstructure in native memory.Represents a pointer to / an array ofVkExternalFormatANDROIDstructure(s) in native memory.Represents a pointer to aVkExternalFormatQNXstructure in native memory.Represents a pointer to / an array ofVkExternalFormatQNXstructure(s) in native memory.Represents a pointer to aVkExternalImageFormatPropertiesstructure in native memory.Represents a pointer to / an array ofVkExternalImageFormatPropertiesstructure(s) in native memory.Represents a pointer to aVkExternalImageFormatPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkExternalImageFormatPropertiesNVstructure(s) in native memory.Represents a pointer to aVkExternalMemoryAcquireUnmodifiedEXTstructure in native memory.Represents a pointer to / an array ofVkExternalMemoryAcquireUnmodifiedEXTstructure(s) in native memory.Represents a pointer to aVkExternalMemoryBufferCreateInfostructure in native memory.Represents a pointer to / an array ofVkExternalMemoryBufferCreateInfostructure(s) in native memory.Represents a pointer to aVkExternalMemoryImageCreateInfostructure in native memory.Represents a pointer to / an array ofVkExternalMemoryImageCreateInfostructure(s) in native memory.Represents a pointer to aVkExternalMemoryImageCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkExternalMemoryImageCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkExternalMemoryPropertiesstructure in native memory.Represents a pointer to / an array ofVkExternalMemoryPropertiesstructure(s) in native memory.Represents a pointer to aVkExternalSemaphorePropertiesstructure in native memory.Represents a pointer to / an array ofVkExternalSemaphorePropertiesstructure(s) in native memory.Represents a pointer to aVkFenceCreateInfostructure in native memory.Represents a pointer to / an array ofVkFenceCreateInfostructure(s) in native memory.Represents a pointer to aVkFenceGetFdInfoKHRstructure in native memory.Represents a pointer to / an array ofVkFenceGetFdInfoKHRstructure(s) in native memory.Represents a pointer to aVkFenceGetSciSyncInfoNVstructure in native memory.Represents a pointer to / an array ofVkFenceGetSciSyncInfoNVstructure(s) in native memory.Represents a pointer to aVkFenceGetWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkFenceGetWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkFilterCubicImageViewImageFormatPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkFilterCubicImageViewImageFormatPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkFormatPropertiesstructure in native memory.Represents a pointer to / an array ofVkFormatPropertiesstructure(s) in native memory.Represents a pointer to aVkFormatProperties2structure in native memory.Represents a pointer to / an array ofVkFormatProperties2structure(s) in native memory.Represents a pointer to aVkFormatProperties3structure in native memory.Represents a pointer to / an array ofVkFormatProperties3structure(s) in native memory.Represents a pointer to aVkFragmentShadingRateAttachmentInfoKHRstructure in native memory.Represents a pointer to / an array ofVkFragmentShadingRateAttachmentInfoKHRstructure(s) in native memory.Represents a pointer to aVkFrameBoundaryEXTstructure in native memory.Represents a pointer to / an array ofVkFrameBoundaryEXTstructure(s) in native memory.Represents a pointer to aVkFramebufferAttachmentImageInfostructure in native memory.Represents a pointer to / an array ofVkFramebufferAttachmentImageInfostructure(s) in native memory.Represents a pointer to aVkFramebufferAttachmentsCreateInfostructure in native memory.Represents a pointer to / an array ofVkFramebufferAttachmentsCreateInfostructure(s) in native memory.Represents a pointer to aVkFramebufferCreateInfostructure in native memory.Represents a pointer to / an array ofVkFramebufferCreateInfostructure(s) in native memory.Represents a pointer to aVkFramebufferMixedSamplesCombinationNVstructure in native memory.Represents a pointer to / an array ofVkFramebufferMixedSamplesCombinationNVstructure(s) in native memory.Represents a pointer to aVkGeneratedCommandsInfoEXTstructure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsInfoEXTstructure(s) in native memory.Represents a pointer to aVkGeneratedCommandsInfoNVstructure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsInfoNVstructure(s) in native memory.Represents a pointer to aVkGeneratedCommandsMemoryRequirementsInfoEXTstructure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsMemoryRequirementsInfoEXTstructure(s) in native memory.Represents a pointer to aVkGeneratedCommandsMemoryRequirementsInfoNVstructure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsMemoryRequirementsInfoNVstructure(s) in native memory.Represents a pointer to aVkGeneratedCommandsPipelineInfoEXTstructure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsPipelineInfoEXTstructure(s) in native memory.Represents a pointer to aVkGeneratedCommandsShaderInfoEXTstructure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsShaderInfoEXTstructure(s) in native memory.Represents a pointer to aVkGeometryAABBNVstructure in native memory.Represents a pointer to / an array ofVkGeometryAABBNVstructure(s) in native memory.Represents a pointer to aVkGeometryDataNVstructure in native memory.Represents a pointer to / an array ofVkGeometryDataNVstructure(s) in native memory.Represents a pointer to aVkGeometryNVstructure in native memory.Represents a pointer to / an array ofVkGeometryNVstructure(s) in native memory.Represents a pointer to aVkGeometryTrianglesNVstructure in native memory.Represents a pointer to / an array ofVkGeometryTrianglesNVstructure(s) in native memory.Represents a pointer to aVkGetLatencyMarkerInfoNVstructure in native memory.Represents a pointer to / an array ofVkGetLatencyMarkerInfoNVstructure(s) in native memory.Represents a pointer to aVkGraphicsPipelineCreateInfostructure in native memory.Represents a pointer to / an array ofVkGraphicsPipelineCreateInfostructure(s) in native memory.Represents a pointer to aVkGraphicsPipelineLibraryCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkGraphicsPipelineLibraryCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkGraphicsPipelineShaderGroupsCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkGraphicsPipelineShaderGroupsCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkGraphicsShaderGroupCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkGraphicsShaderGroupCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkHdrMetadataEXTstructure in native memory.Represents a pointer to / an array ofVkHdrMetadataEXTstructure(s) in native memory.Represents a pointer to aVkHdrVividDynamicMetadataHUAWEIstructure in native memory.Represents a pointer to / an array ofVkHdrVividDynamicMetadataHUAWEIstructure(s) in native memory.Represents a pointer to aVkHeadlessSurfaceCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkHeadlessSurfaceCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkHostImageCopyDevicePerformanceQuerystructure in native memory.Represents a pointer to / an array ofVkHostImageCopyDevicePerformanceQuerystructure(s) in native memory.Represents a pointer to aVkHostImageLayoutTransitionInfostructure in native memory.Represents a pointer to / an array ofVkHostImageLayoutTransitionInfostructure(s) in native memory.Represents a pointer to aVkImageAlignmentControlCreateInfoMESAstructure in native memory.Represents a pointer to / an array ofVkImageAlignmentControlCreateInfoMESAstructure(s) in native memory.Represents a pointer to aVkImageBlitstructure in native memory.Represents a pointer to / an array ofVkImageBlitstructure(s) in native memory.Represents a pointer to aVkImageBlit2structure in native memory.Represents a pointer to / an array ofVkImageBlit2structure(s) in native memory.Represents a pointer to aVkImageCaptureDescriptorDataInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImageCaptureDescriptorDataInfoEXTstructure(s) in native memory.Represents a pointer to aVkImageCompressionControlEXTstructure in native memory.Represents a pointer to / an array ofVkImageCompressionControlEXTstructure(s) in native memory.Represents a pointer to aVkImageCompressionPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkImageCompressionPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkImageConstraintsInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkImageConstraintsInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkImageCopystructure in native memory.Represents a pointer to / an array ofVkImageCopystructure(s) in native memory.Represents a pointer to aVkImageCopy2structure in native memory.Represents a pointer to / an array ofVkImageCopy2structure(s) in native memory.Represents a pointer to aVkImageCreateInfostructure in native memory.Represents a pointer to / an array ofVkImageCreateInfostructure(s) in native memory.Represents a pointer to aVkImageDrmFormatModifierExplicitCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImageDrmFormatModifierExplicitCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkImageDrmFormatModifierListCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImageDrmFormatModifierListCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkImageDrmFormatModifierPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkImageDrmFormatModifierPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkImageFormatConstraintsInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkImageFormatConstraintsInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkImageFormatListCreateInfostructure in native memory.Represents a pointer to / an array ofVkImageFormatListCreateInfostructure(s) in native memory.Represents a pointer to aVkImageFormatPropertiesstructure in native memory.Represents a pointer to / an array ofVkImageFormatPropertiesstructure(s) in native memory.Represents a pointer to aVkImageFormatProperties2structure in native memory.Represents a pointer to / an array ofVkImageFormatProperties2structure(s) in native memory.Represents a pointer to aVkImageMemoryBarrierstructure in native memory.Represents a pointer to / an array ofVkImageMemoryBarrierstructure(s) in native memory.Represents a pointer to aVkImageMemoryBarrier2structure in native memory.Represents a pointer to / an array ofVkImageMemoryBarrier2structure(s) in native memory.Represents a pointer to aVkImageMemoryRequirementsInfo2structure in native memory.Represents a pointer to / an array ofVkImageMemoryRequirementsInfo2structure(s) in native memory.Represents a pointer to aVkImagePipeSurfaceCreateInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkImagePipeSurfaceCreateInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkImagePlaneMemoryRequirementsInfostructure in native memory.Represents a pointer to / an array ofVkImagePlaneMemoryRequirementsInfostructure(s) in native memory.Represents a pointer to aVkImageResolvestructure in native memory.Represents a pointer to / an array ofVkImageResolvestructure(s) in native memory.Represents a pointer to aVkImageResolve2structure in native memory.Represents a pointer to / an array ofVkImageResolve2structure(s) in native memory.Represents a pointer to aVkImageSparseMemoryRequirementsInfo2structure in native memory.Represents a pointer to / an array ofVkImageSparseMemoryRequirementsInfo2structure(s) in native memory.Represents a pointer to aVkImageStencilUsageCreateInfostructure in native memory.Represents a pointer to / an array ofVkImageStencilUsageCreateInfostructure(s) in native memory.Represents a pointer to aVkImageSubresourcestructure in native memory.Represents a pointer to / an array ofVkImageSubresourcestructure(s) in native memory.Represents a pointer to aVkImageSubresource2structure in native memory.Represents a pointer to / an array ofVkImageSubresource2structure(s) in native memory.Represents a pointer to aVkImageSubresourceLayersstructure in native memory.Represents a pointer to / an array ofVkImageSubresourceLayersstructure(s) in native memory.Represents a pointer to aVkImageSubresourceRangestructure in native memory.Represents a pointer to / an array ofVkImageSubresourceRangestructure(s) in native memory.Represents a pointer to aVkImageSwapchainCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkImageSwapchainCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkImageToMemoryCopystructure in native memory.Represents a pointer to / an array ofVkImageToMemoryCopystructure(s) in native memory.Represents a pointer to aVkImageViewAddressPropertiesNVXstructure in native memory.Represents a pointer to / an array ofVkImageViewAddressPropertiesNVXstructure(s) in native memory.Represents a pointer to aVkImageViewASTCDecodeModeEXTstructure in native memory.Represents a pointer to / an array ofVkImageViewASTCDecodeModeEXTstructure(s) in native memory.Represents a pointer to aVkImageViewCaptureDescriptorDataInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImageViewCaptureDescriptorDataInfoEXTstructure(s) in native memory.Represents a pointer to aVkImageViewCreateInfostructure in native memory.Represents a pointer to / an array ofVkImageViewCreateInfostructure(s) in native memory.Represents a pointer to aVkImageViewHandleInfoNVXstructure in native memory.Represents a pointer to / an array ofVkImageViewHandleInfoNVXstructure(s) in native memory.Represents a pointer to aVkImageViewMinLodCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImageViewMinLodCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkImageViewSampleWeightCreateInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkImageViewSampleWeightCreateInfoQCOMstructure(s) in native memory.Represents a pointer to aVkImageViewSlicedCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImageViewSlicedCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkImageViewUsageCreateInfostructure in native memory.Represents a pointer to / an array ofVkImageViewUsageCreateInfostructure(s) in native memory.Represents a pointer to aVkImportAndroidHardwareBufferInfoANDROIDstructure in native memory.Represents a pointer to / an array ofVkImportAndroidHardwareBufferInfoANDROIDstructure(s) in native memory.Represents a pointer to aVkImportFenceFdInfoKHRstructure in native memory.Represents a pointer to / an array ofVkImportFenceFdInfoKHRstructure(s) in native memory.Represents a pointer to aVkImportFenceSciSyncInfoNVstructure in native memory.Represents a pointer to / an array ofVkImportFenceSciSyncInfoNVstructure(s) in native memory.Represents a pointer to aVkImportFenceWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkImportFenceWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkImportMemoryBufferCollectionFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkImportMemoryBufferCollectionFUCHSIAstructure(s) in native memory.Represents a pointer to aVkImportMemoryFdInfoKHRstructure in native memory.Represents a pointer to / an array ofVkImportMemoryFdInfoKHRstructure(s) in native memory.Represents a pointer to aVkImportMemoryHostPointerInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImportMemoryHostPointerInfoEXTstructure(s) in native memory.Represents a pointer to aVkImportMemoryMetalHandleInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImportMemoryMetalHandleInfoEXTstructure(s) in native memory.Represents a pointer to aVkImportMemorySciBufInfoNVstructure in native memory.Represents a pointer to / an array ofVkImportMemorySciBufInfoNVstructure(s) in native memory.Represents a pointer to aVkImportMemoryWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkImportMemoryWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkImportMemoryWin32HandleInfoNVstructure in native memory.Represents a pointer to / an array ofVkImportMemoryWin32HandleInfoNVstructure(s) in native memory.Represents a pointer to aVkImportMemoryZirconHandleInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkImportMemoryZirconHandleInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkImportMetalBufferInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImportMetalBufferInfoEXTstructure(s) in native memory.Represents a pointer to aVkImportMetalIOSurfaceInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImportMetalIOSurfaceInfoEXTstructure(s) in native memory.Represents a pointer to aVkImportMetalSharedEventInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImportMetalSharedEventInfoEXTstructure(s) in native memory.Represents a pointer to aVkImportMetalTextureInfoEXTstructure in native memory.Represents a pointer to / an array ofVkImportMetalTextureInfoEXTstructure(s) in native memory.Represents a pointer to aVkImportScreenBufferInfoQNXstructure in native memory.Represents a pointer to / an array ofVkImportScreenBufferInfoQNXstructure(s) in native memory.Represents a pointer to aVkImportSemaphoreFdInfoKHRstructure in native memory.Represents a pointer to / an array ofVkImportSemaphoreFdInfoKHRstructure(s) in native memory.Represents a pointer to aVkImportSemaphoreSciSyncInfoNVstructure in native memory.Represents a pointer to / an array ofVkImportSemaphoreSciSyncInfoNVstructure(s) in native memory.Represents a pointer to aVkImportSemaphoreWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkImportSemaphoreWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkImportSemaphoreZirconHandleInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkImportSemaphoreZirconHandleInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsExecutionSetTokenEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsExecutionSetTokenEXTstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsIndexBufferTokenEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsIndexBufferTokenEXTstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutTokenEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutTokenEXTstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutTokenNVstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutTokenNVstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsPushConstantTokenEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsPushConstantTokenEXTstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsStreamNVstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsStreamNVstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsTokenDataEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsTokenDataEXTstructure(s) in native memory.Represents a pointer to aVkIndirectCommandsVertexBufferTokenEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectCommandsVertexBufferTokenEXTstructure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetInfoEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetInfoEXTstructure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetPipelineInfoEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetPipelineInfoEXTstructure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetShaderInfoEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetShaderInfoEXTstructure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetShaderLayoutInfoEXTstructure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetShaderLayoutInfoEXTstructure(s) in native memory.Represents a pointer to aVkInitializePerformanceApiInfoINTELstructure in native memory.Represents a pointer to / an array ofVkInitializePerformanceApiInfoINTELstructure(s) in native memory.Represents a pointer to aVkInputAttachmentAspectReferencestructure in native memory.Represents a pointer to / an array ofVkInputAttachmentAspectReferencestructure(s) in native memory.Represents a pointer to aVkInstanceCreateInfostructure in native memory.Represents a pointer to / an array ofVkInstanceCreateInfostructure(s) in native memory.Represents a pointer to aVkIOSSurfaceCreateInfoMVKstructure in native memory.Represents a pointer to / an array ofVkIOSSurfaceCreateInfoMVKstructure(s) in native memory.Represents a pointer to aVkLatencySleepInfoNVstructure in native memory.Represents a pointer to / an array ofVkLatencySleepInfoNVstructure(s) in native memory.Represents a pointer to aVkLatencySleepModeInfoNVstructure in native memory.Represents a pointer to / an array ofVkLatencySleepModeInfoNVstructure(s) in native memory.Represents a pointer to aVkLatencySubmissionPresentIdNVstructure in native memory.Represents a pointer to / an array ofVkLatencySubmissionPresentIdNVstructure(s) in native memory.Represents a pointer to aVkLatencySurfaceCapabilitiesNVstructure in native memory.Represents a pointer to / an array ofVkLatencySurfaceCapabilitiesNVstructure(s) in native memory.Represents a pointer to aVkLatencyTimingsFrameReportNVstructure in native memory.Represents a pointer to / an array ofVkLatencyTimingsFrameReportNVstructure(s) in native memory.Represents a pointer to aVkLayerPropertiesstructure in native memory.Represents a pointer to / an array ofVkLayerPropertiesstructure(s) in native memory.Represents a pointer to aVkLayerSettingEXTstructure in native memory.Represents a pointer to / an array ofVkLayerSettingEXTstructure(s) in native memory.Represents a pointer to aVkLayerSettingsCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkLayerSettingsCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkMacOSSurfaceCreateInfoMVKstructure in native memory.Represents a pointer to / an array ofVkMacOSSurfaceCreateInfoMVKstructure(s) in native memory.Represents a pointer to aVkMappedMemoryRangestructure in native memory.Represents a pointer to / an array ofVkMappedMemoryRangestructure(s) in native memory.Represents a pointer to aVkMemoryAllocateFlagsInfostructure in native memory.Represents a pointer to / an array ofVkMemoryAllocateFlagsInfostructure(s) in native memory.Represents a pointer to aVkMemoryAllocateInfostructure in native memory.Represents a pointer to / an array ofVkMemoryAllocateInfostructure(s) in native memory.Represents a pointer to aVkMemoryBarrierstructure in native memory.Represents a pointer to / an array ofVkMemoryBarrierstructure(s) in native memory.Represents a pointer to aVkMemoryBarrier2structure in native memory.Represents a pointer to / an array ofVkMemoryBarrier2structure(s) in native memory.Represents a pointer to aVkMemoryBarrierAccessFlags3KHRstructure in native memory.Represents a pointer to / an array ofVkMemoryBarrierAccessFlags3KHRstructure(s) in native memory.Represents a pointer to aVkMemoryDedicatedAllocateInfostructure in native memory.Represents a pointer to / an array ofVkMemoryDedicatedAllocateInfostructure(s) in native memory.Represents a pointer to aVkMemoryDedicatedRequirementsstructure in native memory.Represents a pointer to / an array ofVkMemoryDedicatedRequirementsstructure(s) in native memory.Represents a pointer to aVkMemoryFdPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkMemoryFdPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkMemoryGetAndroidHardwareBufferInfoANDROIDstructure in native memory.Represents a pointer to / an array ofVkMemoryGetAndroidHardwareBufferInfoANDROIDstructure(s) in native memory.Represents a pointer to aVkMemoryGetFdInfoKHRstructure in native memory.Represents a pointer to / an array ofVkMemoryGetFdInfoKHRstructure(s) in native memory.Represents a pointer to aVkMemoryGetMetalHandleInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMemoryGetMetalHandleInfoEXTstructure(s) in native memory.Represents a pointer to aVkMemoryGetRemoteAddressInfoNVstructure in native memory.Represents a pointer to / an array ofVkMemoryGetRemoteAddressInfoNVstructure(s) in native memory.Represents a pointer to aVkMemoryGetSciBufInfoNVstructure in native memory.Represents a pointer to / an array ofVkMemoryGetSciBufInfoNVstructure(s) in native memory.Represents a pointer to aVkMemoryGetWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkMemoryGetWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkMemoryGetZirconHandleInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkMemoryGetZirconHandleInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkMemoryHeapstructure in native memory.Represents a pointer to / an array ofVkMemoryHeapstructure(s) in native memory.Represents a pointer to aVkMemoryHostPointerPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkMemoryHostPointerPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkMemoryMapInfostructure in native memory.Represents a pointer to / an array ofVkMemoryMapInfostructure(s) in native memory.Represents a pointer to aVkMemoryMapPlacedInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMemoryMapPlacedInfoEXTstructure(s) in native memory.Represents a pointer to aVkMemoryMetalHandlePropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkMemoryMetalHandlePropertiesEXTstructure(s) in native memory.Represents a pointer to aVkMemoryOpaqueCaptureAddressAllocateInfostructure in native memory.Represents a pointer to / an array ofVkMemoryOpaqueCaptureAddressAllocateInfostructure(s) in native memory.Represents a pointer to aVkMemoryPriorityAllocateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMemoryPriorityAllocateInfoEXTstructure(s) in native memory.Represents a pointer to aVkMemoryRequirementsstructure in native memory.Represents a pointer to / an array ofVkMemoryRequirementsstructure(s) in native memory.Represents a pointer to aVkMemoryRequirements2structure in native memory.Represents a pointer to / an array ofVkMemoryRequirements2structure(s) in native memory.Represents a pointer to aVkMemorySciBufPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkMemorySciBufPropertiesNVstructure(s) in native memory.Represents a pointer to aVkMemoryToImageCopystructure in native memory.Represents a pointer to / an array ofVkMemoryToImageCopystructure(s) in native memory.Represents a pointer to aVkMemoryTypestructure in native memory.Represents a pointer to / an array ofVkMemoryTypestructure(s) in native memory.Represents a pointer to aVkMemoryUnmapInfostructure in native memory.Represents a pointer to / an array ofVkMemoryUnmapInfostructure(s) in native memory.Represents a pointer to aVkMemoryWin32HandlePropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkMemoryWin32HandlePropertiesKHRstructure(s) in native memory.Represents a pointer to aVkMemoryZirconHandlePropertiesFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkMemoryZirconHandlePropertiesFUCHSIAstructure(s) in native memory.Represents a pointer to aVkMetalSurfaceCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMetalSurfaceCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkMicromapBuildInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMicromapBuildInfoEXTstructure(s) in native memory.Represents a pointer to aVkMicromapBuildSizesInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMicromapBuildSizesInfoEXTstructure(s) in native memory.Represents a pointer to aVkMicromapCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMicromapCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkMicromapTriangleEXTstructure in native memory.Represents a pointer to / an array ofVkMicromapTriangleEXTstructure(s) in native memory.Represents a pointer to aVkMicromapUsageEXTstructure in native memory.Represents a pointer to / an array ofVkMicromapUsageEXTstructure(s) in native memory.Represents a pointer to aVkMicromapVersionInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMicromapVersionInfoEXTstructure(s) in native memory.Represents a pointer to aVkMultiDrawIndexedInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMultiDrawIndexedInfoEXTstructure(s) in native memory.Represents a pointer to aVkMultiDrawInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMultiDrawInfoEXTstructure(s) in native memory.Represents a pointer to aVkMultisampledRenderToSingleSampledInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMultisampledRenderToSingleSampledInfoEXTstructure(s) in native memory.Represents a pointer to aVkMultisamplePropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkMultisamplePropertiesEXTstructure(s) in native memory.Represents a pointer to aVkMultiviewPerViewAttributesInfoNVXstructure in native memory.Represents a pointer to / an array ofVkMultiviewPerViewAttributesInfoNVXstructure(s) in native memory.Represents a pointer to aVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOMstructure(s) in native memory.Represents a pointer to aVkMutableDescriptorTypeCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkMutableDescriptorTypeCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkMutableDescriptorTypeListEXTstructure in native memory.Represents a pointer to / an array ofVkMutableDescriptorTypeListEXTstructure(s) in native memory.Represents a pointer to aVkOffset2Dstructure in native memory.Represents a pointer to / an array ofVkOffset2Dstructure(s) in native memory.Represents a pointer to aVkOffset3Dstructure in native memory.Represents a pointer to / an array ofVkOffset3Dstructure(s) in native memory.Represents a pointer to aVkOpaqueCaptureDescriptorDataCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkOpaqueCaptureDescriptorDataCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkOpticalFlowExecuteInfoNVstructure in native memory.Represents a pointer to / an array ofVkOpticalFlowExecuteInfoNVstructure(s) in native memory.Represents a pointer to aVkOpticalFlowImageFormatInfoNVstructure in native memory.Represents a pointer to / an array ofVkOpticalFlowImageFormatInfoNVstructure(s) in native memory.Represents a pointer to aVkOpticalFlowImageFormatPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkOpticalFlowImageFormatPropertiesNVstructure(s) in native memory.Represents a pointer to aVkOpticalFlowSessionCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkOpticalFlowSessionCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkOpticalFlowSessionCreatePrivateDataInfoNVstructure in native memory.Represents a pointer to / an array ofVkOpticalFlowSessionCreatePrivateDataInfoNVstructure(s) in native memory.Represents a pointer to aVkOutOfBandQueueTypeInfoNVstructure in native memory.Represents a pointer to / an array ofVkOutOfBandQueueTypeInfoNVstructure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureFlagsNVstructure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureFlagsNVstructure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureInstancesInputNVstructure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureInstancesInputNVstructure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureUpdateInstanceDataNVstructure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureUpdateInstanceDataNVstructure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureWriteInstanceDataNVstructure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureWriteInstanceDataNVstructure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureWritePartitionTranslationDataNVstructure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureWritePartitionTranslationDataNVstructure(s) in native memory.Represents a pointer to aVkPastPresentationTimingGOOGLEstructure in native memory.Represents a pointer to / an array ofVkPastPresentationTimingGOOGLEstructure(s) in native memory.Represents a pointer to aVkPerformanceConfigurationAcquireInfoINTELstructure in native memory.Represents a pointer to / an array ofVkPerformanceConfigurationAcquireInfoINTELstructure(s) in native memory.Represents a pointer to aVkPerformanceCounterDescriptionKHRstructure in native memory.Represents a pointer to / an array ofVkPerformanceCounterDescriptionKHRstructure(s) in native memory.Represents a pointer to aVkPerformanceCounterKHRstructure in native memory.Represents a pointer to / an array ofVkPerformanceCounterKHRstructure(s) in native memory.Represents a pointer to aVkPerformanceCounterResultKHRstructure in native memory.Represents a pointer to / an array ofVkPerformanceCounterResultKHRstructure(s) in native memory.Represents a pointer to aVkPerformanceMarkerInfoINTELstructure in native memory.Represents a pointer to / an array ofVkPerformanceMarkerInfoINTELstructure(s) in native memory.Represents a pointer to aVkPerformanceOverrideInfoINTELstructure in native memory.Represents a pointer to / an array ofVkPerformanceOverrideInfoINTELstructure(s) in native memory.Represents a pointer to aVkPerformanceQueryReservationInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPerformanceQueryReservationInfoKHRstructure(s) in native memory.Represents a pointer to aVkPerformanceQuerySubmitInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPerformanceQuerySubmitInfoKHRstructure(s) in native memory.Represents a pointer to aVkPerformanceStreamMarkerInfoINTELstructure in native memory.Represents a pointer to / an array ofVkPerformanceStreamMarkerInfoINTELstructure(s) in native memory.Represents a pointer to aVkPerformanceValueDataINTELstructure in native memory.Represents a pointer to / an array ofVkPerformanceValueDataINTELstructure(s) in native memory.Represents a pointer to aVkPerformanceValueINTELstructure in native memory.Represents a pointer to / an array ofVkPerformanceValueINTELstructure(s) in native memory.Represents a pointer to aVkPerTileBeginInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkPerTileBeginInfoQCOMstructure(s) in native memory.Represents a pointer to aVkPerTileEndInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkPerTileEndInfoQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDevice16BitStorageFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevice16BitStorageFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDevice4444FormatsFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevice4444FormatsFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevice8BitStorageFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevice8BitStorageFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAccelerationStructureFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAccelerationStructureFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAccelerationStructurePropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAccelerationStructurePropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAddressBindingReportFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAddressBindingReportFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAmigoProfilingFeaturesSECstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAmigoProfilingFeaturesSECstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAntiLagFeaturesAMDstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAntiLagFeaturesAMDstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceASTCDecodeFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceASTCDecodeFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBlendOperationAdvancedFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBlendOperationAdvancedFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBlendOperationAdvancedPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBlendOperationAdvancedPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBorderColorSwizzleFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBorderColorSwizzleFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBufferDeviceAddressFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBufferDeviceAddressFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBufferDeviceAddressFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBufferDeviceAddressFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterAccelerationStructureFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterAccelerationStructureFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterAccelerationStructurePropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterAccelerationStructurePropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEIstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEIstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEIstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEIstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEIstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEIstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCoherentMemoryFeaturesAMDstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCoherentMemoryFeaturesAMDstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceColorWriteEnableFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceColorWriteEnableFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCommandBufferInheritanceFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCommandBufferInheritanceFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceComputeShaderDerivativesFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceComputeShaderDerivativesFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceComputeShaderDerivativesPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceComputeShaderDerivativesPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceConditionalRenderingFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceConditionalRenderingFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceConservativeRasterizationPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceConservativeRasterizationPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrix2FeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrix2FeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrix2PropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrix2PropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeVectorFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeVectorFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeVectorPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeVectorPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCopyMemoryIndirectFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCopyMemoryIndirectFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCopyMemoryIndirectPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCopyMemoryIndirectPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCornerSampledImageFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCornerSampledImageFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCoverageReductionModeFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCoverageReductionModeFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCubicClampFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCubicClampFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCubicWeightsFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCubicWeightsFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCudaKernelLaunchFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCudaKernelLaunchFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCudaKernelLaunchPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCudaKernelLaunchPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCustomBorderColorFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCustomBorderColorFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCustomBorderColorPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCustomBorderColorPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthBiasControlFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthBiasControlFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClampControlFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClampControlFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClampZeroOneFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClampZeroOneFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClipControlFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClipControlFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClipEnableFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClipEnableFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthStencilResolvePropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthStencilResolvePropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorBufferFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorBufferFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorBufferPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorBufferPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorIndexingFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorIndexingFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorIndexingPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorIndexingPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVEstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVEstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceMemoryReportFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceMemoryReportFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDiagnosticsConfigFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDiagnosticsConfigFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDiscardRectanglePropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDiscardRectanglePropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDisplacementMicromapFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDisplacementMicromapFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDisplacementMicromapPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDisplacementMicromapPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDriverPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDriverPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDrmPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDrmPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDynamicRenderingFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDynamicRenderingFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDynamicRenderingLocalReadFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDynamicRenderingLocalReadFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExclusiveScissorFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExclusiveScissorFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicState2FeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicState2FeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicState3FeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicState3FeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicState3PropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicState3PropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicStateFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicStateFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalBufferInfostructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalBufferInfostructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalComputeQueuePropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalComputeQueuePropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalFenceInfostructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalFenceInfostructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalFormatResolveFeaturesANDROIDstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalFormatResolveFeaturesANDROIDstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalFormatResolvePropertiesANDROIDstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalFormatResolvePropertiesANDROIDstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalImageFormatInfostructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalImageFormatInfostructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemoryHostPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemoryHostPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemoryRDMAFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemoryRDMAFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemorySciBufFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemorySciBufFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNXstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNXstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalSciSync2FeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalSciSync2FeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalSciSyncFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalSciSyncFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalSemaphoreInfostructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalSemaphoreInfostructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFaultFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFaultFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFeatures2structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFeatures2structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFloatControlsPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFloatControlsPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMap2FeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMap2FeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMap2PropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMap2PropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShaderInterlockFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShaderInterlockFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRatePropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRatePropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFrameBoundaryFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFrameBoundaryFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGlobalPriorityQueryFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGlobalPriorityQueryFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGroupPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGroupPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHdrVividFeaturesHUAWEIstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHdrVividFeaturesHUAWEIstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHostImageCopyFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHostImageCopyFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHostImageCopyPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHostImageCopyPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHostQueryResetFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHostQueryResetFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceIDPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceIDPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImage2DViewOf3DFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImage2DViewOf3DFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageAlignmentControlFeaturesMESAstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageAlignmentControlFeaturesMESAstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageAlignmentControlPropertiesMESAstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageAlignmentControlPropertiesMESAstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageCompressionControlFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageCompressionControlFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageDrmFormatModifierInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageDrmFormatModifierInfoEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageFormatInfo2structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageFormatInfo2structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImagelessFramebufferFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImagelessFramebufferFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessing2FeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessing2FeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessing2PropertiesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessing2PropertiesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessingFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessingFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessingPropertiesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessingPropertiesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageRobustnessFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageRobustnessFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageViewImageFormatInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageViewImageFormatInfoEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageViewMinLodFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageViewMinLodFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceIndexTypeUint8Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceIndexTypeUint8Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInheritedViewportScissorFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInheritedViewportScissorFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInlineUniformBlockFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInlineUniformBlockFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInlineUniformBlockPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInlineUniformBlockPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInvocationMaskFeaturesHUAWEIstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInvocationMaskFeaturesHUAWEIstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredApiPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredApiPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredApiPropertiesListKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredApiPropertiesListKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredApiVulkanPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredApiVulkanPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredDriverPropertiesMSFTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredDriverPropertiesMSFTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLegacyDitheringFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLegacyDitheringFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLegacyVertexAttributesFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLegacyVertexAttributesFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLegacyVertexAttributesPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLegacyVertexAttributesPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLimitsstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLimitsstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLinearColorAttachmentFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLinearColorAttachmentFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLineRasterizationFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLineRasterizationFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLineRasterizationPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLineRasterizationPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance3Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance3Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance4Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance4Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance4Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance4Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance5Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance5Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance5Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance5Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance6Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance6Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance6Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance6Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance7FeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance7FeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance7PropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance7PropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance8FeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance8FeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMapMemoryPlacedFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMapMemoryPlacedFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMapMemoryPlacedPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMapMemoryPlacedPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryBudgetPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryBudgetPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryDecompressionFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryDecompressionFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryDecompressionPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryDecompressionPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryPriorityFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryPriorityFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryProperties2structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryProperties2structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiDrawFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiDrawFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiDrawPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiDrawPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVXstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVXstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMutableDescriptorTypeFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMutableDescriptorTypeFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceNestedCommandBufferFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceNestedCommandBufferFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceNestedCommandBufferPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceNestedCommandBufferPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpacityMicromapFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpacityMicromapFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpacityMicromapPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpacityMicromapPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpticalFlowFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpticalFlowFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpticalFlowPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpticalFlowPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePartitionedAccelerationStructureFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePartitionedAccelerationStructureFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePartitionedAccelerationStructurePropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePartitionedAccelerationStructurePropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePCIBusInfoPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePCIBusInfoPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePerformanceQueryFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePerformanceQueryFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePerformanceQueryPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePerformanceQueryPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePerStageDescriptorSetFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePerStageDescriptorSetFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineBinaryFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineBinaryFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineBinaryPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineBinaryPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineCreationCacheControlFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineCreationCacheControlFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineOpacityMicromapFeaturesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineOpacityMicromapFeaturesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelinePropertiesFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelinePropertiesFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineProtectedAccessFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineProtectedAccessFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineRobustnessFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineRobustnessFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineRobustnessPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineRobustnessPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePointClippingPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePointClippingPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePortabilitySubsetFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePortabilitySubsetFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePortabilitySubsetPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePortabilitySubsetPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentBarrierFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentBarrierFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentIdFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentIdFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentMeteringFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentMeteringFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentWaitFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentWaitFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePrivateDataFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePrivateDataFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProperties2structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProperties2structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProtectedMemoryFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProtectedMemoryFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProtectedMemoryPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProtectedMemoryPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProvokingVertexFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProvokingVertexFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProvokingVertexPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProvokingVertexPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDevicePushDescriptorPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePushDescriptorPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRawAccessChainsFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRawAccessChainsFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayQueryFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayQueryFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingInvocationReorderFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingInvocationReorderFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingInvocationReorderPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingInvocationReorderPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingMaintenance1FeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingMaintenance1FeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingMotionBlurFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingMotionBlurFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPipelineFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPipelineFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPipelinePropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPipelinePropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPositionFetchFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPositionFetchFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingValidationFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingValidationFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMGstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMGstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRenderPassStripedFeaturesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRenderPassStripedFeaturesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRenderPassStripedPropertiesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRenderPassStripedPropertiesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRepresentativeFragmentTestFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRepresentativeFragmentTestFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRGBA10X6FormatsFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRGBA10X6FormatsFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRobustness2FeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRobustness2FeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRobustness2PropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRobustness2PropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSampleLocationsPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSampleLocationsPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSamplerFilterMinmaxPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSamplerFilterMinmaxPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSamplerYcbcrConversionFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSamplerYcbcrConversionFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceScalarBlockLayoutFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceScalarBlockLayoutFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSchedulingControlsFeaturesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSchedulingControlsFeaturesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSchedulingControlsPropertiesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSchedulingControlsPropertiesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicFloat2FeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicFloat2FeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicFloatFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicFloatFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicInt64Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicInt64Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderBfloat16FeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderBfloat16FeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderClockFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderClockFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCoreBuiltinsFeaturesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCoreBuiltinsFeaturesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCoreBuiltinsPropertiesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCoreBuiltinsPropertiesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCoreProperties2AMDstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCoreProperties2AMDstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCorePropertiesAMDstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCorePropertiesAMDstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCorePropertiesARMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCorePropertiesARMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderDemoteToHelperInvocationFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderDemoteToHelperInvocationFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderDrawParametersFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderDrawParametersFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMDstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMDstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderEnqueueFeaturesAMDXstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderEnqueueFeaturesAMDXstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderEnqueuePropertiesAMDXstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderEnqueuePropertiesAMDXstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderExpectAssumeFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderExpectAssumeFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderFloat16Int8Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderFloat16Int8Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderFloatControls2Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderFloatControls2Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderImageFootprintFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderImageFootprintFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderIntegerDotProductFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderIntegerDotProductFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderIntegerDotProductPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderIntegerDotProductPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTELstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTELstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderModuleIdentifierFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderModuleIdentifierFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderModuleIdentifierPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderModuleIdentifierPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderObjectFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderObjectFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderObjectPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderObjectPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderQuadControlFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderQuadControlFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSMBuiltinsFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSMBuiltinsFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSMBuiltinsPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSMBuiltinsPropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSubgroupExtendedTypesFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSubgroupExtendedTypesFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSubgroupRotateFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSubgroupRotateFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderTerminateInvocationFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderTerminateInvocationFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderTileImageFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderTileImageFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderTileImagePropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderTileImagePropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShadingRateImageFeaturesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShadingRateImageFeaturesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShadingRateImagePropertiesNVstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShadingRateImagePropertiesNVstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSparseImageFormatInfo2structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSparseImageFormatInfo2structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSparsePropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSparsePropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubgroupPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubgroupPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubgroupSizeControlFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubgroupSizeControlFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubgroupSizeControlPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubgroupSizeControlPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubpassShadingFeaturesHUAWEIstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubpassShadingFeaturesHUAWEIstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubpassShadingPropertiesHUAWEIstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubpassShadingPropertiesHUAWEIstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSurfaceInfo2KHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSurfaceInfo2KHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSwapchainMaintenance1FeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSwapchainMaintenance1FeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSynchronization2Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSynchronization2Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTexelBufferAlignmentFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTexelBufferAlignmentFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTexelBufferAlignmentPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTexelBufferAlignmentPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTextureCompressionASTCHDRFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTextureCompressionASTCHDRFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileMemoryHeapFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileMemoryHeapFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileMemoryHeapPropertiesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileMemoryHeapPropertiesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTilePropertiesFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTilePropertiesFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileShadingFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileShadingFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileShadingPropertiesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileShadingPropertiesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTimelineSemaphoreFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTimelineSemaphoreFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTimelineSemaphorePropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTimelineSemaphorePropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceToolPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceToolPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTransformFeedbackFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTransformFeedbackFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTransformFeedbackPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTransformFeedbackPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceUniformBufferStandardLayoutFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceUniformBufferStandardLayoutFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVariablePointersFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVariablePointersFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeDivisorFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeDivisorFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeDivisorPropertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeDivisorPropertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeDivisorPropertiesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeDivisorPropertiesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexInputDynamicStateFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexInputDynamicStateFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoEncodeAV1FeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoEncodeAV1FeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoEncodeQualityLevelInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoEncodeQualityLevelInfoKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoFormatInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoFormatInfoKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoMaintenance1FeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoMaintenance1FeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoMaintenance2FeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoMaintenance2FeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan11Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan11Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan11Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan11Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan12Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan12Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan12Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan12Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan13Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan13Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan13Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan13Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan14Featuresstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan14Featuresstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan14Propertiesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan14Propertiesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkanMemoryModelFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkanMemoryModelFeaturesstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHRstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHRstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceYcbcrDegammaFeaturesQCOMstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceYcbcrDegammaFeaturesQCOMstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceYcbcrImageArraysFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceYcbcrImageArraysFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesstructure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesstructure(s) in native memory.Represents a pointer to aVkPipelineBinaryCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineBinaryCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineBinaryDataInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineBinaryDataInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineBinaryDataKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineBinaryDataKHRstructure(s) in native memory.Represents a pointer to aVkPipelineBinaryHandlesInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineBinaryHandlesInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineBinaryInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineBinaryInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineBinaryKeyKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineBinaryKeyKHRstructure(s) in native memory.Represents a pointer to aVkPipelineBinaryKeysAndDataKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineBinaryKeysAndDataKHRstructure(s) in native memory.Represents a pointer to aVkPipelineCacheCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineCacheCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineCacheHeaderVersionOnestructure in native memory.Represents a pointer to / an array ofVkPipelineCacheHeaderVersionOnestructure(s) in native memory.Represents a pointer to aVkPipelineColorBlendAdvancedStateCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineColorBlendAdvancedStateCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineColorBlendAttachmentStatestructure in native memory.Represents a pointer to / an array ofVkPipelineColorBlendAttachmentStatestructure(s) in native memory.Represents a pointer to aVkPipelineColorBlendStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineColorBlendStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineColorWriteCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineColorWriteCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineCompilerControlCreateInfoAMDstructure in native memory.Represents a pointer to / an array ofVkPipelineCompilerControlCreateInfoAMDstructure(s) in native memory.Represents a pointer to aVkPipelineCoverageModulationStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineCoverageModulationStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineCoverageReductionStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineCoverageReductionStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineCoverageToColorStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineCoverageToColorStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineCreateFlags2CreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineCreateFlags2CreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineCreationFeedbackstructure in native memory.Represents a pointer to / an array ofVkPipelineCreationFeedbackstructure(s) in native memory.Represents a pointer to aVkPipelineCreationFeedbackCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineCreationFeedbackCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineDepthStencilStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineDepthStencilStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineDiscardRectangleStateCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineDiscardRectangleStateCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineDynamicStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineDynamicStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineExecutableInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineExecutableInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineExecutableInternalRepresentationKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineExecutableInternalRepresentationKHRstructure(s) in native memory.Represents a pointer to aVkPipelineExecutablePropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineExecutablePropertiesKHRstructure(s) in native memory.Represents a pointer to aVkPipelineExecutableStatisticKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineExecutableStatisticKHRstructure(s) in native memory.Represents a pointer to aVkPipelineExecutableStatisticValueKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineExecutableStatisticValueKHRstructure(s) in native memory.Represents a pointer to aVkPipelineFragmentShadingRateEnumStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineFragmentShadingRateEnumStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineFragmentShadingRateStateCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineFragmentShadingRateStateCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineIndirectDeviceAddressInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineIndirectDeviceAddressInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineInputAssemblyStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineInputAssemblyStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineLayoutCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineLayoutCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineLibraryCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPipelineLibraryCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkPipelineMultisampleStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineMultisampleStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelinePropertiesIdentifierEXTstructure in native memory.Represents a pointer to / an array ofVkPipelinePropertiesIdentifierEXTstructure(s) in native memory.Represents a pointer to aVkPipelineRasterizationConservativeStateCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationConservativeStateCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineRasterizationDepthClipStateCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationDepthClipStateCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineRasterizationLineStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationLineStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineRasterizationProvokingVertexStateCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationProvokingVertexStateCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineRasterizationStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineRasterizationStateRasterizationOrderAMDstructure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationStateRasterizationOrderAMDstructure(s) in native memory.Represents a pointer to aVkPipelineRasterizationStateStreamCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationStateStreamCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineRenderingCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineRenderingCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineRepresentativeFragmentTestStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineRepresentativeFragmentTestStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineRobustnessCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineRobustnessCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineSampleLocationsStateCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineSampleLocationsStateCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineShaderStageCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineShaderStageModuleIdentifierCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageModuleIdentifierCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineShaderStageNodeCreateInfoAMDXstructure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageNodeCreateInfoAMDXstructure(s) in native memory.Represents a pointer to aVkPipelineShaderStageRequiredSubgroupSizeCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageRequiredSubgroupSizeCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineTessellationDomainOriginStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineTessellationDomainOriginStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineTessellationStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineTessellationStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineVertexInputDivisorStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineVertexInputDivisorStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineVertexInputStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineVertexInputStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineViewportCoarseSampleOrderStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineViewportCoarseSampleOrderStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineViewportDepthClampControlCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineViewportDepthClampControlCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineViewportDepthClipControlCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkPipelineViewportDepthClipControlCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkPipelineViewportExclusiveScissorStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineViewportExclusiveScissorStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineViewportShadingRateImageStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineViewportShadingRateImageStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineViewportStateCreateInfostructure in native memory.Represents a pointer to / an array ofVkPipelineViewportStateCreateInfostructure(s) in native memory.Represents a pointer to aVkPipelineViewportSwizzleStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineViewportSwizzleStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPipelineViewportWScalingStateCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkPipelineViewportWScalingStateCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkPresentFrameTokenGGPstructure in native memory.Represents a pointer to / an array ofVkPresentFrameTokenGGPstructure(s) in native memory.Represents a pointer to aVkPresentIdKHRstructure in native memory.Represents a pointer to / an array ofVkPresentIdKHRstructure(s) in native memory.Represents a pointer to aVkPresentInfoKHRstructure in native memory.Represents a pointer to / an array ofVkPresentInfoKHRstructure(s) in native memory.Represents a pointer to aVkPresentRegionKHRstructure in native memory.Represents a pointer to / an array ofVkPresentRegionKHRstructure(s) in native memory.Represents a pointer to aVkPresentRegionsKHRstructure in native memory.Represents a pointer to / an array ofVkPresentRegionsKHRstructure(s) in native memory.Represents a pointer to aVkPresentTimeGOOGLEstructure in native memory.Represents a pointer to / an array ofVkPresentTimeGOOGLEstructure(s) in native memory.Represents a pointer to aVkPresentTimesInfoGOOGLEstructure in native memory.Represents a pointer to / an array ofVkPresentTimesInfoGOOGLEstructure(s) in native memory.Represents a pointer to aVkPrivateDataSlotCreateInfostructure in native memory.Represents a pointer to / an array ofVkPrivateDataSlotCreateInfostructure(s) in native memory.Represents a pointer to aVkProtectedSubmitInfostructure in native memory.Represents a pointer to / an array ofVkProtectedSubmitInfostructure(s) in native memory.Represents a pointer to aVkPushConstantRangestructure in native memory.Represents a pointer to / an array ofVkPushConstantRangestructure(s) in native memory.Represents a pointer to aVkPushConstantsInfostructure in native memory.Represents a pointer to / an array ofVkPushConstantsInfostructure(s) in native memory.Represents a pointer to aVkPushDescriptorSetInfostructure in native memory.Represents a pointer to / an array ofVkPushDescriptorSetInfostructure(s) in native memory.Represents a pointer to aVkPushDescriptorSetWithTemplateInfostructure in native memory.Represents a pointer to / an array ofVkPushDescriptorSetWithTemplateInfostructure(s) in native memory.Represents a pointer to aVkQueryLowLatencySupportNVstructure in native memory.Represents a pointer to / an array ofVkQueryLowLatencySupportNVstructure(s) in native memory.Represents a pointer to aVkQueryPoolCreateInfostructure in native memory.Represents a pointer to / an array ofVkQueryPoolCreateInfostructure(s) in native memory.Represents a pointer to aVkQueryPoolPerformanceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkQueryPoolPerformanceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkQueryPoolPerformanceQueryCreateInfoINTELstructure in native memory.Represents a pointer to / an array ofVkQueryPoolPerformanceQueryCreateInfoINTELstructure(s) in native memory.Represents a pointer to aVkQueryPoolVideoEncodeFeedbackCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkQueryPoolVideoEncodeFeedbackCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkQueueFamilyCheckpointProperties2NVstructure in native memory.Represents a pointer to / an array ofVkQueueFamilyCheckpointProperties2NVstructure(s) in native memory.Represents a pointer to aVkQueueFamilyCheckpointPropertiesNVstructure in native memory.Represents a pointer to / an array ofVkQueueFamilyCheckpointPropertiesNVstructure(s) in native memory.Represents a pointer to aVkQueueFamilyGlobalPriorityPropertiesstructure in native memory.Represents a pointer to / an array ofVkQueueFamilyGlobalPriorityPropertiesstructure(s) in native memory.Represents a pointer to aVkQueueFamilyPropertiesstructure in native memory.Represents a pointer to / an array ofVkQueueFamilyPropertiesstructure(s) in native memory.Represents a pointer to aVkQueueFamilyProperties2structure in native memory.Represents a pointer to / an array ofVkQueueFamilyProperties2structure(s) in native memory.Represents a pointer to aVkQueueFamilyQueryResultStatusPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkQueueFamilyQueryResultStatusPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkQueueFamilyVideoPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkQueueFamilyVideoPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkRayTracingPipelineClusterAccelerationStructureCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineClusterAccelerationStructureCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkRayTracingPipelineCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkRayTracingPipelineCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkRayTracingPipelineInterfaceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineInterfaceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkRayTracingShaderGroupCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkRayTracingShaderGroupCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkRayTracingShaderGroupCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkRayTracingShaderGroupCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkRect2Dstructure in native memory.Represents a pointer to / an array ofVkRect2Dstructure(s) in native memory.Represents a pointer to aVkRectLayerKHRstructure in native memory.Represents a pointer to / an array ofVkRectLayerKHRstructure(s) in native memory.Represents a pointer to aVkRefreshCycleDurationGOOGLEstructure in native memory.Represents a pointer to / an array ofVkRefreshCycleDurationGOOGLEstructure(s) in native memory.Represents a pointer to aVkRefreshObjectKHRstructure in native memory.Represents a pointer to / an array ofVkRefreshObjectKHRstructure(s) in native memory.Represents a pointer to aVkRefreshObjectListKHRstructure in native memory.Represents a pointer to / an array ofVkRefreshObjectListKHRstructure(s) in native memory.Represents a pointer to aVkReleaseCapturedPipelineDataInfoKHRstructure in native memory.Represents a pointer to / an array ofVkReleaseCapturedPipelineDataInfoKHRstructure(s) in native memory.Represents a pointer to aVkReleaseSwapchainImagesInfoEXTstructure in native memory.Represents a pointer to / an array ofVkReleaseSwapchainImagesInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderingAreaInfostructure in native memory.Represents a pointer to / an array ofVkRenderingAreaInfostructure(s) in native memory.Represents a pointer to aVkRenderingAttachmentInfostructure in native memory.Represents a pointer to / an array ofVkRenderingAttachmentInfostructure(s) in native memory.Represents a pointer to aVkRenderingAttachmentLocationInfostructure in native memory.Represents a pointer to / an array ofVkRenderingAttachmentLocationInfostructure(s) in native memory.Represents a pointer to aVkRenderingEndInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderingEndInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderingFragmentDensityMapAttachmentInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderingFragmentDensityMapAttachmentInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderingFragmentShadingRateAttachmentInfoKHRstructure in native memory.Represents a pointer to / an array ofVkRenderingFragmentShadingRateAttachmentInfoKHRstructure(s) in native memory.Represents a pointer to aVkRenderingInfostructure in native memory.Represents a pointer to / an array ofVkRenderingInfostructure(s) in native memory.Represents a pointer to aVkRenderingInputAttachmentIndexInfostructure in native memory.Represents a pointer to / an array ofVkRenderingInputAttachmentIndexInfostructure(s) in native memory.Represents a pointer to aVkRenderPassAttachmentBeginInfostructure in native memory.Represents a pointer to / an array ofVkRenderPassAttachmentBeginInfostructure(s) in native memory.Represents a pointer to aVkRenderPassBeginInfostructure in native memory.Represents a pointer to / an array ofVkRenderPassBeginInfostructure(s) in native memory.Represents a pointer to aVkRenderPassCreateInfostructure in native memory.Represents a pointer to / an array ofVkRenderPassCreateInfostructure(s) in native memory.Represents a pointer to aVkRenderPassCreateInfo2structure in native memory.Represents a pointer to / an array ofVkRenderPassCreateInfo2structure(s) in native memory.Represents a pointer to aVkRenderPassCreationControlEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassCreationControlEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassCreationFeedbackCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassCreationFeedbackCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassCreationFeedbackInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassCreationFeedbackInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassFragmentDensityMapCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassFragmentDensityMapCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassFragmentDensityMapOffsetEndInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassFragmentDensityMapOffsetEndInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassInputAttachmentAspectCreateInfostructure in native memory.Represents a pointer to / an array ofVkRenderPassInputAttachmentAspectCreateInfostructure(s) in native memory.Represents a pointer to aVkRenderPassMultiviewCreateInfostructure in native memory.Represents a pointer to / an array ofVkRenderPassMultiviewCreateInfostructure(s) in native memory.Represents a pointer to aVkRenderPassSampleLocationsBeginInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassSampleLocationsBeginInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassStripeBeginInfoARMstructure in native memory.Represents a pointer to / an array ofVkRenderPassStripeBeginInfoARMstructure(s) in native memory.Represents a pointer to aVkRenderPassStripeInfoARMstructure in native memory.Represents a pointer to / an array ofVkRenderPassStripeInfoARMstructure(s) in native memory.Represents a pointer to aVkRenderPassStripeSubmitInfoARMstructure in native memory.Represents a pointer to / an array ofVkRenderPassStripeSubmitInfoARMstructure(s) in native memory.Represents a pointer to aVkRenderPassSubpassFeedbackCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassSubpassFeedbackCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassSubpassFeedbackInfoEXTstructure in native memory.Represents a pointer to / an array ofVkRenderPassSubpassFeedbackInfoEXTstructure(s) in native memory.Represents a pointer to aVkRenderPassTileShadingCreateInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkRenderPassTileShadingCreateInfoQCOMstructure(s) in native memory.Represents a pointer to aVkRenderPassTransformBeginInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkRenderPassTransformBeginInfoQCOMstructure(s) in native memory.Represents a pointer to aVkResolveImageInfo2structure in native memory.Represents a pointer to / an array ofVkResolveImageInfo2structure(s) in native memory.Represents a pointer to aVkSampleLocationEXTstructure in native memory.Represents a pointer to / an array ofVkSampleLocationEXTstructure(s) in native memory.Represents a pointer to aVkSampleLocationsInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSampleLocationsInfoEXTstructure(s) in native memory.Represents a pointer to aVkSamplerBlockMatchWindowCreateInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkSamplerBlockMatchWindowCreateInfoQCOMstructure(s) in native memory.Represents a pointer to aVkSamplerBorderColorComponentMappingCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSamplerBorderColorComponentMappingCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkSamplerCaptureDescriptorDataInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSamplerCaptureDescriptorDataInfoEXTstructure(s) in native memory.Represents a pointer to aVkSamplerCreateInfostructure in native memory.Represents a pointer to / an array ofVkSamplerCreateInfostructure(s) in native memory.Represents a pointer to aVkSamplerCubicWeightsCreateInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkSamplerCubicWeightsCreateInfoQCOMstructure(s) in native memory.Represents a pointer to aVkSamplerCustomBorderColorCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSamplerCustomBorderColorCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkSamplerReductionModeCreateInfostructure in native memory.Represents a pointer to / an array ofVkSamplerReductionModeCreateInfostructure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionCreateInfostructure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionCreateInfostructure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionImageFormatPropertiesstructure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionImageFormatPropertiesstructure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionInfostructure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionInfostructure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOMstructure(s) in native memory.Represents a pointer to aVkSciSyncAttributesInfoNVstructure in native memory.Represents a pointer to / an array ofVkSciSyncAttributesInfoNVstructure(s) in native memory.Represents a pointer to aVkScreenBufferFormatPropertiesQNXstructure in native memory.Represents a pointer to / an array ofVkScreenBufferFormatPropertiesQNXstructure(s) in native memory.Represents a pointer to aVkScreenBufferPropertiesQNXstructure in native memory.Represents a pointer to / an array ofVkScreenBufferPropertiesQNXstructure(s) in native memory.Represents a pointer to aVkScreenSurfaceCreateInfoQNXstructure in native memory.Represents a pointer to / an array ofVkScreenSurfaceCreateInfoQNXstructure(s) in native memory.Represents a pointer to aVkSemaphoreCreateInfostructure in native memory.Represents a pointer to / an array ofVkSemaphoreCreateInfostructure(s) in native memory.Represents a pointer to aVkSemaphoreGetFdInfoKHRstructure in native memory.Represents a pointer to / an array ofVkSemaphoreGetFdInfoKHRstructure(s) in native memory.Represents a pointer to aVkSemaphoreGetSciSyncInfoNVstructure in native memory.Represents a pointer to / an array ofVkSemaphoreGetSciSyncInfoNVstructure(s) in native memory.Represents a pointer to aVkSemaphoreGetWin32HandleInfoKHRstructure in native memory.Represents a pointer to / an array ofVkSemaphoreGetWin32HandleInfoKHRstructure(s) in native memory.Represents a pointer to aVkSemaphoreGetZirconHandleInfoFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkSemaphoreGetZirconHandleInfoFUCHSIAstructure(s) in native memory.Represents a pointer to aVkSemaphoreSciSyncCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkSemaphoreSciSyncCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkSemaphoreSciSyncPoolCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkSemaphoreSciSyncPoolCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkSemaphoreSignalInfostructure in native memory.Represents a pointer to / an array ofVkSemaphoreSignalInfostructure(s) in native memory.Represents a pointer to aVkSemaphoreSubmitInfostructure in native memory.Represents a pointer to / an array ofVkSemaphoreSubmitInfostructure(s) in native memory.Represents a pointer to aVkSemaphoreTypeCreateInfostructure in native memory.Represents a pointer to / an array ofVkSemaphoreTypeCreateInfostructure(s) in native memory.Represents a pointer to aVkSemaphoreWaitInfostructure in native memory.Represents a pointer to / an array ofVkSemaphoreWaitInfostructure(s) in native memory.Represents a pointer to aVkSetDescriptorBufferOffsetsInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSetDescriptorBufferOffsetsInfoEXTstructure(s) in native memory.Represents a pointer to aVkSetLatencyMarkerInfoNVstructure in native memory.Represents a pointer to / an array ofVkSetLatencyMarkerInfoNVstructure(s) in native memory.Represents a pointer to aVkSetPresentConfigNVstructure in native memory.Represents a pointer to / an array ofVkSetPresentConfigNVstructure(s) in native memory.Represents a pointer to aVkSetStateFlagsIndirectCommandNVstructure in native memory.Represents a pointer to / an array ofVkSetStateFlagsIndirectCommandNVstructure(s) in native memory.Represents a pointer to aVkShaderCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkShaderCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkShaderModuleCreateInfostructure in native memory.Represents a pointer to / an array ofVkShaderModuleCreateInfostructure(s) in native memory.Represents a pointer to aVkShaderModuleIdentifierEXTstructure in native memory.Represents a pointer to / an array ofVkShaderModuleIdentifierEXTstructure(s) in native memory.Represents a pointer to aVkShaderModuleValidationCacheCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkShaderModuleValidationCacheCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkShaderResourceUsageAMDstructure in native memory.Represents a pointer to / an array ofVkShaderResourceUsageAMDstructure(s) in native memory.Represents a pointer to aVkShaderStatisticsInfoAMDstructure in native memory.Represents a pointer to / an array ofVkShaderStatisticsInfoAMDstructure(s) in native memory.Represents a pointer to aVkShadingRatePaletteNVstructure in native memory.Represents a pointer to / an array ofVkShadingRatePaletteNVstructure(s) in native memory.Represents a pointer to aVkSharedPresentSurfaceCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkSharedPresentSurfaceCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkSparseBufferMemoryBindInfostructure in native memory.Represents a pointer to / an array ofVkSparseBufferMemoryBindInfostructure(s) in native memory.Represents a pointer to aVkSparseImageFormatPropertiesstructure in native memory.Represents a pointer to / an array ofVkSparseImageFormatPropertiesstructure(s) in native memory.Represents a pointer to aVkSparseImageFormatProperties2structure in native memory.Represents a pointer to / an array ofVkSparseImageFormatProperties2structure(s) in native memory.Represents a pointer to aVkSparseImageMemoryBindstructure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryBindstructure(s) in native memory.Represents a pointer to aVkSparseImageMemoryBindInfostructure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryBindInfostructure(s) in native memory.Represents a pointer to aVkSparseImageMemoryRequirementsstructure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryRequirementsstructure(s) in native memory.Represents a pointer to aVkSparseImageMemoryRequirements2structure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryRequirements2structure(s) in native memory.Represents a pointer to aVkSparseImageOpaqueMemoryBindInfostructure in native memory.Represents a pointer to / an array ofVkSparseImageOpaqueMemoryBindInfostructure(s) in native memory.Represents a pointer to aVkSparseMemoryBindstructure in native memory.Represents a pointer to / an array ofVkSparseMemoryBindstructure(s) in native memory.Represents a pointer to aVkSpecializationInfostructure in native memory.Represents a pointer to / an array ofVkSpecializationInfostructure(s) in native memory.Represents a pointer to aVkSpecializationMapEntrystructure in native memory.Represents a pointer to / an array ofVkSpecializationMapEntrystructure(s) in native memory.Represents a pointer to aVkSRTDataNVstructure in native memory.Represents a pointer to / an array ofVkSRTDataNVstructure(s) in native memory.Represents a pointer to aVkStencilOpStatestructure in native memory.Represents a pointer to / an array ofVkStencilOpStatestructure(s) in native memory.Represents a pointer to aVkStreamDescriptorSurfaceCreateInfoGGPstructure in native memory.Represents a pointer to / an array ofVkStreamDescriptorSurfaceCreateInfoGGPstructure(s) in native memory.Represents a pointer to aVkStridedDeviceAddressNVstructure in native memory.Represents a pointer to / an array ofVkStridedDeviceAddressNVstructure(s) in native memory.Represents a pointer to aVkStridedDeviceAddressRegionKHRstructure in native memory.Represents a pointer to / an array ofVkStridedDeviceAddressRegionKHRstructure(s) in native memory.Represents a pointer to aVkSubmitInfostructure in native memory.Represents a pointer to / an array ofVkSubmitInfostructure(s) in native memory.Represents a pointer to aVkSubmitInfo2structure in native memory.Represents a pointer to / an array ofVkSubmitInfo2structure(s) in native memory.Represents a pointer to aVkSubpassBeginInfostructure in native memory.Represents a pointer to / an array ofVkSubpassBeginInfostructure(s) in native memory.Represents a pointer to aVkSubpassDependencystructure in native memory.Represents a pointer to / an array ofVkSubpassDependencystructure(s) in native memory.Represents a pointer to aVkSubpassDependency2structure in native memory.Represents a pointer to / an array ofVkSubpassDependency2structure(s) in native memory.Represents a pointer to aVkSubpassDescriptionstructure in native memory.Represents a pointer to / an array ofVkSubpassDescriptionstructure(s) in native memory.Represents a pointer to aVkSubpassDescription2structure in native memory.Represents a pointer to / an array ofVkSubpassDescription2structure(s) in native memory.Represents a pointer to aVkSubpassDescriptionDepthStencilResolvestructure in native memory.Represents a pointer to / an array ofVkSubpassDescriptionDepthStencilResolvestructure(s) in native memory.Represents a pointer to aVkSubpassEndInfostructure in native memory.Represents a pointer to / an array ofVkSubpassEndInfostructure(s) in native memory.Represents a pointer to aVkSubpassResolvePerformanceQueryEXTstructure in native memory.Represents a pointer to / an array ofVkSubpassResolvePerformanceQueryEXTstructure(s) in native memory.Represents a pointer to aVkSubpassSampleLocationsEXTstructure in native memory.Represents a pointer to / an array ofVkSubpassSampleLocationsEXTstructure(s) in native memory.Represents a pointer to aVkSubpassShadingPipelineCreateInfoHUAWEIstructure in native memory.Represents a pointer to / an array ofVkSubpassShadingPipelineCreateInfoHUAWEIstructure(s) in native memory.Represents a pointer to aVkSubresourceHostMemcpySizestructure in native memory.Represents a pointer to / an array ofVkSubresourceHostMemcpySizestructure(s) in native memory.Represents a pointer to aVkSubresourceLayoutstructure in native memory.Represents a pointer to / an array ofVkSubresourceLayoutstructure(s) in native memory.Represents a pointer to aVkSubresourceLayout2structure in native memory.Represents a pointer to / an array ofVkSubresourceLayout2structure(s) in native memory.Represents a pointer to aVkSurfaceCapabilities2EXTstructure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilities2EXTstructure(s) in native memory.Represents a pointer to aVkSurfaceCapabilities2KHRstructure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilities2KHRstructure(s) in native memory.Represents a pointer to aVkSurfaceCapabilitiesFullScreenExclusiveEXTstructure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilitiesFullScreenExclusiveEXTstructure(s) in native memory.Represents a pointer to aVkSurfaceCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkSurfaceCapabilitiesPresentBarrierNVstructure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilitiesPresentBarrierNVstructure(s) in native memory.Represents a pointer to aVkSurfaceFormat2KHRstructure in native memory.Represents a pointer to / an array ofVkSurfaceFormat2KHRstructure(s) in native memory.Represents a pointer to aVkSurfaceFormatKHRstructure in native memory.Represents a pointer to / an array ofVkSurfaceFormatKHRstructure(s) in native memory.Represents a pointer to aVkSurfaceFullScreenExclusiveInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSurfaceFullScreenExclusiveInfoEXTstructure(s) in native memory.Represents a pointer to aVkSurfaceFullScreenExclusiveWin32InfoEXTstructure in native memory.Represents a pointer to / an array ofVkSurfaceFullScreenExclusiveWin32InfoEXTstructure(s) in native memory.Represents a pointer to aVkSurfacePresentModeCompatibilityEXTstructure in native memory.Represents a pointer to / an array ofVkSurfacePresentModeCompatibilityEXTstructure(s) in native memory.Represents a pointer to aVkSurfacePresentModeEXTstructure in native memory.Represents a pointer to / an array ofVkSurfacePresentModeEXTstructure(s) in native memory.Represents a pointer to aVkSurfacePresentScalingCapabilitiesEXTstructure in native memory.Represents a pointer to / an array ofVkSurfacePresentScalingCapabilitiesEXTstructure(s) in native memory.Represents a pointer to aVkSurfaceProtectedCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkSurfaceProtectedCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkSwapchainCounterCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSwapchainCounterCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkSwapchainCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkSwapchainCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkSwapchainDisplayNativeHdrCreateInfoAMDstructure in native memory.Represents a pointer to / an array ofVkSwapchainDisplayNativeHdrCreateInfoAMDstructure(s) in native memory.Represents a pointer to aVkSwapchainLatencyCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkSwapchainLatencyCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkSwapchainPresentBarrierCreateInfoNVstructure in native memory.Represents a pointer to / an array ofVkSwapchainPresentBarrierCreateInfoNVstructure(s) in native memory.Represents a pointer to aVkSwapchainPresentFenceInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSwapchainPresentFenceInfoEXTstructure(s) in native memory.Represents a pointer to aVkSwapchainPresentModeInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSwapchainPresentModeInfoEXTstructure(s) in native memory.Represents a pointer to aVkSwapchainPresentModesCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSwapchainPresentModesCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkSwapchainPresentScalingCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkSwapchainPresentScalingCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkSysmemColorSpaceFUCHSIAstructure in native memory.Represents a pointer to / an array ofVkSysmemColorSpaceFUCHSIAstructure(s) in native memory.Represents a pointer to aVkTextureLODGatherFormatPropertiesAMDstructure in native memory.Represents a pointer to / an array ofVkTextureLODGatherFormatPropertiesAMDstructure(s) in native memory.Represents a pointer to aVkTileMemoryBindInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkTileMemoryBindInfoQCOMstructure(s) in native memory.Represents a pointer to aVkTileMemoryRequirementsQCOMstructure in native memory.Represents a pointer to / an array ofVkTileMemoryRequirementsQCOMstructure(s) in native memory.Represents a pointer to aVkTileMemorySizeInfoQCOMstructure in native memory.Represents a pointer to / an array ofVkTileMemorySizeInfoQCOMstructure(s) in native memory.Represents a pointer to aVkTilePropertiesQCOMstructure in native memory.Represents a pointer to / an array ofVkTilePropertiesQCOMstructure(s) in native memory.Represents a pointer to aVkTimelineSemaphoreSubmitInfostructure in native memory.Represents a pointer to / an array ofVkTimelineSemaphoreSubmitInfostructure(s) in native memory.Represents a pointer to aVkTraceRaysIndirectCommand2KHRstructure in native memory.Represents a pointer to / an array ofVkTraceRaysIndirectCommand2KHRstructure(s) in native memory.Represents a pointer to aVkTraceRaysIndirectCommandKHRstructure in native memory.Represents a pointer to / an array ofVkTraceRaysIndirectCommandKHRstructure(s) in native memory.Represents a pointer to aVkTransformMatrixKHRstructure in native memory.Represents a pointer to / an array ofVkTransformMatrixKHRstructure(s) in native memory.Represents a pointer to aVkValidationCacheCreateInfoEXTstructure in native memory.Represents a pointer to / an array ofVkValidationCacheCreateInfoEXTstructure(s) in native memory.Represents a pointer to aVkValidationFeaturesEXTstructure in native memory.Represents a pointer to / an array ofVkValidationFeaturesEXTstructure(s) in native memory.Represents a pointer to aVkValidationFlagsEXTstructure in native memory.Represents a pointer to / an array ofVkValidationFlagsEXTstructure(s) in native memory.Represents a pointer to aVkVertexInputAttributeDescriptionstructure in native memory.Represents a pointer to / an array ofVkVertexInputAttributeDescriptionstructure(s) in native memory.Represents a pointer to aVkVertexInputAttributeDescription2EXTstructure in native memory.Represents a pointer to / an array ofVkVertexInputAttributeDescription2EXTstructure(s) in native memory.Represents a pointer to aVkVertexInputBindingDescriptionstructure in native memory.Represents a pointer to / an array ofVkVertexInputBindingDescriptionstructure(s) in native memory.Represents a pointer to aVkVertexInputBindingDescription2EXTstructure in native memory.Represents a pointer to / an array ofVkVertexInputBindingDescription2EXTstructure(s) in native memory.Represents a pointer to aVkVertexInputBindingDivisorDescriptionstructure in native memory.Represents a pointer to / an array ofVkVertexInputBindingDivisorDescriptionstructure(s) in native memory.Represents a pointer to aVkVideoBeginCodingInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoBeginCodingInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoCodingControlInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoCodingControlInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1CapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1CapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1DpbSlotInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1DpbSlotInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1InlineSessionParametersInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1InlineSessionParametersInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1PictureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1PictureInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1ProfileInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1ProfileInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1SessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1SessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH264CapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264CapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH264DpbSlotInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264DpbSlotInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH264InlineSessionParametersInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264InlineSessionParametersInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH264PictureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264PictureInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH264ProfileInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264ProfileInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH264SessionParametersAddInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264SessionParametersAddInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH264SessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264SessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH265CapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265CapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH265DpbSlotInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265DpbSlotInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH265InlineSessionParametersInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265InlineSessionParametersInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH265PictureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265PictureInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH265ProfileInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265ProfileInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH265SessionParametersAddInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265SessionParametersAddInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeH265SessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265SessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoDecodeUsageInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoDecodeUsageInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1CapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1CapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1DpbSlotInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1DpbSlotInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1FrameSizeKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1FrameSizeKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1GopRemainingFrameInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1GopRemainingFrameInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1PictureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1PictureInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1ProfileInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1ProfileInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1QIndexKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1QIndexKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1QualityLevelPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1QualityLevelPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1QuantizationMapCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1QuantizationMapCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1RateControlInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1RateControlInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1RateControlLayerInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1RateControlLayerInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1SessionCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1SessionCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1SessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1SessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264CapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264CapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264DpbSlotInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264DpbSlotInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264FrameSizeKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264FrameSizeKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264GopRemainingFrameInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264GopRemainingFrameInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264NaluSliceInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264NaluSliceInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264PictureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264PictureInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264ProfileInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264ProfileInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264QpKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264QpKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264QualityLevelPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264QualityLevelPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264QuantizationMapCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264QuantizationMapCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264RateControlInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264RateControlInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264RateControlLayerInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264RateControlLayerInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersAddInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersAddInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersFeedbackInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersFeedbackInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersGetInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersGetInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265CapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265CapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265DpbSlotInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265DpbSlotInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265FrameSizeKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265FrameSizeKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265GopRemainingFrameInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265GopRemainingFrameInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265NaluSliceSegmentInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265NaluSliceSegmentInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265PictureInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265PictureInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265ProfileInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265ProfileInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265QpKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265QpKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265QualityLevelPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265QualityLevelPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265QuantizationMapCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265QuantizationMapCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265RateControlInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265RateControlInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265RateControlLayerInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265RateControlLayerInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersAddInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersAddInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersFeedbackInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersFeedbackInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersGetInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersGetInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeQualityLevelInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeQualityLevelInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeQualityLevelPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeQualityLevelPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeQuantizationMapCapabilitiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeQuantizationMapCapabilitiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeQuantizationMapInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeQuantizationMapInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeRateControlInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeRateControlInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeRateControlLayerInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeRateControlLayerInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeSessionParametersFeedbackInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeSessionParametersFeedbackInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeSessionParametersGetInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeSessionParametersGetInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEncodeUsageInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEncodeUsageInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoEndCodingInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoEndCodingInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoFormatAV1QuantizationMapPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoFormatAV1QuantizationMapPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoFormatH265QuantizationMapPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoFormatH265QuantizationMapPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoFormatPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoFormatPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoFormatQuantizationMapPropertiesKHRstructure in native memory.Represents a pointer to / an array ofVkVideoFormatQuantizationMapPropertiesKHRstructure(s) in native memory.Represents a pointer to aVkVideoInlineQueryInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoInlineQueryInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoPictureResourceInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoPictureResourceInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoProfileInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoProfileInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoProfileListInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoProfileListInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoReferenceSlotInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoReferenceSlotInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoSessionCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoSessionCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoSessionMemoryRequirementsKHRstructure in native memory.Represents a pointer to / an array ofVkVideoSessionMemoryRequirementsKHRstructure(s) in native memory.Represents a pointer to aVkVideoSessionParametersCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoSessionParametersCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkVideoSessionParametersUpdateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkVideoSessionParametersUpdateInfoKHRstructure(s) in native memory.Represents a pointer to aVkViewportstructure in native memory.Represents a pointer to / an array ofVkViewportstructure(s) in native memory.Represents a pointer to aVkViewportSwizzleNVstructure in native memory.Represents a pointer to / an array ofVkViewportSwizzleNVstructure(s) in native memory.Represents a pointer to aVkViewportWScalingNVstructure in native memory.Represents a pointer to / an array ofVkViewportWScalingNVstructure(s) in native memory.Represents a pointer to aVkViSurfaceCreateInfoNNstructure in native memory.Represents a pointer to / an array ofVkViSurfaceCreateInfoNNstructure(s) in native memory.Represents a pointer to aVkWaylandSurfaceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkWaylandSurfaceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkWin32KeyedMutexAcquireReleaseInfoKHRstructure in native memory.Represents a pointer to / an array ofVkWin32KeyedMutexAcquireReleaseInfoKHRstructure(s) in native memory.Represents a pointer to aVkWin32KeyedMutexAcquireReleaseInfoNVstructure in native memory.Represents a pointer to / an array ofVkWin32KeyedMutexAcquireReleaseInfoNVstructure(s) in native memory.Represents a pointer to aVkWin32SurfaceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkWin32SurfaceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetstructure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetstructure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetAccelerationStructureKHRstructure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetAccelerationStructureKHRstructure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetAccelerationStructureNVstructure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetAccelerationStructureNVstructure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetInlineUniformBlockstructure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetInlineUniformBlockstructure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetPartitionedAccelerationStructureNVstructure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetPartitionedAccelerationStructureNVstructure(s) in native memory.Represents a pointer to aVkWriteIndirectExecutionSetPipelineEXTstructure in native memory.Represents a pointer to / an array ofVkWriteIndirectExecutionSetPipelineEXTstructure(s) in native memory.Represents a pointer to aVkWriteIndirectExecutionSetShaderEXTstructure in native memory.Represents a pointer to / an array ofVkWriteIndirectExecutionSetShaderEXTstructure(s) in native memory.Represents a pointer to aVkXcbSurfaceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkXcbSurfaceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkXlibSurfaceCreateInfoKHRstructure in native memory.Represents a pointer to / an array ofVkXlibSurfaceCreateInfoKHRstructure(s) in native memory.Represents a pointer to aVkXYColorEXTstructure in native memory.Represents a pointer to / an array ofVkXYColorEXTstructure(s) in native memory.