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
MemorySegment
s. 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
NvSciSyncFenceVKREF
andNvSciSyncFenceVKREF.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1CDEF
andStdVideoAV1CDEF.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1ColorConfig
andStdVideoAV1ColorConfig.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1ColorConfigFlags
andStdVideoAV1ColorConfigFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1FilmGrain
andStdVideoAV1FilmGrain.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1FilmGrainFlags
andStdVideoAV1FilmGrainFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1GlobalMotion
andStdVideoAV1GlobalMotion.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1LoopFilter
andStdVideoAV1LoopFilter.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1LoopFilterFlags
andStdVideoAV1LoopFilterFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1LoopRestoration
andStdVideoAV1LoopRestoration.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1Quantization
andStdVideoAV1Quantization.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1QuantizationFlags
andStdVideoAV1QuantizationFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1Segmentation
andStdVideoAV1Segmentation.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1SequenceHeader
andStdVideoAV1SequenceHeader.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1SequenceHeaderFlags
andStdVideoAV1SequenceHeaderFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1TileInfo
andStdVideoAV1TileInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1TileInfoFlags
andStdVideoAV1TileInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1TimingInfo
andStdVideoAV1TimingInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoAV1TimingInfoFlags
andStdVideoAV1TimingInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeAV1PictureInfo
andStdVideoDecodeAV1PictureInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeAV1PictureInfoFlags
andStdVideoDecodeAV1PictureInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeAV1ReferenceInfo
andStdVideoDecodeAV1ReferenceInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeAV1ReferenceInfoFlags
andStdVideoDecodeAV1ReferenceInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH264PictureInfo
andStdVideoDecodeH264PictureInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH264PictureInfoFlags
andStdVideoDecodeH264PictureInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH264ReferenceInfo
andStdVideoDecodeH264ReferenceInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH264ReferenceInfoFlags
andStdVideoDecodeH264ReferenceInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH265PictureInfo
andStdVideoDecodeH265PictureInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH265PictureInfoFlags
andStdVideoDecodeH265PictureInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH265ReferenceInfo
andStdVideoDecodeH265ReferenceInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoDecodeH265ReferenceInfoFlags
andStdVideoDecodeH265ReferenceInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1DecoderModelInfo
andStdVideoEncodeAV1DecoderModelInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1ExtensionHeader
andStdVideoEncodeAV1ExtensionHeader.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1OperatingPointInfo
andStdVideoEncodeAV1OperatingPointInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1OperatingPointInfoFlags
andStdVideoEncodeAV1OperatingPointInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1PictureInfo
andStdVideoEncodeAV1PictureInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1PictureInfoFlags
andStdVideoEncodeAV1PictureInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1ReferenceInfo
andStdVideoEncodeAV1ReferenceInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeAV1ReferenceInfoFlags
andStdVideoEncodeAV1ReferenceInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264PictureInfo
andStdVideoEncodeH264PictureInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264PictureInfoFlags
andStdVideoEncodeH264PictureInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceInfo
andStdVideoEncodeH264ReferenceInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceInfoFlags
andStdVideoEncodeH264ReferenceInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceListsInfo
andStdVideoEncodeH264ReferenceListsInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264ReferenceListsInfoFlags
andStdVideoEncodeH264ReferenceListsInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264RefListModEntry
andStdVideoEncodeH264RefListModEntry.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264RefPicMarkingEntry
andStdVideoEncodeH264RefPicMarkingEntry.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264SliceHeader
andStdVideoEncodeH264SliceHeader.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264SliceHeaderFlags
andStdVideoEncodeH264SliceHeaderFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264WeightTable
andStdVideoEncodeH264WeightTable.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH264WeightTableFlags
andStdVideoEncodeH264WeightTableFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265LongTermRefPics
andStdVideoEncodeH265LongTermRefPics.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265PictureInfo
andStdVideoEncodeH265PictureInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265PictureInfoFlags
andStdVideoEncodeH265PictureInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceInfo
andStdVideoEncodeH265ReferenceInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceInfoFlags
andStdVideoEncodeH265ReferenceInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceListsInfo
andStdVideoEncodeH265ReferenceListsInfo.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265ReferenceListsInfoFlags
andStdVideoEncodeH265ReferenceListsInfoFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265SliceSegmentHeader
andStdVideoEncodeH265SliceSegmentHeader.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265SliceSegmentHeaderFlags
andStdVideoEncodeH265SliceSegmentHeaderFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265WeightTable
andStdVideoEncodeH265WeightTable.Ptr
operations.Auxiliary interface for unifyingStdVideoEncodeH265WeightTableFlags
andStdVideoEncodeH265WeightTableFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH264HrdParameters
andStdVideoH264HrdParameters.Ptr
operations.Auxiliary interface for unifyingStdVideoH264PictureParameterSet
andStdVideoH264PictureParameterSet.Ptr
operations.Auxiliary interface for unifyingStdVideoH264PpsFlags
andStdVideoH264PpsFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH264ScalingLists
andStdVideoH264ScalingLists.Ptr
operations.Auxiliary interface for unifyingStdVideoH264SequenceParameterSet
andStdVideoH264SequenceParameterSet.Ptr
operations.Auxiliary interface for unifyingStdVideoH264SequenceParameterSetVui
andStdVideoH264SequenceParameterSetVui.Ptr
operations.Auxiliary interface for unifyingStdVideoH264SpsFlags
andStdVideoH264SpsFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH264SpsVuiFlags
andStdVideoH264SpsVuiFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH265DecPicBufMgr
andStdVideoH265DecPicBufMgr.Ptr
operations.Auxiliary interface for unifyingStdVideoH265HrdFlags
andStdVideoH265HrdFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH265HrdParameters
andStdVideoH265HrdParameters.Ptr
operations.Auxiliary interface for unifyingStdVideoH265LongTermRefPicsSps
andStdVideoH265LongTermRefPicsSps.Ptr
operations.Auxiliary interface for unifyingStdVideoH265PictureParameterSet
andStdVideoH265PictureParameterSet.Ptr
operations.Auxiliary interface for unifyingStdVideoH265PpsFlags
andStdVideoH265PpsFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH265PredictorPaletteEntries
andStdVideoH265PredictorPaletteEntries.Ptr
operations.Auxiliary interface for unifyingStdVideoH265ProfileTierLevel
andStdVideoH265ProfileTierLevel.Ptr
operations.Auxiliary interface for unifyingStdVideoH265ProfileTierLevelFlags
andStdVideoH265ProfileTierLevelFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH265ScalingLists
andStdVideoH265ScalingLists.Ptr
operations.Auxiliary interface for unifyingStdVideoH265SequenceParameterSet
andStdVideoH265SequenceParameterSet.Ptr
operations.Auxiliary interface for unifyingStdVideoH265SequenceParameterSetVui
andStdVideoH265SequenceParameterSetVui.Ptr
operations.Auxiliary interface for unifyingStdVideoH265ShortTermRefPicSet
andStdVideoH265ShortTermRefPicSet.Ptr
operations.Auxiliary interface for unifyingStdVideoH265ShortTermRefPicSetFlags
andStdVideoH265ShortTermRefPicSetFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH265SpsFlags
andStdVideoH265SpsFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH265SpsVuiFlags
andStdVideoH265SpsVuiFlags.Ptr
operations.Auxiliary interface for unifyingStdVideoH265SubLayerHrdParameters
andStdVideoH265SubLayerHrdParameters.Ptr
operations.Auxiliary interface for unifyingStdVideoH265VideoParameterSet
andStdVideoH265VideoParameterSet.Ptr
operations.Auxiliary interface for unifyingStdVideoH265VpsFlags
andStdVideoH265VpsFlags.Ptr
operations.Auxiliary interface for unifyingVkAabbPositionsKHR
andVkAabbPositionsKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureBuildGeometryInfoKHR
andVkAccelerationStructureBuildGeometryInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureBuildRangeInfoKHR
andVkAccelerationStructureBuildRangeInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureBuildSizesInfoKHR
andVkAccelerationStructureBuildSizesInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureCaptureDescriptorDataInfoEXT
andVkAccelerationStructureCaptureDescriptorDataInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureCreateInfoKHR
andVkAccelerationStructureCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureCreateInfoNV
andVkAccelerationStructureCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureDeviceAddressInfoKHR
andVkAccelerationStructureDeviceAddressInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometryAabbsDataKHR
andVkAccelerationStructureGeometryAabbsDataKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometryDataKHR
andVkAccelerationStructureGeometryDataKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometryInstancesDataKHR
andVkAccelerationStructureGeometryInstancesDataKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometryKHR
andVkAccelerationStructureGeometryKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometryLinearSweptSpheresDataNV
andVkAccelerationStructureGeometryLinearSweptSpheresDataNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometryMotionTrianglesDataNV
andVkAccelerationStructureGeometryMotionTrianglesDataNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometrySpheresDataNV
andVkAccelerationStructureGeometrySpheresDataNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureGeometryTrianglesDataKHR
andVkAccelerationStructureGeometryTrianglesDataKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureInfoNV
andVkAccelerationStructureInfoNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureInstanceKHR
andVkAccelerationStructureInstanceKHR.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureMatrixMotionInstanceNV
andVkAccelerationStructureMatrixMotionInstanceNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureMemoryRequirementsInfoNV
andVkAccelerationStructureMemoryRequirementsInfoNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureMotionInfoNV
andVkAccelerationStructureMotionInfoNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureMotionInstanceDataNV
andVkAccelerationStructureMotionInstanceDataNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureMotionInstanceNV
andVkAccelerationStructureMotionInstanceNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureSRTMotionInstanceNV
andVkAccelerationStructureSRTMotionInstanceNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureTrianglesDisplacementMicromapNV
andVkAccelerationStructureTrianglesDisplacementMicromapNV.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureTrianglesOpacityMicromapEXT
andVkAccelerationStructureTrianglesOpacityMicromapEXT.Ptr
operations.Auxiliary interface for unifyingVkAccelerationStructureVersionInfoKHR
andVkAccelerationStructureVersionInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAcquireNextImageInfoKHR
andVkAcquireNextImageInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAcquireProfilingLockInfoKHR
andVkAcquireProfilingLockInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAllocationCallbacks
andVkAllocationCallbacks.Ptr
operations.Auxiliary interface for unifyingVkAmigoProfilingSubmitInfoSEC
andVkAmigoProfilingSubmitInfoSEC.Ptr
operations.Auxiliary interface for unifyingVkAndroidHardwareBufferFormatProperties2ANDROID
andVkAndroidHardwareBufferFormatProperties2ANDROID.Ptr
operations.Auxiliary interface for unifyingVkAndroidHardwareBufferFormatPropertiesANDROID
andVkAndroidHardwareBufferFormatPropertiesANDROID.Ptr
operations.Auxiliary interface for unifyingVkAndroidHardwareBufferFormatResolvePropertiesANDROID
andVkAndroidHardwareBufferFormatResolvePropertiesANDROID.Ptr
operations.Auxiliary interface for unifyingVkAndroidHardwareBufferPropertiesANDROID
andVkAndroidHardwareBufferPropertiesANDROID.Ptr
operations.Auxiliary interface for unifyingVkAndroidHardwareBufferUsageANDROID
andVkAndroidHardwareBufferUsageANDROID.Ptr
operations.Auxiliary interface for unifyingVkAndroidSurfaceCreateInfoKHR
andVkAndroidSurfaceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkAntiLagDataAMD
andVkAntiLagDataAMD.Ptr
operations.Auxiliary interface for unifyingVkAntiLagPresentationInfoAMD
andVkAntiLagPresentationInfoAMD.Ptr
operations.Auxiliary interface for unifyingVkApplicationInfo
andVkApplicationInfo.Ptr
operations.Auxiliary interface for unifyingVkApplicationParametersEXT
andVkApplicationParametersEXT.Ptr
operations.Auxiliary interface for unifyingVkAttachmentDescription
andVkAttachmentDescription.Ptr
operations.Auxiliary interface for unifyingVkAttachmentDescription2
andVkAttachmentDescription2.Ptr
operations.Auxiliary interface for unifyingVkAttachmentDescriptionStencilLayout
andVkAttachmentDescriptionStencilLayout.Ptr
operations.Auxiliary interface for unifyingVkAttachmentReference
andVkAttachmentReference.Ptr
operations.Auxiliary interface for unifyingVkAttachmentReference2
andVkAttachmentReference2.Ptr
operations.Auxiliary interface for unifyingVkAttachmentReferenceStencilLayout
andVkAttachmentReferenceStencilLayout.Ptr
operations.Auxiliary interface for unifyingVkAttachmentSampleCountInfoAMD
andVkAttachmentSampleCountInfoAMD.Ptr
operations.Auxiliary interface for unifyingVkAttachmentSampleLocationsEXT
andVkAttachmentSampleLocationsEXT.Ptr
operations.Auxiliary interface for unifyingVkBaseInStructure
andVkBaseInStructure.Ptr
operations.Auxiliary interface for unifyingVkBaseOutStructure
andVkBaseOutStructure.Ptr
operations.Auxiliary interface for unifyingVkBindAccelerationStructureMemoryInfoNV
andVkBindAccelerationStructureMemoryInfoNV.Ptr
operations.Auxiliary interface for unifyingVkBindBufferMemoryDeviceGroupInfo
andVkBindBufferMemoryDeviceGroupInfo.Ptr
operations.Auxiliary interface for unifyingVkBindBufferMemoryInfo
andVkBindBufferMemoryInfo.Ptr
operations.Auxiliary interface for unifyingVkBindDescriptorBufferEmbeddedSamplersInfoEXT
andVkBindDescriptorBufferEmbeddedSamplersInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkBindDescriptorSetsInfo
andVkBindDescriptorSetsInfo.Ptr
operations.Auxiliary interface for unifyingVkBindImageMemoryDeviceGroupInfo
andVkBindImageMemoryDeviceGroupInfo.Ptr
operations.Auxiliary interface for unifyingVkBindImageMemoryInfo
andVkBindImageMemoryInfo.Ptr
operations.Auxiliary interface for unifyingVkBindImageMemorySwapchainInfoKHR
andVkBindImageMemorySwapchainInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkBindImagePlaneMemoryInfo
andVkBindImagePlaneMemoryInfo.Ptr
operations.Auxiliary interface for unifyingVkBindIndexBufferIndirectCommandEXT
andVkBindIndexBufferIndirectCommandEXT.Ptr
operations.Auxiliary interface for unifyingVkBindIndexBufferIndirectCommandNV
andVkBindIndexBufferIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkBindMemoryStatus
andVkBindMemoryStatus.Ptr
operations.Auxiliary interface for unifyingVkBindPipelineIndirectCommandNV
andVkBindPipelineIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkBindShaderGroupIndirectCommandNV
andVkBindShaderGroupIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkBindSparseInfo
andVkBindSparseInfo.Ptr
operations.Auxiliary interface for unifyingVkBindVertexBufferIndirectCommandEXT
andVkBindVertexBufferIndirectCommandEXT.Ptr
operations.Auxiliary interface for unifyingVkBindVertexBufferIndirectCommandNV
andVkBindVertexBufferIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkBindVideoSessionMemoryInfoKHR
andVkBindVideoSessionMemoryInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkBlitImageCubicWeightsInfoQCOM
andVkBlitImageCubicWeightsInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkBlitImageInfo2
andVkBlitImageInfo2.Ptr
operations.Auxiliary interface for unifyingVkBufferCaptureDescriptorDataInfoEXT
andVkBufferCaptureDescriptorDataInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkBufferCollectionBufferCreateInfoFUCHSIA
andVkBufferCollectionBufferCreateInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkBufferCollectionConstraintsInfoFUCHSIA
andVkBufferCollectionConstraintsInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkBufferCollectionCreateInfoFUCHSIA
andVkBufferCollectionCreateInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkBufferCollectionImageCreateInfoFUCHSIA
andVkBufferCollectionImageCreateInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkBufferCollectionPropertiesFUCHSIA
andVkBufferCollectionPropertiesFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkBufferConstraintsInfoFUCHSIA
andVkBufferConstraintsInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkBufferCopy
andVkBufferCopy.Ptr
operations.Auxiliary interface for unifyingVkBufferCopy2
andVkBufferCopy2.Ptr
operations.Auxiliary interface for unifyingVkBufferCreateInfo
andVkBufferCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkBufferDeviceAddressCreateInfoEXT
andVkBufferDeviceAddressCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkBufferDeviceAddressInfo
andVkBufferDeviceAddressInfo.Ptr
operations.Auxiliary interface for unifyingVkBufferImageCopy
andVkBufferImageCopy.Ptr
operations.Auxiliary interface for unifyingVkBufferImageCopy2
andVkBufferImageCopy2.Ptr
operations.Auxiliary interface for unifyingVkBufferMemoryBarrier
andVkBufferMemoryBarrier.Ptr
operations.Auxiliary interface for unifyingVkBufferMemoryBarrier2
andVkBufferMemoryBarrier2.Ptr
operations.Auxiliary interface for unifyingVkBufferMemoryRequirementsInfo2
andVkBufferMemoryRequirementsInfo2.Ptr
operations.Auxiliary interface for unifyingVkBufferOpaqueCaptureAddressCreateInfo
andVkBufferOpaqueCaptureAddressCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkBufferUsageFlags2CreateInfo
andVkBufferUsageFlags2CreateInfo.Ptr
operations.Auxiliary interface for unifyingVkBufferViewCreateInfo
andVkBufferViewCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkBuildPartitionedAccelerationStructureIndirectCommandNV
andVkBuildPartitionedAccelerationStructureIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkBuildPartitionedAccelerationStructureInfoNV
andVkBuildPartitionedAccelerationStructureInfoNV.Ptr
operations.Auxiliary interface for unifyingVkCalibratedTimestampInfoKHR
andVkCalibratedTimestampInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkCheckpointData2NV
andVkCheckpointData2NV.Ptr
operations.Auxiliary interface for unifyingVkCheckpointDataNV
andVkCheckpointDataNV.Ptr
operations.Auxiliary interface for unifyingVkClearAttachment
andVkClearAttachment.Ptr
operations.Auxiliary interface for unifyingVkClearColorValue
andVkClearColorValue.Ptr
operations.Auxiliary interface for unifyingVkClearDepthStencilValue
andVkClearDepthStencilValue.Ptr
operations.Auxiliary interface for unifyingVkClearRect
andVkClearRect.Ptr
operations.Auxiliary interface for unifyingVkClearValue
andVkClearValue.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureBuildClustersBottomLevelInfoNV
andVkClusterAccelerationStructureBuildClustersBottomLevelInfoNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureBuildTriangleClusterInfoNV
andVkClusterAccelerationStructureBuildTriangleClusterInfoNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNV
andVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureClustersBottomLevelInputNV
andVkClusterAccelerationStructureClustersBottomLevelInputNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureCommandsInfoNV
andVkClusterAccelerationStructureCommandsInfoNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNV
andVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureInputInfoNV
andVkClusterAccelerationStructureInputInfoNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureInstantiateClusterInfoNV
andVkClusterAccelerationStructureInstantiateClusterInfoNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureMoveObjectsInfoNV
andVkClusterAccelerationStructureMoveObjectsInfoNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureMoveObjectsInputNV
andVkClusterAccelerationStructureMoveObjectsInputNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureOpInputNV
andVkClusterAccelerationStructureOpInputNV.Ptr
operations.Auxiliary interface for unifyingVkClusterAccelerationStructureTriangleClusterInputNV
andVkClusterAccelerationStructureTriangleClusterInputNV.Ptr
operations.Auxiliary interface for unifyingVkCoarseSampleLocationNV
andVkCoarseSampleLocationNV.Ptr
operations.Auxiliary interface for unifyingVkCoarseSampleOrderCustomNV
andVkCoarseSampleOrderCustomNV.Ptr
operations.Auxiliary interface for unifyingVkColorBlendAdvancedEXT
andVkColorBlendAdvancedEXT.Ptr
operations.Auxiliary interface for unifyingVkColorBlendEquationEXT
andVkColorBlendEquationEXT.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferAllocateInfo
andVkCommandBufferAllocateInfo.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferBeginInfo
andVkCommandBufferBeginInfo.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferInheritanceConditionalRenderingInfoEXT
andVkCommandBufferInheritanceConditionalRenderingInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferInheritanceInfo
andVkCommandBufferInheritanceInfo.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferInheritanceRenderingInfo
andVkCommandBufferInheritanceRenderingInfo.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferInheritanceRenderPassTransformInfoQCOM
andVkCommandBufferInheritanceRenderPassTransformInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferInheritanceViewportScissorInfoNV
andVkCommandBufferInheritanceViewportScissorInfoNV.Ptr
operations.Auxiliary interface for unifyingVkCommandBufferSubmitInfo
andVkCommandBufferSubmitInfo.Ptr
operations.Auxiliary interface for unifyingVkCommandPoolCreateInfo
andVkCommandPoolCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkComponentMapping
andVkComponentMapping.Ptr
operations.Auxiliary interface for unifyingVkComputePipelineCreateInfo
andVkComputePipelineCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkComputePipelineIndirectBufferInfoNV
andVkComputePipelineIndirectBufferInfoNV.Ptr
operations.Auxiliary interface for unifyingVkConditionalRenderingBeginInfoEXT
andVkConditionalRenderingBeginInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkConformanceVersion
andVkConformanceVersion.Ptr
operations.Auxiliary interface for unifyingVkConvertCooperativeVectorMatrixInfoNV
andVkConvertCooperativeVectorMatrixInfoNV.Ptr
operations.Auxiliary interface for unifyingVkCooperativeMatrixFlexibleDimensionsPropertiesNV
andVkCooperativeMatrixFlexibleDimensionsPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkCooperativeMatrixPropertiesKHR
andVkCooperativeMatrixPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkCooperativeMatrixPropertiesNV
andVkCooperativeMatrixPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkCooperativeVectorPropertiesNV
andVkCooperativeVectorPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkCopyAccelerationStructureInfoKHR
andVkCopyAccelerationStructureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkCopyAccelerationStructureToMemoryInfoKHR
andVkCopyAccelerationStructureToMemoryInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkCopyBufferInfo2
andVkCopyBufferInfo2.Ptr
operations.Auxiliary interface for unifyingVkCopyBufferToImageInfo2
andVkCopyBufferToImageInfo2.Ptr
operations.Auxiliary interface for unifyingVkCopyCommandTransformInfoQCOM
andVkCopyCommandTransformInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkCopyDescriptorSet
andVkCopyDescriptorSet.Ptr
operations.Auxiliary interface for unifyingVkCopyImageInfo2
andVkCopyImageInfo2.Ptr
operations.Auxiliary interface for unifyingVkCopyImageToBufferInfo2
andVkCopyImageToBufferInfo2.Ptr
operations.Auxiliary interface for unifyingVkCopyImageToImageInfo
andVkCopyImageToImageInfo.Ptr
operations.Auxiliary interface for unifyingVkCopyImageToMemoryInfo
andVkCopyImageToMemoryInfo.Ptr
operations.Auxiliary interface for unifyingVkCopyMemoryIndirectCommandNV
andVkCopyMemoryIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkCopyMemoryToAccelerationStructureInfoKHR
andVkCopyMemoryToAccelerationStructureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkCopyMemoryToImageIndirectCommandNV
andVkCopyMemoryToImageIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkCopyMemoryToImageInfo
andVkCopyMemoryToImageInfo.Ptr
operations.Auxiliary interface for unifyingVkCopyMemoryToMicromapInfoEXT
andVkCopyMemoryToMicromapInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkCopyMicromapInfoEXT
andVkCopyMicromapInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkCopyMicromapToMemoryInfoEXT
andVkCopyMicromapToMemoryInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkCudaFunctionCreateInfoNV
andVkCudaFunctionCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkCudaLaunchInfoNV
andVkCudaLaunchInfoNV.Ptr
operations.Auxiliary interface for unifyingVkCudaModuleCreateInfoNV
andVkCudaModuleCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkCuFunctionCreateInfoNVX
andVkCuFunctionCreateInfoNVX.Ptr
operations.Auxiliary interface for unifyingVkCuLaunchInfoNVX
andVkCuLaunchInfoNVX.Ptr
operations.Auxiliary interface for unifyingVkCuModuleCreateInfoNVX
andVkCuModuleCreateInfoNVX.Ptr
operations.Auxiliary interface for unifyingVkCuModuleTexturingModeCreateInfoNVX
andVkCuModuleTexturingModeCreateInfoNVX.Ptr
operations.Auxiliary interface for unifyingVkD3D12FenceSubmitInfoKHR
andVkD3D12FenceSubmitInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkDebugMarkerMarkerInfoEXT
andVkDebugMarkerMarkerInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugMarkerObjectNameInfoEXT
andVkDebugMarkerObjectNameInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugMarkerObjectTagInfoEXT
andVkDebugMarkerObjectTagInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugReportCallbackCreateInfoEXT
andVkDebugReportCallbackCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugUtilsLabelEXT
andVkDebugUtilsLabelEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugUtilsMessengerCallbackDataEXT
andVkDebugUtilsMessengerCallbackDataEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugUtilsMessengerCreateInfoEXT
andVkDebugUtilsMessengerCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugUtilsObjectNameInfoEXT
andVkDebugUtilsObjectNameInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDebugUtilsObjectTagInfoEXT
andVkDebugUtilsObjectTagInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDecompressMemoryRegionNV
andVkDecompressMemoryRegionNV.Ptr
operations.Auxiliary interface for unifyingVkDedicatedAllocationBufferCreateInfoNV
andVkDedicatedAllocationBufferCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkDedicatedAllocationImageCreateInfoNV
andVkDedicatedAllocationImageCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkDedicatedAllocationMemoryAllocateInfoNV
andVkDedicatedAllocationMemoryAllocateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkDependencyInfo
andVkDependencyInfo.Ptr
operations.Auxiliary interface for unifyingVkDepthBiasInfoEXT
andVkDepthBiasInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDepthBiasRepresentationInfoEXT
andVkDepthBiasRepresentationInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDepthClampRangeEXT
andVkDepthClampRangeEXT.Ptr
operations.Auxiliary interface for unifyingVkDescriptorAddressInfoEXT
andVkDescriptorAddressInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDescriptorBufferBindingInfoEXT
andVkDescriptorBufferBindingInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDescriptorBufferBindingPushDescriptorBufferHandleEXT
andVkDescriptorBufferBindingPushDescriptorBufferHandleEXT.Ptr
operations.Auxiliary interface for unifyingVkDescriptorBufferInfo
andVkDescriptorBufferInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorDataEXT
andVkDescriptorDataEXT.Ptr
operations.Auxiliary interface for unifyingVkDescriptorGetInfoEXT
andVkDescriptorGetInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDescriptorImageInfo
andVkDescriptorImageInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorPoolCreateInfo
andVkDescriptorPoolCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorPoolInlineUniformBlockCreateInfo
andVkDescriptorPoolInlineUniformBlockCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorPoolSize
andVkDescriptorPoolSize.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetAllocateInfo
andVkDescriptorSetAllocateInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetBindingReferenceVALVE
andVkDescriptorSetBindingReferenceVALVE.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetLayoutBinding
andVkDescriptorSetLayoutBinding.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetLayoutBindingFlagsCreateInfo
andVkDescriptorSetLayoutBindingFlagsCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetLayoutCreateInfo
andVkDescriptorSetLayoutCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetLayoutHostMappingInfoVALVE
andVkDescriptorSetLayoutHostMappingInfoVALVE.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetLayoutSupport
andVkDescriptorSetLayoutSupport.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetVariableDescriptorCountAllocateInfo
andVkDescriptorSetVariableDescriptorCountAllocateInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorSetVariableDescriptorCountLayoutSupport
andVkDescriptorSetVariableDescriptorCountLayoutSupport.Ptr
operations.Auxiliary interface for unifyingVkDescriptorUpdateTemplateCreateInfo
andVkDescriptorUpdateTemplateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDescriptorUpdateTemplateEntry
andVkDescriptorUpdateTemplateEntry.Ptr
operations.Auxiliary interface for unifyingVkDeviceAddressBindingCallbackDataEXT
andVkDeviceAddressBindingCallbackDataEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceBufferMemoryRequirements
andVkDeviceBufferMemoryRequirements.Ptr
operations.Auxiliary interface for unifyingVkDeviceCreateInfo
andVkDeviceCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceDeviceMemoryReportCreateInfoEXT
andVkDeviceDeviceMemoryReportCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceDiagnosticsConfigCreateInfoNV
andVkDeviceDiagnosticsConfigCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkDeviceEventInfoEXT
andVkDeviceEventInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceFaultAddressInfoEXT
andVkDeviceFaultAddressInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceFaultCountsEXT
andVkDeviceFaultCountsEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceFaultInfoEXT
andVkDeviceFaultInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceFaultVendorBinaryHeaderVersionOneEXT
andVkDeviceFaultVendorBinaryHeaderVersionOneEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceFaultVendorInfoEXT
andVkDeviceFaultVendorInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupBindSparseInfo
andVkDeviceGroupBindSparseInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupCommandBufferBeginInfo
andVkDeviceGroupCommandBufferBeginInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupDeviceCreateInfo
andVkDeviceGroupDeviceCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupPresentCapabilitiesKHR
andVkDeviceGroupPresentCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupPresentInfoKHR
andVkDeviceGroupPresentInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupRenderPassBeginInfo
andVkDeviceGroupRenderPassBeginInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupSubmitInfo
andVkDeviceGroupSubmitInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceGroupSwapchainCreateInfoKHR
andVkDeviceGroupSwapchainCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkDeviceImageMemoryRequirements
andVkDeviceImageMemoryRequirements.Ptr
operations.Auxiliary interface for unifyingVkDeviceImageSubresourceInfo
andVkDeviceImageSubresourceInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceMemoryOpaqueCaptureAddressInfo
andVkDeviceMemoryOpaqueCaptureAddressInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceMemoryOverallocationCreateInfoAMD
andVkDeviceMemoryOverallocationCreateInfoAMD.Ptr
operations.Auxiliary interface for unifyingVkDeviceMemoryReportCallbackDataEXT
andVkDeviceMemoryReportCallbackDataEXT.Ptr
operations.Auxiliary interface for unifyingVkDeviceOrHostAddressConstAMDX
andVkDeviceOrHostAddressConstAMDX.Ptr
operations.Auxiliary interface for unifyingVkDeviceOrHostAddressConstKHR
andVkDeviceOrHostAddressConstKHR.Ptr
operations.Auxiliary interface for unifyingVkDeviceOrHostAddressKHR
andVkDeviceOrHostAddressKHR.Ptr
operations.Auxiliary interface for unifyingVkDevicePipelineBinaryInternalCacheControlKHR
andVkDevicePipelineBinaryInternalCacheControlKHR.Ptr
operations.Auxiliary interface for unifyingVkDevicePrivateDataCreateInfo
andVkDevicePrivateDataCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceQueueCreateInfo
andVkDeviceQueueCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceQueueGlobalPriorityCreateInfo
andVkDeviceQueueGlobalPriorityCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkDeviceQueueInfo2
andVkDeviceQueueInfo2.Ptr
operations.Auxiliary interface for unifyingVkDeviceQueueShaderCoreControlCreateInfoARM
andVkDeviceQueueShaderCoreControlCreateInfoARM.Ptr
operations.Auxiliary interface for unifyingVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNV
andVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkDirectDriverLoadingInfoLUNARG
andVkDirectDriverLoadingInfoLUNARG.Ptr
operations.Auxiliary interface for unifyingVkDirectDriverLoadingListLUNARG
andVkDirectDriverLoadingListLUNARG.Ptr
operations.Auxiliary interface for unifyingVkDirectFBSurfaceCreateInfoEXT
andVkDirectFBSurfaceCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDispatchGraphCountInfoAMDX
andVkDispatchGraphCountInfoAMDX.Ptr
operations.Auxiliary interface for unifyingVkDispatchGraphInfoAMDX
andVkDispatchGraphInfoAMDX.Ptr
operations.Auxiliary interface for unifyingVkDispatchIndirectCommand
andVkDispatchIndirectCommand.Ptr
operations.Auxiliary interface for unifyingVkDispatchTileInfoQCOM
andVkDispatchTileInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkDisplayEventInfoEXT
andVkDisplayEventInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDisplayModeCreateInfoKHR
andVkDisplayModeCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayModeParametersKHR
andVkDisplayModeParametersKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayModeProperties2KHR
andVkDisplayModeProperties2KHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayModePropertiesKHR
andVkDisplayModePropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayModeStereoPropertiesNV
andVkDisplayModeStereoPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkDisplayNativeHdrSurfaceCapabilitiesAMD
andVkDisplayNativeHdrSurfaceCapabilitiesAMD.Ptr
operations.Auxiliary interface for unifyingVkDisplayPlaneCapabilities2KHR
andVkDisplayPlaneCapabilities2KHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayPlaneCapabilitiesKHR
andVkDisplayPlaneCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayPlaneInfo2KHR
andVkDisplayPlaneInfo2KHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayPlaneProperties2KHR
andVkDisplayPlaneProperties2KHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayPlanePropertiesKHR
andVkDisplayPlanePropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayPowerInfoEXT
andVkDisplayPowerInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkDisplayPresentInfoKHR
andVkDisplayPresentInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayProperties2KHR
andVkDisplayProperties2KHR.Ptr
operations.Auxiliary interface for unifyingVkDisplayPropertiesKHR
andVkDisplayPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplaySurfaceCreateInfoKHR
andVkDisplaySurfaceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkDisplaySurfaceStereoCreateInfoNV
andVkDisplaySurfaceStereoCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkDrawIndexedIndirectCommand
andVkDrawIndexedIndirectCommand.Ptr
operations.Auxiliary interface for unifyingVkDrawIndirectCommand
andVkDrawIndirectCommand.Ptr
operations.Auxiliary interface for unifyingVkDrawIndirectCountIndirectCommandEXT
andVkDrawIndirectCountIndirectCommandEXT.Ptr
operations.Auxiliary interface for unifyingVkDrawMeshTasksIndirectCommandEXT
andVkDrawMeshTasksIndirectCommandEXT.Ptr
operations.Auxiliary interface for unifyingVkDrawMeshTasksIndirectCommandNV
andVkDrawMeshTasksIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkDrmFormatModifierProperties2EXT
andVkDrmFormatModifierProperties2EXT.Ptr
operations.Auxiliary interface for unifyingVkDrmFormatModifierPropertiesEXT
andVkDrmFormatModifierPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkDrmFormatModifierPropertiesList2EXT
andVkDrmFormatModifierPropertiesList2EXT.Ptr
operations.Auxiliary interface for unifyingVkDrmFormatModifierPropertiesListEXT
andVkDrmFormatModifierPropertiesListEXT.Ptr
operations.Auxiliary interface for unifyingVkEventCreateInfo
andVkEventCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkExecutionGraphPipelineCreateInfoAMDX
andVkExecutionGraphPipelineCreateInfoAMDX.Ptr
operations.Auxiliary interface for unifyingVkExecutionGraphPipelineScratchSizeAMDX
andVkExecutionGraphPipelineScratchSizeAMDX.Ptr
operations.Auxiliary interface for unifyingVkExportFenceCreateInfo
andVkExportFenceCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkExportFenceSciSyncInfoNV
andVkExportFenceSciSyncInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExportFenceWin32HandleInfoKHR
andVkExportFenceWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkExportMemoryAllocateInfo
andVkExportMemoryAllocateInfo.Ptr
operations.Auxiliary interface for unifyingVkExportMemoryAllocateInfoNV
andVkExportMemoryAllocateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExportMemorySciBufInfoNV
andVkExportMemorySciBufInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExportMemoryWin32HandleInfoKHR
andVkExportMemoryWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkExportMemoryWin32HandleInfoNV
andVkExportMemoryWin32HandleInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExportMetalBufferInfoEXT
andVkExportMetalBufferInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportMetalCommandQueueInfoEXT
andVkExportMetalCommandQueueInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportMetalDeviceInfoEXT
andVkExportMetalDeviceInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportMetalIOSurfaceInfoEXT
andVkExportMetalIOSurfaceInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportMetalObjectCreateInfoEXT
andVkExportMetalObjectCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportMetalObjectsInfoEXT
andVkExportMetalObjectsInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportMetalSharedEventInfoEXT
andVkExportMetalSharedEventInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportMetalTextureInfoEXT
andVkExportMetalTextureInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkExportSemaphoreCreateInfo
andVkExportSemaphoreCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkExportSemaphoreSciSyncInfoNV
andVkExportSemaphoreSciSyncInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExportSemaphoreWin32HandleInfoKHR
andVkExportSemaphoreWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkExtensionProperties
andVkExtensionProperties.Ptr
operations.Auxiliary interface for unifyingVkExtent2D
andVkExtent2D.Ptr
operations.Auxiliary interface for unifyingVkExtent3D
andVkExtent3D.Ptr
operations.Auxiliary interface for unifyingVkExternalBufferProperties
andVkExternalBufferProperties.Ptr
operations.Auxiliary interface for unifyingVkExternalComputeQueueCreateInfoNV
andVkExternalComputeQueueCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExternalComputeQueueDataParamsNV
andVkExternalComputeQueueDataParamsNV.Ptr
operations.Auxiliary interface for unifyingVkExternalComputeQueueDeviceCreateInfoNV
andVkExternalComputeQueueDeviceCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExternalFenceProperties
andVkExternalFenceProperties.Ptr
operations.Auxiliary interface for unifyingVkExternalFormatANDROID
andVkExternalFormatANDROID.Ptr
operations.Auxiliary interface for unifyingVkExternalFormatQNX
andVkExternalFormatQNX.Ptr
operations.Auxiliary interface for unifyingVkExternalImageFormatProperties
andVkExternalImageFormatProperties.Ptr
operations.Auxiliary interface for unifyingVkExternalImageFormatPropertiesNV
andVkExternalImageFormatPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkExternalMemoryAcquireUnmodifiedEXT
andVkExternalMemoryAcquireUnmodifiedEXT.Ptr
operations.Auxiliary interface for unifyingVkExternalMemoryBufferCreateInfo
andVkExternalMemoryBufferCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkExternalMemoryImageCreateInfo
andVkExternalMemoryImageCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkExternalMemoryImageCreateInfoNV
andVkExternalMemoryImageCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkExternalMemoryProperties
andVkExternalMemoryProperties.Ptr
operations.Auxiliary interface for unifyingVkExternalSemaphoreProperties
andVkExternalSemaphoreProperties.Ptr
operations.Auxiliary interface for unifyingVkFenceCreateInfo
andVkFenceCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkFenceGetFdInfoKHR
andVkFenceGetFdInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkFenceGetSciSyncInfoNV
andVkFenceGetSciSyncInfoNV.Ptr
operations.Auxiliary interface for unifyingVkFenceGetWin32HandleInfoKHR
andVkFenceGetWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkFilterCubicImageViewImageFormatPropertiesEXT
andVkFilterCubicImageViewImageFormatPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkFormatProperties
andVkFormatProperties.Ptr
operations.Auxiliary interface for unifyingVkFormatProperties2
andVkFormatProperties2.Ptr
operations.Auxiliary interface for unifyingVkFormatProperties3
andVkFormatProperties3.Ptr
operations.Auxiliary interface for unifyingVkFragmentShadingRateAttachmentInfoKHR
andVkFragmentShadingRateAttachmentInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkFrameBoundaryEXT
andVkFrameBoundaryEXT.Ptr
operations.Auxiliary interface for unifyingVkFramebufferAttachmentImageInfo
andVkFramebufferAttachmentImageInfo.Ptr
operations.Auxiliary interface for unifyingVkFramebufferAttachmentsCreateInfo
andVkFramebufferAttachmentsCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkFramebufferCreateInfo
andVkFramebufferCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkFramebufferMixedSamplesCombinationNV
andVkFramebufferMixedSamplesCombinationNV.Ptr
operations.Auxiliary interface for unifyingVkGeneratedCommandsInfoEXT
andVkGeneratedCommandsInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkGeneratedCommandsInfoNV
andVkGeneratedCommandsInfoNV.Ptr
operations.Auxiliary interface for unifyingVkGeneratedCommandsMemoryRequirementsInfoEXT
andVkGeneratedCommandsMemoryRequirementsInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkGeneratedCommandsMemoryRequirementsInfoNV
andVkGeneratedCommandsMemoryRequirementsInfoNV.Ptr
operations.Auxiliary interface for unifyingVkGeneratedCommandsPipelineInfoEXT
andVkGeneratedCommandsPipelineInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkGeneratedCommandsShaderInfoEXT
andVkGeneratedCommandsShaderInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkGeometryAABBNV
andVkGeometryAABBNV.Ptr
operations.Auxiliary interface for unifyingVkGeometryDataNV
andVkGeometryDataNV.Ptr
operations.Auxiliary interface for unifyingVkGeometryNV
andVkGeometryNV.Ptr
operations.Auxiliary interface for unifyingVkGeometryTrianglesNV
andVkGeometryTrianglesNV.Ptr
operations.Auxiliary interface for unifyingVkGetLatencyMarkerInfoNV
andVkGetLatencyMarkerInfoNV.Ptr
operations.Auxiliary interface for unifyingVkGraphicsPipelineCreateInfo
andVkGraphicsPipelineCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkGraphicsPipelineLibraryCreateInfoEXT
andVkGraphicsPipelineLibraryCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkGraphicsPipelineShaderGroupsCreateInfoNV
andVkGraphicsPipelineShaderGroupsCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkGraphicsShaderGroupCreateInfoNV
andVkGraphicsShaderGroupCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkHdrMetadataEXT
andVkHdrMetadataEXT.Ptr
operations.Auxiliary interface for unifyingVkHdrVividDynamicMetadataHUAWEI
andVkHdrVividDynamicMetadataHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkHeadlessSurfaceCreateInfoEXT
andVkHeadlessSurfaceCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkHostImageCopyDevicePerformanceQuery
andVkHostImageCopyDevicePerformanceQuery.Ptr
operations.Auxiliary interface for unifyingVkHostImageLayoutTransitionInfo
andVkHostImageLayoutTransitionInfo.Ptr
operations.Auxiliary interface for unifyingVkImageAlignmentControlCreateInfoMESA
andVkImageAlignmentControlCreateInfoMESA.Ptr
operations.Auxiliary interface for unifyingVkImageBlit
andVkImageBlit.Ptr
operations.Auxiliary interface for unifyingVkImageBlit2
andVkImageBlit2.Ptr
operations.Auxiliary interface for unifyingVkImageCaptureDescriptorDataInfoEXT
andVkImageCaptureDescriptorDataInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImageCompressionControlEXT
andVkImageCompressionControlEXT.Ptr
operations.Auxiliary interface for unifyingVkImageCompressionPropertiesEXT
andVkImageCompressionPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkImageConstraintsInfoFUCHSIA
andVkImageConstraintsInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkImageCopy
andVkImageCopy.Ptr
operations.Auxiliary interface for unifyingVkImageCopy2
andVkImageCopy2.Ptr
operations.Auxiliary interface for unifyingVkImageCreateInfo
andVkImageCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkImageDrmFormatModifierExplicitCreateInfoEXT
andVkImageDrmFormatModifierExplicitCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImageDrmFormatModifierListCreateInfoEXT
andVkImageDrmFormatModifierListCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImageDrmFormatModifierPropertiesEXT
andVkImageDrmFormatModifierPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkImageFormatConstraintsInfoFUCHSIA
andVkImageFormatConstraintsInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkImageFormatListCreateInfo
andVkImageFormatListCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkImageFormatProperties
andVkImageFormatProperties.Ptr
operations.Auxiliary interface for unifyingVkImageFormatProperties2
andVkImageFormatProperties2.Ptr
operations.Auxiliary interface for unifyingVkImageMemoryBarrier
andVkImageMemoryBarrier.Ptr
operations.Auxiliary interface for unifyingVkImageMemoryBarrier2
andVkImageMemoryBarrier2.Ptr
operations.Auxiliary interface for unifyingVkImageMemoryRequirementsInfo2
andVkImageMemoryRequirementsInfo2.Ptr
operations.Auxiliary interface for unifyingVkImagePipeSurfaceCreateInfoFUCHSIA
andVkImagePipeSurfaceCreateInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkImagePlaneMemoryRequirementsInfo
andVkImagePlaneMemoryRequirementsInfo.Ptr
operations.Auxiliary interface for unifyingVkImageResolve
andVkImageResolve.Ptr
operations.Auxiliary interface for unifyingVkImageResolve2
andVkImageResolve2.Ptr
operations.Auxiliary interface for unifyingVkImageSparseMemoryRequirementsInfo2
andVkImageSparseMemoryRequirementsInfo2.Ptr
operations.Auxiliary interface for unifyingVkImageStencilUsageCreateInfo
andVkImageStencilUsageCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkImageSubresource
andVkImageSubresource.Ptr
operations.Auxiliary interface for unifyingVkImageSubresource2
andVkImageSubresource2.Ptr
operations.Auxiliary interface for unifyingVkImageSubresourceLayers
andVkImageSubresourceLayers.Ptr
operations.Auxiliary interface for unifyingVkImageSubresourceRange
andVkImageSubresourceRange.Ptr
operations.Auxiliary interface for unifyingVkImageSwapchainCreateInfoKHR
andVkImageSwapchainCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkImageToMemoryCopy
andVkImageToMemoryCopy.Ptr
operations.Auxiliary interface for unifyingVkImageViewAddressPropertiesNVX
andVkImageViewAddressPropertiesNVX.Ptr
operations.Auxiliary interface for unifyingVkImageViewASTCDecodeModeEXT
andVkImageViewASTCDecodeModeEXT.Ptr
operations.Auxiliary interface for unifyingVkImageViewCaptureDescriptorDataInfoEXT
andVkImageViewCaptureDescriptorDataInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImageViewCreateInfo
andVkImageViewCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkImageViewHandleInfoNVX
andVkImageViewHandleInfoNVX.Ptr
operations.Auxiliary interface for unifyingVkImageViewMinLodCreateInfoEXT
andVkImageViewMinLodCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImageViewSampleWeightCreateInfoQCOM
andVkImageViewSampleWeightCreateInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkImageViewSlicedCreateInfoEXT
andVkImageViewSlicedCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImageViewUsageCreateInfo
andVkImageViewUsageCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkImportAndroidHardwareBufferInfoANDROID
andVkImportAndroidHardwareBufferInfoANDROID.Ptr
operations.Auxiliary interface for unifyingVkImportFenceFdInfoKHR
andVkImportFenceFdInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkImportFenceSciSyncInfoNV
andVkImportFenceSciSyncInfoNV.Ptr
operations.Auxiliary interface for unifyingVkImportFenceWin32HandleInfoKHR
andVkImportFenceWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkImportMemoryBufferCollectionFUCHSIA
andVkImportMemoryBufferCollectionFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkImportMemoryFdInfoKHR
andVkImportMemoryFdInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkImportMemoryHostPointerInfoEXT
andVkImportMemoryHostPointerInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImportMemoryMetalHandleInfoEXT
andVkImportMemoryMetalHandleInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImportMemorySciBufInfoNV
andVkImportMemorySciBufInfoNV.Ptr
operations.Auxiliary interface for unifyingVkImportMemoryWin32HandleInfoKHR
andVkImportMemoryWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkImportMemoryWin32HandleInfoNV
andVkImportMemoryWin32HandleInfoNV.Ptr
operations.Auxiliary interface for unifyingVkImportMemoryZirconHandleInfoFUCHSIA
andVkImportMemoryZirconHandleInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkImportMetalBufferInfoEXT
andVkImportMetalBufferInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImportMetalIOSurfaceInfoEXT
andVkImportMetalIOSurfaceInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImportMetalSharedEventInfoEXT
andVkImportMetalSharedEventInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImportMetalTextureInfoEXT
andVkImportMetalTextureInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkImportScreenBufferInfoQNX
andVkImportScreenBufferInfoQNX.Ptr
operations.Auxiliary interface for unifyingVkImportSemaphoreFdInfoKHR
andVkImportSemaphoreFdInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkImportSemaphoreSciSyncInfoNV
andVkImportSemaphoreSciSyncInfoNV.Ptr
operations.Auxiliary interface for unifyingVkImportSemaphoreWin32HandleInfoKHR
andVkImportSemaphoreWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkImportSemaphoreZirconHandleInfoFUCHSIA
andVkImportSemaphoreZirconHandleInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsExecutionSetTokenEXT
andVkIndirectCommandsExecutionSetTokenEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsIndexBufferTokenEXT
andVkIndirectCommandsIndexBufferTokenEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsLayoutCreateInfoEXT
andVkIndirectCommandsLayoutCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsLayoutCreateInfoNV
andVkIndirectCommandsLayoutCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsLayoutTokenEXT
andVkIndirectCommandsLayoutTokenEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsLayoutTokenNV
andVkIndirectCommandsLayoutTokenNV.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsPushConstantTokenEXT
andVkIndirectCommandsPushConstantTokenEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsStreamNV
andVkIndirectCommandsStreamNV.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsTokenDataEXT
andVkIndirectCommandsTokenDataEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectCommandsVertexBufferTokenEXT
andVkIndirectCommandsVertexBufferTokenEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectExecutionSetCreateInfoEXT
andVkIndirectExecutionSetCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectExecutionSetInfoEXT
andVkIndirectExecutionSetInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectExecutionSetPipelineInfoEXT
andVkIndirectExecutionSetPipelineInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectExecutionSetShaderInfoEXT
andVkIndirectExecutionSetShaderInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkIndirectExecutionSetShaderLayoutInfoEXT
andVkIndirectExecutionSetShaderLayoutInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkInitializePerformanceApiInfoINTEL
andVkInitializePerformanceApiInfoINTEL.Ptr
operations.Auxiliary interface for unifyingVkInputAttachmentAspectReference
andVkInputAttachmentAspectReference.Ptr
operations.Auxiliary interface for unifyingVkInstanceCreateInfo
andVkInstanceCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkIOSSurfaceCreateInfoMVK
andVkIOSSurfaceCreateInfoMVK.Ptr
operations.Auxiliary interface for unifyingVkLatencySleepInfoNV
andVkLatencySleepInfoNV.Ptr
operations.Auxiliary interface for unifyingVkLatencySleepModeInfoNV
andVkLatencySleepModeInfoNV.Ptr
operations.Auxiliary interface for unifyingVkLatencySubmissionPresentIdNV
andVkLatencySubmissionPresentIdNV.Ptr
operations.Auxiliary interface for unifyingVkLatencySurfaceCapabilitiesNV
andVkLatencySurfaceCapabilitiesNV.Ptr
operations.Auxiliary interface for unifyingVkLatencyTimingsFrameReportNV
andVkLatencyTimingsFrameReportNV.Ptr
operations.Auxiliary interface for unifyingVkLayerProperties
andVkLayerProperties.Ptr
operations.Auxiliary interface for unifyingVkLayerSettingEXT
andVkLayerSettingEXT.Ptr
operations.Auxiliary interface for unifyingVkLayerSettingsCreateInfoEXT
andVkLayerSettingsCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMacOSSurfaceCreateInfoMVK
andVkMacOSSurfaceCreateInfoMVK.Ptr
operations.Auxiliary interface for unifyingVkMappedMemoryRange
andVkMappedMemoryRange.Ptr
operations.Auxiliary interface for unifyingVkMemoryAllocateFlagsInfo
andVkMemoryAllocateFlagsInfo.Ptr
operations.Auxiliary interface for unifyingVkMemoryAllocateInfo
andVkMemoryAllocateInfo.Ptr
operations.Auxiliary interface for unifyingVkMemoryBarrier
andVkMemoryBarrier.Ptr
operations.Auxiliary interface for unifyingVkMemoryBarrier2
andVkMemoryBarrier2.Ptr
operations.Auxiliary interface for unifyingVkMemoryBarrierAccessFlags3KHR
andVkMemoryBarrierAccessFlags3KHR.Ptr
operations.Auxiliary interface for unifyingVkMemoryDedicatedAllocateInfo
andVkMemoryDedicatedAllocateInfo.Ptr
operations.Auxiliary interface for unifyingVkMemoryDedicatedRequirements
andVkMemoryDedicatedRequirements.Ptr
operations.Auxiliary interface for unifyingVkMemoryFdPropertiesKHR
andVkMemoryFdPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkMemoryGetAndroidHardwareBufferInfoANDROID
andVkMemoryGetAndroidHardwareBufferInfoANDROID.Ptr
operations.Auxiliary interface for unifyingVkMemoryGetFdInfoKHR
andVkMemoryGetFdInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkMemoryGetMetalHandleInfoEXT
andVkMemoryGetMetalHandleInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMemoryGetRemoteAddressInfoNV
andVkMemoryGetRemoteAddressInfoNV.Ptr
operations.Auxiliary interface for unifyingVkMemoryGetSciBufInfoNV
andVkMemoryGetSciBufInfoNV.Ptr
operations.Auxiliary interface for unifyingVkMemoryGetWin32HandleInfoKHR
andVkMemoryGetWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkMemoryGetZirconHandleInfoFUCHSIA
andVkMemoryGetZirconHandleInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkMemoryHeap
andVkMemoryHeap.Ptr
operations.Auxiliary interface for unifyingVkMemoryHostPointerPropertiesEXT
andVkMemoryHostPointerPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkMemoryMapInfo
andVkMemoryMapInfo.Ptr
operations.Auxiliary interface for unifyingVkMemoryMapPlacedInfoEXT
andVkMemoryMapPlacedInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMemoryMetalHandlePropertiesEXT
andVkMemoryMetalHandlePropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkMemoryOpaqueCaptureAddressAllocateInfo
andVkMemoryOpaqueCaptureAddressAllocateInfo.Ptr
operations.Auxiliary interface for unifyingVkMemoryPriorityAllocateInfoEXT
andVkMemoryPriorityAllocateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMemoryRequirements
andVkMemoryRequirements.Ptr
operations.Auxiliary interface for unifyingVkMemoryRequirements2
andVkMemoryRequirements2.Ptr
operations.Auxiliary interface for unifyingVkMemorySciBufPropertiesNV
andVkMemorySciBufPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkMemoryToImageCopy
andVkMemoryToImageCopy.Ptr
operations.Auxiliary interface for unifyingVkMemoryType
andVkMemoryType.Ptr
operations.Auxiliary interface for unifyingVkMemoryUnmapInfo
andVkMemoryUnmapInfo.Ptr
operations.Auxiliary interface for unifyingVkMemoryWin32HandlePropertiesKHR
andVkMemoryWin32HandlePropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkMemoryZirconHandlePropertiesFUCHSIA
andVkMemoryZirconHandlePropertiesFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkMetalSurfaceCreateInfoEXT
andVkMetalSurfaceCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMicromapBuildInfoEXT
andVkMicromapBuildInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMicromapBuildSizesInfoEXT
andVkMicromapBuildSizesInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMicromapCreateInfoEXT
andVkMicromapCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMicromapTriangleEXT
andVkMicromapTriangleEXT.Ptr
operations.Auxiliary interface for unifyingVkMicromapUsageEXT
andVkMicromapUsageEXT.Ptr
operations.Auxiliary interface for unifyingVkMicromapVersionInfoEXT
andVkMicromapVersionInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMultiDrawIndexedInfoEXT
andVkMultiDrawIndexedInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMultiDrawInfoEXT
andVkMultiDrawInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMultisampledRenderToSingleSampledInfoEXT
andVkMultisampledRenderToSingleSampledInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMultisamplePropertiesEXT
andVkMultisamplePropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkMultiviewPerViewAttributesInfoNVX
andVkMultiviewPerViewAttributesInfoNVX.Ptr
operations.Auxiliary interface for unifyingVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOM
andVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkMutableDescriptorTypeCreateInfoEXT
andVkMutableDescriptorTypeCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkMutableDescriptorTypeListEXT
andVkMutableDescriptorTypeListEXT.Ptr
operations.Auxiliary interface for unifyingVkOffset2D
andVkOffset2D.Ptr
operations.Auxiliary interface for unifyingVkOffset3D
andVkOffset3D.Ptr
operations.Auxiliary interface for unifyingVkOpaqueCaptureDescriptorDataCreateInfoEXT
andVkOpaqueCaptureDescriptorDataCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkOpticalFlowExecuteInfoNV
andVkOpticalFlowExecuteInfoNV.Ptr
operations.Auxiliary interface for unifyingVkOpticalFlowImageFormatInfoNV
andVkOpticalFlowImageFormatInfoNV.Ptr
operations.Auxiliary interface for unifyingVkOpticalFlowImageFormatPropertiesNV
andVkOpticalFlowImageFormatPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkOpticalFlowSessionCreateInfoNV
andVkOpticalFlowSessionCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkOpticalFlowSessionCreatePrivateDataInfoNV
andVkOpticalFlowSessionCreatePrivateDataInfoNV.Ptr
operations.Auxiliary interface for unifyingVkOutOfBandQueueTypeInfoNV
andVkOutOfBandQueueTypeInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureFlagsNV
andVkPartitionedAccelerationStructureFlagsNV.Ptr
operations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureInstancesInputNV
andVkPartitionedAccelerationStructureInstancesInputNV.Ptr
operations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureUpdateInstanceDataNV
andVkPartitionedAccelerationStructureUpdateInstanceDataNV.Ptr
operations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureWriteInstanceDataNV
andVkPartitionedAccelerationStructureWriteInstanceDataNV.Ptr
operations.Auxiliary interface for unifyingVkPartitionedAccelerationStructureWritePartitionTranslationDataNV
andVkPartitionedAccelerationStructureWritePartitionTranslationDataNV.Ptr
operations.Auxiliary interface for unifyingVkPastPresentationTimingGOOGLE
andVkPastPresentationTimingGOOGLE.Ptr
operations.Auxiliary interface for unifyingVkPerformanceConfigurationAcquireInfoINTEL
andVkPerformanceConfigurationAcquireInfoINTEL.Ptr
operations.Auxiliary interface for unifyingVkPerformanceCounterDescriptionKHR
andVkPerformanceCounterDescriptionKHR.Ptr
operations.Auxiliary interface for unifyingVkPerformanceCounterKHR
andVkPerformanceCounterKHR.Ptr
operations.Auxiliary interface for unifyingVkPerformanceCounterResultKHR
andVkPerformanceCounterResultKHR.Ptr
operations.Auxiliary interface for unifyingVkPerformanceMarkerInfoINTEL
andVkPerformanceMarkerInfoINTEL.Ptr
operations.Auxiliary interface for unifyingVkPerformanceOverrideInfoINTEL
andVkPerformanceOverrideInfoINTEL.Ptr
operations.Auxiliary interface for unifyingVkPerformanceQueryReservationInfoKHR
andVkPerformanceQueryReservationInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPerformanceQuerySubmitInfoKHR
andVkPerformanceQuerySubmitInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPerformanceStreamMarkerInfoINTEL
andVkPerformanceStreamMarkerInfoINTEL.Ptr
operations.Auxiliary interface for unifyingVkPerformanceValueDataINTEL
andVkPerformanceValueDataINTEL.Ptr
operations.Auxiliary interface for unifyingVkPerformanceValueINTEL
andVkPerformanceValueINTEL.Ptr
operations.Auxiliary interface for unifyingVkPerTileBeginInfoQCOM
andVkPerTileBeginInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkPerTileEndInfoQCOM
andVkPerTileEndInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevice16BitStorageFeatures
andVkPhysicalDevice16BitStorageFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevice4444FormatsFeaturesEXT
andVkPhysicalDevice4444FormatsFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevice8BitStorageFeatures
andVkPhysicalDevice8BitStorageFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceAccelerationStructureFeaturesKHR
andVkPhysicalDeviceAccelerationStructureFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceAccelerationStructurePropertiesKHR
andVkPhysicalDeviceAccelerationStructurePropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceAddressBindingReportFeaturesEXT
andVkPhysicalDeviceAddressBindingReportFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceAmigoProfilingFeaturesSEC
andVkPhysicalDeviceAmigoProfilingFeaturesSEC.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceAntiLagFeaturesAMD
andVkPhysicalDeviceAntiLagFeaturesAMD.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceASTCDecodeFeaturesEXT
andVkPhysicalDeviceASTCDecodeFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT
andVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXT
andVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceBlendOperationAdvancedFeaturesEXT
andVkPhysicalDeviceBlendOperationAdvancedFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceBlendOperationAdvancedPropertiesEXT
andVkPhysicalDeviceBlendOperationAdvancedPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceBorderColorSwizzleFeaturesEXT
andVkPhysicalDeviceBorderColorSwizzleFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceBufferDeviceAddressFeatures
andVkPhysicalDeviceBufferDeviceAddressFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceBufferDeviceAddressFeaturesEXT
andVkPhysicalDeviceBufferDeviceAddressFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceClusterAccelerationStructureFeaturesNV
andVkPhysicalDeviceClusterAccelerationStructureFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceClusterAccelerationStructurePropertiesNV
andVkPhysicalDeviceClusterAccelerationStructurePropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEI
andVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEI
andVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEI
andVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCoherentMemoryFeaturesAMD
andVkPhysicalDeviceCoherentMemoryFeaturesAMD.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceColorWriteEnableFeaturesEXT
andVkPhysicalDeviceColorWriteEnableFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCommandBufferInheritanceFeaturesNV
andVkPhysicalDeviceCommandBufferInheritanceFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceComputeShaderDerivativesFeaturesKHR
andVkPhysicalDeviceComputeShaderDerivativesFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceComputeShaderDerivativesPropertiesKHR
andVkPhysicalDeviceComputeShaderDerivativesPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceConditionalRenderingFeaturesEXT
andVkPhysicalDeviceConditionalRenderingFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceConservativeRasterizationPropertiesEXT
andVkPhysicalDeviceConservativeRasterizationPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrix2FeaturesNV
andVkPhysicalDeviceCooperativeMatrix2FeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrix2PropertiesNV
andVkPhysicalDeviceCooperativeMatrix2PropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixFeaturesKHR
andVkPhysicalDeviceCooperativeMatrixFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixFeaturesNV
andVkPhysicalDeviceCooperativeMatrixFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixPropertiesKHR
andVkPhysicalDeviceCooperativeMatrixPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeMatrixPropertiesNV
andVkPhysicalDeviceCooperativeMatrixPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeVectorFeaturesNV
andVkPhysicalDeviceCooperativeVectorFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCooperativeVectorPropertiesNV
andVkPhysicalDeviceCooperativeVectorPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCopyMemoryIndirectFeaturesNV
andVkPhysicalDeviceCopyMemoryIndirectFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCopyMemoryIndirectPropertiesNV
andVkPhysicalDeviceCopyMemoryIndirectPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCornerSampledImageFeaturesNV
andVkPhysicalDeviceCornerSampledImageFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCoverageReductionModeFeaturesNV
andVkPhysicalDeviceCoverageReductionModeFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCubicClampFeaturesQCOM
andVkPhysicalDeviceCubicClampFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCubicWeightsFeaturesQCOM
andVkPhysicalDeviceCubicWeightsFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCudaKernelLaunchFeaturesNV
andVkPhysicalDeviceCudaKernelLaunchFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCudaKernelLaunchPropertiesNV
andVkPhysicalDeviceCudaKernelLaunchPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCustomBorderColorFeaturesEXT
andVkPhysicalDeviceCustomBorderColorFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceCustomBorderColorPropertiesEXT
andVkPhysicalDeviceCustomBorderColorPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV
andVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDepthBiasControlFeaturesEXT
andVkPhysicalDeviceDepthBiasControlFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClampControlFeaturesEXT
andVkPhysicalDeviceDepthClampControlFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClampZeroOneFeaturesKHR
andVkPhysicalDeviceDepthClampZeroOneFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClipControlFeaturesEXT
andVkPhysicalDeviceDepthClipControlFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDepthClipEnableFeaturesEXT
andVkPhysicalDeviceDepthClipEnableFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDepthStencilResolveProperties
andVkPhysicalDeviceDepthStencilResolveProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXT
andVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorBufferFeaturesEXT
andVkPhysicalDeviceDescriptorBufferFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorBufferPropertiesEXT
andVkPhysicalDeviceDescriptorBufferPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorIndexingFeatures
andVkPhysicalDeviceDescriptorIndexingFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorIndexingProperties
andVkPhysicalDeviceDescriptorIndexingProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNV
andVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE
andVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV
andVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXT
andVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV
andVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT
andVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV
andVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDeviceMemoryReportFeaturesEXT
andVkPhysicalDeviceDeviceMemoryReportFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDiagnosticsConfigFeaturesNV
andVkPhysicalDeviceDiagnosticsConfigFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDiscardRectanglePropertiesEXT
andVkPhysicalDeviceDiscardRectanglePropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDisplacementMicromapFeaturesNV
andVkPhysicalDeviceDisplacementMicromapFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDisplacementMicromapPropertiesNV
andVkPhysicalDeviceDisplacementMicromapPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDriverProperties
andVkPhysicalDeviceDriverProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDrmPropertiesEXT
andVkPhysicalDeviceDrmPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDynamicRenderingFeatures
andVkPhysicalDeviceDynamicRenderingFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDynamicRenderingLocalReadFeatures
andVkPhysicalDeviceDynamicRenderingLocalReadFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT
andVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExclusiveScissorFeaturesNV
andVkPhysicalDeviceExclusiveScissorFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicState2FeaturesEXT
andVkPhysicalDeviceExtendedDynamicState2FeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicState3FeaturesEXT
andVkPhysicalDeviceExtendedDynamicState3FeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicState3PropertiesEXT
andVkPhysicalDeviceExtendedDynamicState3PropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedDynamicStateFeaturesEXT
andVkPhysicalDeviceExtendedDynamicStateFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNV
andVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNV
andVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalBufferInfo
andVkPhysicalDeviceExternalBufferInfo.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalComputeQueuePropertiesNV
andVkPhysicalDeviceExternalComputeQueuePropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalFenceInfo
andVkPhysicalDeviceExternalFenceInfo.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalFormatResolveFeaturesANDROID
andVkPhysicalDeviceExternalFormatResolveFeaturesANDROID.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalFormatResolvePropertiesANDROID
andVkPhysicalDeviceExternalFormatResolvePropertiesANDROID.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalImageFormatInfo
andVkPhysicalDeviceExternalImageFormatInfo.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemoryHostPropertiesEXT
andVkPhysicalDeviceExternalMemoryHostPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemoryRDMAFeaturesNV
andVkPhysicalDeviceExternalMemoryRDMAFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemorySciBufFeaturesNV
andVkPhysicalDeviceExternalMemorySciBufFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNX
andVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNX.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalSciSync2FeaturesNV
andVkPhysicalDeviceExternalSciSync2FeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalSciSyncFeaturesNV
andVkPhysicalDeviceExternalSciSyncFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceExternalSemaphoreInfo
andVkPhysicalDeviceExternalSemaphoreInfo.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFaultFeaturesEXT
andVkPhysicalDeviceFaultFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFeatures
andVkPhysicalDeviceFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFeatures2
andVkPhysicalDeviceFeatures2.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFloatControlsProperties
andVkPhysicalDeviceFloatControlsProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMap2FeaturesEXT
andVkPhysicalDeviceFragmentDensityMap2FeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMap2PropertiesEXT
andVkPhysicalDeviceFragmentDensityMap2PropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapFeaturesEXT
andVkPhysicalDeviceFragmentDensityMapFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXT
andVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXT
andVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentDensityMapPropertiesEXT
andVkPhysicalDeviceFragmentDensityMapPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHR
andVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR
andVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShaderInterlockFeaturesEXT
andVkPhysicalDeviceFragmentShaderInterlockFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
andVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV
andVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateFeaturesKHR
andVkPhysicalDeviceFragmentShadingRateFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRateKHR
andVkPhysicalDeviceFragmentShadingRateKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFragmentShadingRatePropertiesKHR
andVkPhysicalDeviceFragmentShadingRatePropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceFrameBoundaryFeaturesEXT
andVkPhysicalDeviceFrameBoundaryFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceGlobalPriorityQueryFeatures
andVkPhysicalDeviceGlobalPriorityQueryFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXT
andVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXT
andVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceGroupProperties
andVkPhysicalDeviceGroupProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceHdrVividFeaturesHUAWEI
andVkPhysicalDeviceHdrVividFeaturesHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceHostImageCopyFeatures
andVkPhysicalDeviceHostImageCopyFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceHostImageCopyProperties
andVkPhysicalDeviceHostImageCopyProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceHostQueryResetFeatures
andVkPhysicalDeviceHostQueryResetFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceIDProperties
andVkPhysicalDeviceIDProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImage2DViewOf3DFeaturesEXT
andVkPhysicalDeviceImage2DViewOf3DFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageAlignmentControlFeaturesMESA
andVkPhysicalDeviceImageAlignmentControlFeaturesMESA.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageAlignmentControlPropertiesMESA
andVkPhysicalDeviceImageAlignmentControlPropertiesMESA.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageCompressionControlFeaturesEXT
andVkPhysicalDeviceImageCompressionControlFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXT
andVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageDrmFormatModifierInfoEXT
andVkPhysicalDeviceImageDrmFormatModifierInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageFormatInfo2
andVkPhysicalDeviceImageFormatInfo2.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImagelessFramebufferFeatures
andVkPhysicalDeviceImagelessFramebufferFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessing2FeaturesQCOM
andVkPhysicalDeviceImageProcessing2FeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessing2PropertiesQCOM
andVkPhysicalDeviceImageProcessing2PropertiesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessingFeaturesQCOM
andVkPhysicalDeviceImageProcessingFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageProcessingPropertiesQCOM
andVkPhysicalDeviceImageProcessingPropertiesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageRobustnessFeatures
andVkPhysicalDeviceImageRobustnessFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXT
andVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageViewImageFormatInfoEXT
andVkPhysicalDeviceImageViewImageFormatInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceImageViewMinLodFeaturesEXT
andVkPhysicalDeviceImageViewMinLodFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceIndexTypeUint8Features
andVkPhysicalDeviceIndexTypeUint8Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceInheritedViewportScissorFeaturesNV
andVkPhysicalDeviceInheritedViewportScissorFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceInlineUniformBlockFeatures
andVkPhysicalDeviceInlineUniformBlockFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceInlineUniformBlockProperties
andVkPhysicalDeviceInlineUniformBlockProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceInvocationMaskFeaturesHUAWEI
andVkPhysicalDeviceInvocationMaskFeaturesHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredApiPropertiesKHR
andVkPhysicalDeviceLayeredApiPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredApiPropertiesListKHR
andVkPhysicalDeviceLayeredApiPropertiesListKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredApiVulkanPropertiesKHR
andVkPhysicalDeviceLayeredApiVulkanPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLayeredDriverPropertiesMSFT
andVkPhysicalDeviceLayeredDriverPropertiesMSFT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLegacyDitheringFeaturesEXT
andVkPhysicalDeviceLegacyDitheringFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLegacyVertexAttributesFeaturesEXT
andVkPhysicalDeviceLegacyVertexAttributesFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLegacyVertexAttributesPropertiesEXT
andVkPhysicalDeviceLegacyVertexAttributesPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLimits
andVkPhysicalDeviceLimits.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLinearColorAttachmentFeaturesNV
andVkPhysicalDeviceLinearColorAttachmentFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLineRasterizationFeatures
andVkPhysicalDeviceLineRasterizationFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceLineRasterizationProperties
andVkPhysicalDeviceLineRasterizationProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance3Properties
andVkPhysicalDeviceMaintenance3Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance4Features
andVkPhysicalDeviceMaintenance4Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance4Properties
andVkPhysicalDeviceMaintenance4Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance5Features
andVkPhysicalDeviceMaintenance5Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance5Properties
andVkPhysicalDeviceMaintenance5Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance6Features
andVkPhysicalDeviceMaintenance6Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance6Properties
andVkPhysicalDeviceMaintenance6Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance7FeaturesKHR
andVkPhysicalDeviceMaintenance7FeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance7PropertiesKHR
andVkPhysicalDeviceMaintenance7PropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMaintenance8FeaturesKHR
andVkPhysicalDeviceMaintenance8FeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMapMemoryPlacedFeaturesEXT
andVkPhysicalDeviceMapMemoryPlacedFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMapMemoryPlacedPropertiesEXT
andVkPhysicalDeviceMapMemoryPlacedPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryBudgetPropertiesEXT
andVkPhysicalDeviceMemoryBudgetPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryDecompressionFeaturesNV
andVkPhysicalDeviceMemoryDecompressionFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryDecompressionPropertiesNV
andVkPhysicalDeviceMemoryDecompressionPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryPriorityFeaturesEXT
andVkPhysicalDeviceMemoryPriorityFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryProperties
andVkPhysicalDeviceMemoryProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMemoryProperties2
andVkPhysicalDeviceMemoryProperties2.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderFeaturesEXT
andVkPhysicalDeviceMeshShaderFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderFeaturesNV
andVkPhysicalDeviceMeshShaderFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderPropertiesEXT
andVkPhysicalDeviceMeshShaderPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMeshShaderPropertiesNV
andVkPhysicalDeviceMeshShaderPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultiDrawFeaturesEXT
andVkPhysicalDeviceMultiDrawFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultiDrawPropertiesEXT
andVkPhysicalDeviceMultiDrawPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXT
andVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewFeatures
andVkPhysicalDeviceMultiviewFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX
andVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM
andVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOM
andVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMultiviewProperties
andVkPhysicalDeviceMultiviewProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceMutableDescriptorTypeFeaturesEXT
andVkPhysicalDeviceMutableDescriptorTypeFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceNestedCommandBufferFeaturesEXT
andVkPhysicalDeviceNestedCommandBufferFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceNestedCommandBufferPropertiesEXT
andVkPhysicalDeviceNestedCommandBufferPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXT
andVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceOpacityMicromapFeaturesEXT
andVkPhysicalDeviceOpacityMicromapFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceOpacityMicromapPropertiesEXT
andVkPhysicalDeviceOpacityMicromapPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceOpticalFlowFeaturesNV
andVkPhysicalDeviceOpticalFlowFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceOpticalFlowPropertiesNV
andVkPhysicalDeviceOpticalFlowPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT
andVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePartitionedAccelerationStructureFeaturesNV
andVkPhysicalDevicePartitionedAccelerationStructureFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePartitionedAccelerationStructurePropertiesNV
andVkPhysicalDevicePartitionedAccelerationStructurePropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePCIBusInfoPropertiesEXT
andVkPhysicalDevicePCIBusInfoPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePerformanceQueryFeaturesKHR
andVkPhysicalDevicePerformanceQueryFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePerformanceQueryPropertiesKHR
andVkPhysicalDevicePerformanceQueryPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePerStageDescriptorSetFeaturesNV
andVkPhysicalDevicePerStageDescriptorSetFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineBinaryFeaturesKHR
andVkPhysicalDevicePipelineBinaryFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineBinaryPropertiesKHR
andVkPhysicalDevicePipelineBinaryPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineCreationCacheControlFeatures
andVkPhysicalDevicePipelineCreationCacheControlFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR
andVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT
andVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineOpacityMicromapFeaturesARM
andVkPhysicalDevicePipelineOpacityMicromapFeaturesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelinePropertiesFeaturesEXT
andVkPhysicalDevicePipelinePropertiesFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineProtectedAccessFeatures
andVkPhysicalDevicePipelineProtectedAccessFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineRobustnessFeatures
andVkPhysicalDevicePipelineRobustnessFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePipelineRobustnessProperties
andVkPhysicalDevicePipelineRobustnessProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePointClippingProperties
andVkPhysicalDevicePointClippingProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePortabilitySubsetFeaturesKHR
andVkPhysicalDevicePortabilitySubsetFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePortabilitySubsetPropertiesKHR
andVkPhysicalDevicePortabilitySubsetPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePresentBarrierFeaturesNV
andVkPhysicalDevicePresentBarrierFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePresentIdFeaturesKHR
andVkPhysicalDevicePresentIdFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePresentMeteringFeaturesNV
andVkPhysicalDevicePresentMeteringFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXT
andVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePresentWaitFeaturesKHR
andVkPhysicalDevicePresentWaitFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT
andVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT
andVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePrivateDataFeatures
andVkPhysicalDevicePrivateDataFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceProperties
andVkPhysicalDeviceProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceProperties2
andVkPhysicalDeviceProperties2.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceProtectedMemoryFeatures
andVkPhysicalDeviceProtectedMemoryFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceProtectedMemoryProperties
andVkPhysicalDeviceProtectedMemoryProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceProvokingVertexFeaturesEXT
andVkPhysicalDeviceProvokingVertexFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceProvokingVertexPropertiesEXT
andVkPhysicalDeviceProvokingVertexPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDevicePushDescriptorProperties
andVkPhysicalDevicePushDescriptorProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT
andVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRawAccessChainsFeaturesNV
andVkPhysicalDeviceRawAccessChainsFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayQueryFeaturesKHR
andVkPhysicalDeviceRayQueryFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingInvocationReorderFeaturesNV
andVkPhysicalDeviceRayTracingInvocationReorderFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingInvocationReorderPropertiesNV
andVkPhysicalDeviceRayTracingInvocationReorderPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNV
andVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingMaintenance1FeaturesKHR
andVkPhysicalDeviceRayTracingMaintenance1FeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingMotionBlurFeaturesNV
andVkPhysicalDeviceRayTracingMotionBlurFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPipelineFeaturesKHR
andVkPhysicalDeviceRayTracingPipelineFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPipelinePropertiesKHR
andVkPhysicalDeviceRayTracingPipelinePropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPositionFetchFeaturesKHR
andVkPhysicalDeviceRayTracingPositionFetchFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingPropertiesNV
andVkPhysicalDeviceRayTracingPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRayTracingValidationFeaturesNV
andVkPhysicalDeviceRayTracingValidationFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMG
andVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMG.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRenderPassStripedFeaturesARM
andVkPhysicalDeviceRenderPassStripedFeaturesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRenderPassStripedPropertiesARM
andVkPhysicalDeviceRenderPassStripedPropertiesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRepresentativeFragmentTestFeaturesNV
andVkPhysicalDeviceRepresentativeFragmentTestFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRGBA10X6FormatsFeaturesEXT
andVkPhysicalDeviceRGBA10X6FormatsFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRobustness2FeaturesEXT
andVkPhysicalDeviceRobustness2FeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceRobustness2PropertiesEXT
andVkPhysicalDeviceRobustness2PropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSampleLocationsPropertiesEXT
andVkPhysicalDeviceSampleLocationsPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSamplerFilterMinmaxProperties
andVkPhysicalDeviceSamplerFilterMinmaxProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSamplerYcbcrConversionFeatures
andVkPhysicalDeviceSamplerYcbcrConversionFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceScalarBlockLayoutFeatures
andVkPhysicalDeviceScalarBlockLayoutFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSchedulingControlsFeaturesARM
andVkPhysicalDeviceSchedulingControlsFeaturesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSchedulingControlsPropertiesARM
andVkPhysicalDeviceSchedulingControlsPropertiesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSeparateDepthStencilLayoutsFeatures
andVkPhysicalDeviceSeparateDepthStencilLayoutsFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNV
andVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
andVkPhysicalDeviceShaderAtomicFloat2FeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicFloatFeaturesEXT
andVkPhysicalDeviceShaderAtomicFloatFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderAtomicInt64Features
andVkPhysicalDeviceShaderAtomicInt64Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderBfloat16FeaturesKHR
andVkPhysicalDeviceShaderBfloat16FeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderClockFeaturesKHR
andVkPhysicalDeviceShaderClockFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCoreBuiltinsFeaturesARM
andVkPhysicalDeviceShaderCoreBuiltinsFeaturesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCoreBuiltinsPropertiesARM
andVkPhysicalDeviceShaderCoreBuiltinsPropertiesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCoreProperties2AMD
andVkPhysicalDeviceShaderCoreProperties2AMD.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCorePropertiesAMD
andVkPhysicalDeviceShaderCorePropertiesAMD.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderCorePropertiesARM
andVkPhysicalDeviceShaderCorePropertiesARM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderDemoteToHelperInvocationFeatures
andVkPhysicalDeviceShaderDemoteToHelperInvocationFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderDrawParametersFeatures
andVkPhysicalDeviceShaderDrawParametersFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD
andVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderEnqueueFeaturesAMDX
andVkPhysicalDeviceShaderEnqueueFeaturesAMDX.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderEnqueuePropertiesAMDX
andVkPhysicalDeviceShaderEnqueuePropertiesAMDX.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderExpectAssumeFeatures
andVkPhysicalDeviceShaderExpectAssumeFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderFloat16Int8Features
andVkPhysicalDeviceShaderFloat16Int8Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderFloatControls2Features
andVkPhysicalDeviceShaderFloatControls2Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT
andVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderImageFootprintFeaturesNV
andVkPhysicalDeviceShaderImageFootprintFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderIntegerDotProductFeatures
andVkPhysicalDeviceShaderIntegerDotProductFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderIntegerDotProductProperties
andVkPhysicalDeviceShaderIntegerDotProductProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL
andVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHR
andVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderModuleIdentifierFeaturesEXT
andVkPhysicalDeviceShaderModuleIdentifierFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderModuleIdentifierPropertiesEXT
andVkPhysicalDeviceShaderModuleIdentifierPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderObjectFeaturesEXT
andVkPhysicalDeviceShaderObjectFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderObjectPropertiesEXT
andVkPhysicalDeviceShaderObjectPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderQuadControlFeaturesKHR
andVkPhysicalDeviceShaderQuadControlFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHR
andVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXT
andVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSMBuiltinsFeaturesNV
andVkPhysicalDeviceShaderSMBuiltinsFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSMBuiltinsPropertiesNV
andVkPhysicalDeviceShaderSMBuiltinsPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSubgroupExtendedTypesFeatures
andVkPhysicalDeviceShaderSubgroupExtendedTypesFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSubgroupRotateFeatures
andVkPhysicalDeviceShaderSubgroupRotateFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR
andVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderTerminateInvocationFeatures
andVkPhysicalDeviceShaderTerminateInvocationFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderTileImageFeaturesEXT
andVkPhysicalDeviceShaderTileImageFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShaderTileImagePropertiesEXT
andVkPhysicalDeviceShaderTileImagePropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShadingRateImageFeaturesNV
andVkPhysicalDeviceShadingRateImageFeaturesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceShadingRateImagePropertiesNV
andVkPhysicalDeviceShadingRateImagePropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSparseImageFormatInfo2
andVkPhysicalDeviceSparseImageFormatInfo2.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSparseProperties
andVkPhysicalDeviceSparseProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSubgroupProperties
andVkPhysicalDeviceSubgroupProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSubgroupSizeControlFeatures
andVkPhysicalDeviceSubgroupSizeControlFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSubgroupSizeControlProperties
andVkPhysicalDeviceSubgroupSizeControlProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXT
andVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSubpassShadingFeaturesHUAWEI
andVkPhysicalDeviceSubpassShadingFeaturesHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSubpassShadingPropertiesHUAWEI
andVkPhysicalDeviceSubpassShadingPropertiesHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSurfaceInfo2KHR
andVkPhysicalDeviceSurfaceInfo2KHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSwapchainMaintenance1FeaturesEXT
andVkPhysicalDeviceSwapchainMaintenance1FeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceSynchronization2Features
andVkPhysicalDeviceSynchronization2Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTexelBufferAlignmentFeaturesEXT
andVkPhysicalDeviceTexelBufferAlignmentFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTexelBufferAlignmentProperties
andVkPhysicalDeviceTexelBufferAlignmentProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTextureCompressionASTCHDRFeatures
andVkPhysicalDeviceTextureCompressionASTCHDRFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTileMemoryHeapFeaturesQCOM
andVkPhysicalDeviceTileMemoryHeapFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTileMemoryHeapPropertiesQCOM
andVkPhysicalDeviceTileMemoryHeapPropertiesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTilePropertiesFeaturesQCOM
andVkPhysicalDeviceTilePropertiesFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTileShadingFeaturesQCOM
andVkPhysicalDeviceTileShadingFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTileShadingPropertiesQCOM
andVkPhysicalDeviceTileShadingPropertiesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTimelineSemaphoreFeatures
andVkPhysicalDeviceTimelineSemaphoreFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTimelineSemaphoreProperties
andVkPhysicalDeviceTimelineSemaphoreProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceToolProperties
andVkPhysicalDeviceToolProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTransformFeedbackFeaturesEXT
andVkPhysicalDeviceTransformFeedbackFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceTransformFeedbackPropertiesEXT
andVkPhysicalDeviceTransformFeedbackPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceUniformBufferStandardLayoutFeatures
andVkPhysicalDeviceUniformBufferStandardLayoutFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVariablePointersFeatures
andVkPhysicalDeviceVariablePointersFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeDivisorFeatures
andVkPhysicalDeviceVertexAttributeDivisorFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeDivisorProperties
andVkPhysicalDeviceVertexAttributeDivisorProperties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeDivisorPropertiesEXT
andVkPhysicalDeviceVertexAttributeDivisorPropertiesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXT
andVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVertexInputDynamicStateFeaturesEXT
andVkPhysicalDeviceVertexInputDynamicStateFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVideoEncodeAV1FeaturesKHR
andVkPhysicalDeviceVideoEncodeAV1FeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVideoEncodeQualityLevelInfoKHR
andVkPhysicalDeviceVideoEncodeQualityLevelInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHR
andVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVideoFormatInfoKHR
andVkPhysicalDeviceVideoFormatInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVideoMaintenance1FeaturesKHR
andVkPhysicalDeviceVideoMaintenance1FeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVideoMaintenance2FeaturesKHR
andVkPhysicalDeviceVideoMaintenance2FeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan11Features
andVkPhysicalDeviceVulkan11Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan11Properties
andVkPhysicalDeviceVulkan11Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan12Features
andVkPhysicalDeviceVulkan12Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan12Properties
andVkPhysicalDeviceVulkan12Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan13Features
andVkPhysicalDeviceVulkan13Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan13Properties
andVkPhysicalDeviceVulkan13Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan14Features
andVkPhysicalDeviceVulkan14Features.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkan14Properties
andVkPhysicalDeviceVulkan14Properties.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceVulkanMemoryModelFeatures
andVkPhysicalDeviceVulkanMemoryModelFeatures.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR
andVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT
andVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceYcbcrDegammaFeaturesQCOM
andVkPhysicalDeviceYcbcrDegammaFeaturesQCOM.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceYcbcrImageArraysFeaturesEXT
andVkPhysicalDeviceYcbcrImageArraysFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures
andVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures.Ptr
operations.Auxiliary interface for unifyingVkPipelineBinaryCreateInfoKHR
andVkPipelineBinaryCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineBinaryDataInfoKHR
andVkPipelineBinaryDataInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineBinaryDataKHR
andVkPipelineBinaryDataKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineBinaryHandlesInfoKHR
andVkPipelineBinaryHandlesInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineBinaryInfoKHR
andVkPipelineBinaryInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineBinaryKeyKHR
andVkPipelineBinaryKeyKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineBinaryKeysAndDataKHR
andVkPipelineBinaryKeysAndDataKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineCacheCreateInfo
andVkPipelineCacheCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineCacheHeaderVersionOne
andVkPipelineCacheHeaderVersionOne.Ptr
operations.Auxiliary interface for unifyingVkPipelineColorBlendAdvancedStateCreateInfoEXT
andVkPipelineColorBlendAdvancedStateCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineColorBlendAttachmentState
andVkPipelineColorBlendAttachmentState.Ptr
operations.Auxiliary interface for unifyingVkPipelineColorBlendStateCreateInfo
andVkPipelineColorBlendStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineColorWriteCreateInfoEXT
andVkPipelineColorWriteCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineCompilerControlCreateInfoAMD
andVkPipelineCompilerControlCreateInfoAMD.Ptr
operations.Auxiliary interface for unifyingVkPipelineCoverageModulationStateCreateInfoNV
andVkPipelineCoverageModulationStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineCoverageReductionStateCreateInfoNV
andVkPipelineCoverageReductionStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineCoverageToColorStateCreateInfoNV
andVkPipelineCoverageToColorStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineCreateFlags2CreateInfo
andVkPipelineCreateFlags2CreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineCreateInfoKHR
andVkPipelineCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineCreationFeedback
andVkPipelineCreationFeedback.Ptr
operations.Auxiliary interface for unifyingVkPipelineCreationFeedbackCreateInfo
andVkPipelineCreationFeedbackCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineDepthStencilStateCreateInfo
andVkPipelineDepthStencilStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineDiscardRectangleStateCreateInfoEXT
andVkPipelineDiscardRectangleStateCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineDynamicStateCreateInfo
andVkPipelineDynamicStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineExecutableInfoKHR
andVkPipelineExecutableInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineExecutableInternalRepresentationKHR
andVkPipelineExecutableInternalRepresentationKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineExecutablePropertiesKHR
andVkPipelineExecutablePropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineExecutableStatisticKHR
andVkPipelineExecutableStatisticKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineExecutableStatisticValueKHR
andVkPipelineExecutableStatisticValueKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineFragmentShadingRateEnumStateCreateInfoNV
andVkPipelineFragmentShadingRateEnumStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineFragmentShadingRateStateCreateInfoKHR
andVkPipelineFragmentShadingRateStateCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineIndirectDeviceAddressInfoNV
andVkPipelineIndirectDeviceAddressInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineInfoKHR
andVkPipelineInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineInputAssemblyStateCreateInfo
andVkPipelineInputAssemblyStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineLayoutCreateInfo
andVkPipelineLayoutCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineLibraryCreateInfoKHR
andVkPipelineLibraryCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPipelineMultisampleStateCreateInfo
andVkPipelineMultisampleStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelinePropertiesIdentifierEXT
andVkPipelinePropertiesIdentifierEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineRasterizationConservativeStateCreateInfoEXT
andVkPipelineRasterizationConservativeStateCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineRasterizationDepthClipStateCreateInfoEXT
andVkPipelineRasterizationDepthClipStateCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineRasterizationLineStateCreateInfo
andVkPipelineRasterizationLineStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineRasterizationProvokingVertexStateCreateInfoEXT
andVkPipelineRasterizationProvokingVertexStateCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineRasterizationStateCreateInfo
andVkPipelineRasterizationStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineRasterizationStateRasterizationOrderAMD
andVkPipelineRasterizationStateRasterizationOrderAMD.Ptr
operations.Auxiliary interface for unifyingVkPipelineRasterizationStateStreamCreateInfoEXT
andVkPipelineRasterizationStateStreamCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineRenderingCreateInfo
andVkPipelineRenderingCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineRepresentativeFragmentTestStateCreateInfoNV
andVkPipelineRepresentativeFragmentTestStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineRobustnessCreateInfo
andVkPipelineRobustnessCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineSampleLocationsStateCreateInfoEXT
andVkPipelineSampleLocationsStateCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineShaderStageCreateInfo
andVkPipelineShaderStageCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineShaderStageModuleIdentifierCreateInfoEXT
andVkPipelineShaderStageModuleIdentifierCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineShaderStageNodeCreateInfoAMDX
andVkPipelineShaderStageNodeCreateInfoAMDX.Ptr
operations.Auxiliary interface for unifyingVkPipelineShaderStageRequiredSubgroupSizeCreateInfo
andVkPipelineShaderStageRequiredSubgroupSizeCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineTessellationDomainOriginStateCreateInfo
andVkPipelineTessellationDomainOriginStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineTessellationStateCreateInfo
andVkPipelineTessellationStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineVertexInputDivisorStateCreateInfo
andVkPipelineVertexInputDivisorStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineVertexInputStateCreateInfo
andVkPipelineVertexInputStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportCoarseSampleOrderStateCreateInfoNV
andVkPipelineViewportCoarseSampleOrderStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportDepthClampControlCreateInfoEXT
andVkPipelineViewportDepthClampControlCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportDepthClipControlCreateInfoEXT
andVkPipelineViewportDepthClipControlCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportExclusiveScissorStateCreateInfoNV
andVkPipelineViewportExclusiveScissorStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportShadingRateImageStateCreateInfoNV
andVkPipelineViewportShadingRateImageStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportStateCreateInfo
andVkPipelineViewportStateCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportSwizzleStateCreateInfoNV
andVkPipelineViewportSwizzleStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPipelineViewportWScalingStateCreateInfoNV
andVkPipelineViewportWScalingStateCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkPresentFrameTokenGGP
andVkPresentFrameTokenGGP.Ptr
operations.Auxiliary interface for unifyingVkPresentIdKHR
andVkPresentIdKHR.Ptr
operations.Auxiliary interface for unifyingVkPresentInfoKHR
andVkPresentInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkPresentRegionKHR
andVkPresentRegionKHR.Ptr
operations.Auxiliary interface for unifyingVkPresentRegionsKHR
andVkPresentRegionsKHR.Ptr
operations.Auxiliary interface for unifyingVkPresentTimeGOOGLE
andVkPresentTimeGOOGLE.Ptr
operations.Auxiliary interface for unifyingVkPresentTimesInfoGOOGLE
andVkPresentTimesInfoGOOGLE.Ptr
operations.Auxiliary interface for unifyingVkPrivateDataSlotCreateInfo
andVkPrivateDataSlotCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkProtectedSubmitInfo
andVkProtectedSubmitInfo.Ptr
operations.Auxiliary interface for unifyingVkPushConstantRange
andVkPushConstantRange.Ptr
operations.Auxiliary interface for unifyingVkPushConstantsInfo
andVkPushConstantsInfo.Ptr
operations.Auxiliary interface for unifyingVkPushDescriptorSetInfo
andVkPushDescriptorSetInfo.Ptr
operations.Auxiliary interface for unifyingVkPushDescriptorSetWithTemplateInfo
andVkPushDescriptorSetWithTemplateInfo.Ptr
operations.Auxiliary interface for unifyingVkQueryLowLatencySupportNV
andVkQueryLowLatencySupportNV.Ptr
operations.Auxiliary interface for unifyingVkQueryPoolCreateInfo
andVkQueryPoolCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkQueryPoolPerformanceCreateInfoKHR
andVkQueryPoolPerformanceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkQueryPoolPerformanceQueryCreateInfoINTEL
andVkQueryPoolPerformanceQueryCreateInfoINTEL.Ptr
operations.Auxiliary interface for unifyingVkQueryPoolVideoEncodeFeedbackCreateInfoKHR
andVkQueryPoolVideoEncodeFeedbackCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkQueueFamilyCheckpointProperties2NV
andVkQueueFamilyCheckpointProperties2NV.Ptr
operations.Auxiliary interface for unifyingVkQueueFamilyCheckpointPropertiesNV
andVkQueueFamilyCheckpointPropertiesNV.Ptr
operations.Auxiliary interface for unifyingVkQueueFamilyGlobalPriorityProperties
andVkQueueFamilyGlobalPriorityProperties.Ptr
operations.Auxiliary interface for unifyingVkQueueFamilyProperties
andVkQueueFamilyProperties.Ptr
operations.Auxiliary interface for unifyingVkQueueFamilyProperties2
andVkQueueFamilyProperties2.Ptr
operations.Auxiliary interface for unifyingVkQueueFamilyQueryResultStatusPropertiesKHR
andVkQueueFamilyQueryResultStatusPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkQueueFamilyVideoPropertiesKHR
andVkQueueFamilyVideoPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkRayTracingPipelineClusterAccelerationStructureCreateInfoNV
andVkRayTracingPipelineClusterAccelerationStructureCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkRayTracingPipelineCreateInfoKHR
andVkRayTracingPipelineCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkRayTracingPipelineCreateInfoNV
andVkRayTracingPipelineCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkRayTracingPipelineInterfaceCreateInfoKHR
andVkRayTracingPipelineInterfaceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkRayTracingShaderGroupCreateInfoKHR
andVkRayTracingShaderGroupCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkRayTracingShaderGroupCreateInfoNV
andVkRayTracingShaderGroupCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkRect2D
andVkRect2D.Ptr
operations.Auxiliary interface for unifyingVkRectLayerKHR
andVkRectLayerKHR.Ptr
operations.Auxiliary interface for unifyingVkRefreshCycleDurationGOOGLE
andVkRefreshCycleDurationGOOGLE.Ptr
operations.Auxiliary interface for unifyingVkRefreshObjectKHR
andVkRefreshObjectKHR.Ptr
operations.Auxiliary interface for unifyingVkRefreshObjectListKHR
andVkRefreshObjectListKHR.Ptr
operations.Auxiliary interface for unifyingVkReleaseCapturedPipelineDataInfoKHR
andVkReleaseCapturedPipelineDataInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkReleaseSwapchainImagesInfoEXT
andVkReleaseSwapchainImagesInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderingAreaInfo
andVkRenderingAreaInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderingAttachmentInfo
andVkRenderingAttachmentInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderingAttachmentLocationInfo
andVkRenderingAttachmentLocationInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderingEndInfoEXT
andVkRenderingEndInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderingFragmentDensityMapAttachmentInfoEXT
andVkRenderingFragmentDensityMapAttachmentInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderingFragmentShadingRateAttachmentInfoKHR
andVkRenderingFragmentShadingRateAttachmentInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkRenderingInfo
andVkRenderingInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderingInputAttachmentIndexInfo
andVkRenderingInputAttachmentIndexInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderPassAttachmentBeginInfo
andVkRenderPassAttachmentBeginInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderPassBeginInfo
andVkRenderPassBeginInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderPassCreateInfo
andVkRenderPassCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderPassCreateInfo2
andVkRenderPassCreateInfo2.Ptr
operations.Auxiliary interface for unifyingVkRenderPassCreationControlEXT
andVkRenderPassCreationControlEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassCreationFeedbackCreateInfoEXT
andVkRenderPassCreationFeedbackCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassCreationFeedbackInfoEXT
andVkRenderPassCreationFeedbackInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassFragmentDensityMapCreateInfoEXT
andVkRenderPassFragmentDensityMapCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassFragmentDensityMapOffsetEndInfoEXT
andVkRenderPassFragmentDensityMapOffsetEndInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassInputAttachmentAspectCreateInfo
andVkRenderPassInputAttachmentAspectCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderPassMultiviewCreateInfo
andVkRenderPassMultiviewCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkRenderPassSampleLocationsBeginInfoEXT
andVkRenderPassSampleLocationsBeginInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassStripeBeginInfoARM
andVkRenderPassStripeBeginInfoARM.Ptr
operations.Auxiliary interface for unifyingVkRenderPassStripeInfoARM
andVkRenderPassStripeInfoARM.Ptr
operations.Auxiliary interface for unifyingVkRenderPassStripeSubmitInfoARM
andVkRenderPassStripeSubmitInfoARM.Ptr
operations.Auxiliary interface for unifyingVkRenderPassSubpassFeedbackCreateInfoEXT
andVkRenderPassSubpassFeedbackCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassSubpassFeedbackInfoEXT
andVkRenderPassSubpassFeedbackInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkRenderPassTileShadingCreateInfoQCOM
andVkRenderPassTileShadingCreateInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkRenderPassTransformBeginInfoQCOM
andVkRenderPassTransformBeginInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkResolveImageInfo2
andVkResolveImageInfo2.Ptr
operations.Auxiliary interface for unifyingVkSampleLocationEXT
andVkSampleLocationEXT.Ptr
operations.Auxiliary interface for unifyingVkSampleLocationsInfoEXT
andVkSampleLocationsInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSamplerBlockMatchWindowCreateInfoQCOM
andVkSamplerBlockMatchWindowCreateInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkSamplerBorderColorComponentMappingCreateInfoEXT
andVkSamplerBorderColorComponentMappingCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSamplerCaptureDescriptorDataInfoEXT
andVkSamplerCaptureDescriptorDataInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSamplerCreateInfo
andVkSamplerCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkSamplerCubicWeightsCreateInfoQCOM
andVkSamplerCubicWeightsCreateInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkSamplerCustomBorderColorCreateInfoEXT
andVkSamplerCustomBorderColorCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSamplerReductionModeCreateInfo
andVkSamplerReductionModeCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkSamplerYcbcrConversionCreateInfo
andVkSamplerYcbcrConversionCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkSamplerYcbcrConversionImageFormatProperties
andVkSamplerYcbcrConversionImageFormatProperties.Ptr
operations.Auxiliary interface for unifyingVkSamplerYcbcrConversionInfo
andVkSamplerYcbcrConversionInfo.Ptr
operations.Auxiliary interface for unifyingVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM
andVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkSciSyncAttributesInfoNV
andVkSciSyncAttributesInfoNV.Ptr
operations.Auxiliary interface for unifyingVkScreenBufferFormatPropertiesQNX
andVkScreenBufferFormatPropertiesQNX.Ptr
operations.Auxiliary interface for unifyingVkScreenBufferPropertiesQNX
andVkScreenBufferPropertiesQNX.Ptr
operations.Auxiliary interface for unifyingVkScreenSurfaceCreateInfoQNX
andVkScreenSurfaceCreateInfoQNX.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreCreateInfo
andVkSemaphoreCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreGetFdInfoKHR
andVkSemaphoreGetFdInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreGetSciSyncInfoNV
andVkSemaphoreGetSciSyncInfoNV.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreGetWin32HandleInfoKHR
andVkSemaphoreGetWin32HandleInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreGetZirconHandleInfoFUCHSIA
andVkSemaphoreGetZirconHandleInfoFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreSciSyncCreateInfoNV
andVkSemaphoreSciSyncCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreSciSyncPoolCreateInfoNV
andVkSemaphoreSciSyncPoolCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreSignalInfo
andVkSemaphoreSignalInfo.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreSubmitInfo
andVkSemaphoreSubmitInfo.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreTypeCreateInfo
andVkSemaphoreTypeCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkSemaphoreWaitInfo
andVkSemaphoreWaitInfo.Ptr
operations.Auxiliary interface for unifyingVkSetDescriptorBufferOffsetsInfoEXT
andVkSetDescriptorBufferOffsetsInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSetLatencyMarkerInfoNV
andVkSetLatencyMarkerInfoNV.Ptr
operations.Auxiliary interface for unifyingVkSetPresentConfigNV
andVkSetPresentConfigNV.Ptr
operations.Auxiliary interface for unifyingVkSetStateFlagsIndirectCommandNV
andVkSetStateFlagsIndirectCommandNV.Ptr
operations.Auxiliary interface for unifyingVkShaderCreateInfoEXT
andVkShaderCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkShaderModuleCreateInfo
andVkShaderModuleCreateInfo.Ptr
operations.Auxiliary interface for unifyingVkShaderModuleIdentifierEXT
andVkShaderModuleIdentifierEXT.Ptr
operations.Auxiliary interface for unifyingVkShaderModuleValidationCacheCreateInfoEXT
andVkShaderModuleValidationCacheCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkShaderResourceUsageAMD
andVkShaderResourceUsageAMD.Ptr
operations.Auxiliary interface for unifyingVkShaderStatisticsInfoAMD
andVkShaderStatisticsInfoAMD.Ptr
operations.Auxiliary interface for unifyingVkShadingRatePaletteNV
andVkShadingRatePaletteNV.Ptr
operations.Auxiliary interface for unifyingVkSharedPresentSurfaceCapabilitiesKHR
andVkSharedPresentSurfaceCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkSparseBufferMemoryBindInfo
andVkSparseBufferMemoryBindInfo.Ptr
operations.Auxiliary interface for unifyingVkSparseImageFormatProperties
andVkSparseImageFormatProperties.Ptr
operations.Auxiliary interface for unifyingVkSparseImageFormatProperties2
andVkSparseImageFormatProperties2.Ptr
operations.Auxiliary interface for unifyingVkSparseImageMemoryBind
andVkSparseImageMemoryBind.Ptr
operations.Auxiliary interface for unifyingVkSparseImageMemoryBindInfo
andVkSparseImageMemoryBindInfo.Ptr
operations.Auxiliary interface for unifyingVkSparseImageMemoryRequirements
andVkSparseImageMemoryRequirements.Ptr
operations.Auxiliary interface for unifyingVkSparseImageMemoryRequirements2
andVkSparseImageMemoryRequirements2.Ptr
operations.Auxiliary interface for unifyingVkSparseImageOpaqueMemoryBindInfo
andVkSparseImageOpaqueMemoryBindInfo.Ptr
operations.Auxiliary interface for unifyingVkSparseMemoryBind
andVkSparseMemoryBind.Ptr
operations.Auxiliary interface for unifyingVkSpecializationInfo
andVkSpecializationInfo.Ptr
operations.Auxiliary interface for unifyingVkSpecializationMapEntry
andVkSpecializationMapEntry.Ptr
operations.Auxiliary interface for unifyingVkSRTDataNV
andVkSRTDataNV.Ptr
operations.Auxiliary interface for unifyingVkStencilOpState
andVkStencilOpState.Ptr
operations.Auxiliary interface for unifyingVkStreamDescriptorSurfaceCreateInfoGGP
andVkStreamDescriptorSurfaceCreateInfoGGP.Ptr
operations.Auxiliary interface for unifyingVkStridedDeviceAddressNV
andVkStridedDeviceAddressNV.Ptr
operations.Auxiliary interface for unifyingVkStridedDeviceAddressRegionKHR
andVkStridedDeviceAddressRegionKHR.Ptr
operations.Auxiliary interface for unifyingVkSubmitInfo
andVkSubmitInfo.Ptr
operations.Auxiliary interface for unifyingVkSubmitInfo2
andVkSubmitInfo2.Ptr
operations.Auxiliary interface for unifyingVkSubpassBeginInfo
andVkSubpassBeginInfo.Ptr
operations.Auxiliary interface for unifyingVkSubpassDependency
andVkSubpassDependency.Ptr
operations.Auxiliary interface for unifyingVkSubpassDependency2
andVkSubpassDependency2.Ptr
operations.Auxiliary interface for unifyingVkSubpassDescription
andVkSubpassDescription.Ptr
operations.Auxiliary interface for unifyingVkSubpassDescription2
andVkSubpassDescription2.Ptr
operations.Auxiliary interface for unifyingVkSubpassDescriptionDepthStencilResolve
andVkSubpassDescriptionDepthStencilResolve.Ptr
operations.Auxiliary interface for unifyingVkSubpassEndInfo
andVkSubpassEndInfo.Ptr
operations.Auxiliary interface for unifyingVkSubpassResolvePerformanceQueryEXT
andVkSubpassResolvePerformanceQueryEXT.Ptr
operations.Auxiliary interface for unifyingVkSubpassSampleLocationsEXT
andVkSubpassSampleLocationsEXT.Ptr
operations.Auxiliary interface for unifyingVkSubpassShadingPipelineCreateInfoHUAWEI
andVkSubpassShadingPipelineCreateInfoHUAWEI.Ptr
operations.Auxiliary interface for unifyingVkSubresourceHostMemcpySize
andVkSubresourceHostMemcpySize.Ptr
operations.Auxiliary interface for unifyingVkSubresourceLayout
andVkSubresourceLayout.Ptr
operations.Auxiliary interface for unifyingVkSubresourceLayout2
andVkSubresourceLayout2.Ptr
operations.Auxiliary interface for unifyingVkSurfaceCapabilities2EXT
andVkSurfaceCapabilities2EXT.Ptr
operations.Auxiliary interface for unifyingVkSurfaceCapabilities2KHR
andVkSurfaceCapabilities2KHR.Ptr
operations.Auxiliary interface for unifyingVkSurfaceCapabilitiesFullScreenExclusiveEXT
andVkSurfaceCapabilitiesFullScreenExclusiveEXT.Ptr
operations.Auxiliary interface for unifyingVkSurfaceCapabilitiesKHR
andVkSurfaceCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkSurfaceCapabilitiesPresentBarrierNV
andVkSurfaceCapabilitiesPresentBarrierNV.Ptr
operations.Auxiliary interface for unifyingVkSurfaceFormat2KHR
andVkSurfaceFormat2KHR.Ptr
operations.Auxiliary interface for unifyingVkSurfaceFormatKHR
andVkSurfaceFormatKHR.Ptr
operations.Auxiliary interface for unifyingVkSurfaceFullScreenExclusiveInfoEXT
andVkSurfaceFullScreenExclusiveInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSurfaceFullScreenExclusiveWin32InfoEXT
andVkSurfaceFullScreenExclusiveWin32InfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSurfacePresentModeCompatibilityEXT
andVkSurfacePresentModeCompatibilityEXT.Ptr
operations.Auxiliary interface for unifyingVkSurfacePresentModeEXT
andVkSurfacePresentModeEXT.Ptr
operations.Auxiliary interface for unifyingVkSurfacePresentScalingCapabilitiesEXT
andVkSurfacePresentScalingCapabilitiesEXT.Ptr
operations.Auxiliary interface for unifyingVkSurfaceProtectedCapabilitiesKHR
andVkSurfaceProtectedCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkSwapchainCounterCreateInfoEXT
andVkSwapchainCounterCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSwapchainCreateInfoKHR
andVkSwapchainCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkSwapchainDisplayNativeHdrCreateInfoAMD
andVkSwapchainDisplayNativeHdrCreateInfoAMD.Ptr
operations.Auxiliary interface for unifyingVkSwapchainLatencyCreateInfoNV
andVkSwapchainLatencyCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkSwapchainPresentBarrierCreateInfoNV
andVkSwapchainPresentBarrierCreateInfoNV.Ptr
operations.Auxiliary interface for unifyingVkSwapchainPresentFenceInfoEXT
andVkSwapchainPresentFenceInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSwapchainPresentModeInfoEXT
andVkSwapchainPresentModeInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSwapchainPresentModesCreateInfoEXT
andVkSwapchainPresentModesCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSwapchainPresentScalingCreateInfoEXT
andVkSwapchainPresentScalingCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkSysmemColorSpaceFUCHSIA
andVkSysmemColorSpaceFUCHSIA.Ptr
operations.Auxiliary interface for unifyingVkTextureLODGatherFormatPropertiesAMD
andVkTextureLODGatherFormatPropertiesAMD.Ptr
operations.Auxiliary interface for unifyingVkTileMemoryBindInfoQCOM
andVkTileMemoryBindInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkTileMemoryRequirementsQCOM
andVkTileMemoryRequirementsQCOM.Ptr
operations.Auxiliary interface for unifyingVkTileMemorySizeInfoQCOM
andVkTileMemorySizeInfoQCOM.Ptr
operations.Auxiliary interface for unifyingVkTilePropertiesQCOM
andVkTilePropertiesQCOM.Ptr
operations.Auxiliary interface for unifyingVkTimelineSemaphoreSubmitInfo
andVkTimelineSemaphoreSubmitInfo.Ptr
operations.Auxiliary interface for unifyingVkTraceRaysIndirectCommand2KHR
andVkTraceRaysIndirectCommand2KHR.Ptr
operations.Auxiliary interface for unifyingVkTraceRaysIndirectCommandKHR
andVkTraceRaysIndirectCommandKHR.Ptr
operations.Auxiliary interface for unifyingVkTransformMatrixKHR
andVkTransformMatrixKHR.Ptr
operations.Auxiliary interface for unifyingVkValidationCacheCreateInfoEXT
andVkValidationCacheCreateInfoEXT.Ptr
operations.Auxiliary interface for unifyingVkValidationFeaturesEXT
andVkValidationFeaturesEXT.Ptr
operations.Auxiliary interface for unifyingVkValidationFlagsEXT
andVkValidationFlagsEXT.Ptr
operations.Auxiliary interface for unifyingVkVertexInputAttributeDescription
andVkVertexInputAttributeDescription.Ptr
operations.Auxiliary interface for unifyingVkVertexInputAttributeDescription2EXT
andVkVertexInputAttributeDescription2EXT.Ptr
operations.Auxiliary interface for unifyingVkVertexInputBindingDescription
andVkVertexInputBindingDescription.Ptr
operations.Auxiliary interface for unifyingVkVertexInputBindingDescription2EXT
andVkVertexInputBindingDescription2EXT.Ptr
operations.Auxiliary interface for unifyingVkVertexInputBindingDivisorDescription
andVkVertexInputBindingDivisorDescription.Ptr
operations.Auxiliary interface for unifyingVkVideoBeginCodingInfoKHR
andVkVideoBeginCodingInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoCapabilitiesKHR
andVkVideoCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoCodingControlInfoKHR
andVkVideoCodingControlInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeAV1CapabilitiesKHR
andVkVideoDecodeAV1CapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeAV1DpbSlotInfoKHR
andVkVideoDecodeAV1DpbSlotInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeAV1InlineSessionParametersInfoKHR
andVkVideoDecodeAV1InlineSessionParametersInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeAV1PictureInfoKHR
andVkVideoDecodeAV1PictureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeAV1ProfileInfoKHR
andVkVideoDecodeAV1ProfileInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeAV1SessionParametersCreateInfoKHR
andVkVideoDecodeAV1SessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeCapabilitiesKHR
andVkVideoDecodeCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH264CapabilitiesKHR
andVkVideoDecodeH264CapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH264DpbSlotInfoKHR
andVkVideoDecodeH264DpbSlotInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH264InlineSessionParametersInfoKHR
andVkVideoDecodeH264InlineSessionParametersInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH264PictureInfoKHR
andVkVideoDecodeH264PictureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH264ProfileInfoKHR
andVkVideoDecodeH264ProfileInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH264SessionParametersAddInfoKHR
andVkVideoDecodeH264SessionParametersAddInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH264SessionParametersCreateInfoKHR
andVkVideoDecodeH264SessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH265CapabilitiesKHR
andVkVideoDecodeH265CapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH265DpbSlotInfoKHR
andVkVideoDecodeH265DpbSlotInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH265InlineSessionParametersInfoKHR
andVkVideoDecodeH265InlineSessionParametersInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH265PictureInfoKHR
andVkVideoDecodeH265PictureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH265ProfileInfoKHR
andVkVideoDecodeH265ProfileInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH265SessionParametersAddInfoKHR
andVkVideoDecodeH265SessionParametersAddInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeH265SessionParametersCreateInfoKHR
andVkVideoDecodeH265SessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeInfoKHR
andVkVideoDecodeInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoDecodeUsageInfoKHR
andVkVideoDecodeUsageInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1CapabilitiesKHR
andVkVideoEncodeAV1CapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1DpbSlotInfoKHR
andVkVideoEncodeAV1DpbSlotInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1FrameSizeKHR
andVkVideoEncodeAV1FrameSizeKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1GopRemainingFrameInfoKHR
andVkVideoEncodeAV1GopRemainingFrameInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1PictureInfoKHR
andVkVideoEncodeAV1PictureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1ProfileInfoKHR
andVkVideoEncodeAV1ProfileInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1QIndexKHR
andVkVideoEncodeAV1QIndexKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1QualityLevelPropertiesKHR
andVkVideoEncodeAV1QualityLevelPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1QuantizationMapCapabilitiesKHR
andVkVideoEncodeAV1QuantizationMapCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1RateControlInfoKHR
andVkVideoEncodeAV1RateControlInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1RateControlLayerInfoKHR
andVkVideoEncodeAV1RateControlLayerInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1SessionCreateInfoKHR
andVkVideoEncodeAV1SessionCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeAV1SessionParametersCreateInfoKHR
andVkVideoEncodeAV1SessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeCapabilitiesKHR
andVkVideoEncodeCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264CapabilitiesKHR
andVkVideoEncodeH264CapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264DpbSlotInfoKHR
andVkVideoEncodeH264DpbSlotInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264FrameSizeKHR
andVkVideoEncodeH264FrameSizeKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264GopRemainingFrameInfoKHR
andVkVideoEncodeH264GopRemainingFrameInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264NaluSliceInfoKHR
andVkVideoEncodeH264NaluSliceInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264PictureInfoKHR
andVkVideoEncodeH264PictureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264ProfileInfoKHR
andVkVideoEncodeH264ProfileInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264QpKHR
andVkVideoEncodeH264QpKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264QualityLevelPropertiesKHR
andVkVideoEncodeH264QualityLevelPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264QuantizationMapCapabilitiesKHR
andVkVideoEncodeH264QuantizationMapCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264RateControlInfoKHR
andVkVideoEncodeH264RateControlInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264RateControlLayerInfoKHR
andVkVideoEncodeH264RateControlLayerInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264SessionCreateInfoKHR
andVkVideoEncodeH264SessionCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersAddInfoKHR
andVkVideoEncodeH264SessionParametersAddInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersCreateInfoKHR
andVkVideoEncodeH264SessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersFeedbackInfoKHR
andVkVideoEncodeH264SessionParametersFeedbackInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH264SessionParametersGetInfoKHR
andVkVideoEncodeH264SessionParametersGetInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265CapabilitiesKHR
andVkVideoEncodeH265CapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265DpbSlotInfoKHR
andVkVideoEncodeH265DpbSlotInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265FrameSizeKHR
andVkVideoEncodeH265FrameSizeKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265GopRemainingFrameInfoKHR
andVkVideoEncodeH265GopRemainingFrameInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265NaluSliceSegmentInfoKHR
andVkVideoEncodeH265NaluSliceSegmentInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265PictureInfoKHR
andVkVideoEncodeH265PictureInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265ProfileInfoKHR
andVkVideoEncodeH265ProfileInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265QpKHR
andVkVideoEncodeH265QpKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265QualityLevelPropertiesKHR
andVkVideoEncodeH265QualityLevelPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265QuantizationMapCapabilitiesKHR
andVkVideoEncodeH265QuantizationMapCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265RateControlInfoKHR
andVkVideoEncodeH265RateControlInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265RateControlLayerInfoKHR
andVkVideoEncodeH265RateControlLayerInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265SessionCreateInfoKHR
andVkVideoEncodeH265SessionCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersAddInfoKHR
andVkVideoEncodeH265SessionParametersAddInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersCreateInfoKHR
andVkVideoEncodeH265SessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersFeedbackInfoKHR
andVkVideoEncodeH265SessionParametersFeedbackInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeH265SessionParametersGetInfoKHR
andVkVideoEncodeH265SessionParametersGetInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeInfoKHR
andVkVideoEncodeInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeQualityLevelInfoKHR
andVkVideoEncodeQualityLevelInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeQualityLevelPropertiesKHR
andVkVideoEncodeQualityLevelPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeQuantizationMapCapabilitiesKHR
andVkVideoEncodeQuantizationMapCapabilitiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeQuantizationMapInfoKHR
andVkVideoEncodeQuantizationMapInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHR
andVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeRateControlInfoKHR
andVkVideoEncodeRateControlInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeRateControlLayerInfoKHR
andVkVideoEncodeRateControlLayerInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeSessionParametersFeedbackInfoKHR
andVkVideoEncodeSessionParametersFeedbackInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeSessionParametersGetInfoKHR
andVkVideoEncodeSessionParametersGetInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEncodeUsageInfoKHR
andVkVideoEncodeUsageInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoEndCodingInfoKHR
andVkVideoEndCodingInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoFormatAV1QuantizationMapPropertiesKHR
andVkVideoFormatAV1QuantizationMapPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoFormatH265QuantizationMapPropertiesKHR
andVkVideoFormatH265QuantizationMapPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoFormatPropertiesKHR
andVkVideoFormatPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoFormatQuantizationMapPropertiesKHR
andVkVideoFormatQuantizationMapPropertiesKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoInlineQueryInfoKHR
andVkVideoInlineQueryInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoPictureResourceInfoKHR
andVkVideoPictureResourceInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoProfileInfoKHR
andVkVideoProfileInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoProfileListInfoKHR
andVkVideoProfileListInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoReferenceSlotInfoKHR
andVkVideoReferenceSlotInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoSessionCreateInfoKHR
andVkVideoSessionCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoSessionMemoryRequirementsKHR
andVkVideoSessionMemoryRequirementsKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoSessionParametersCreateInfoKHR
andVkVideoSessionParametersCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkVideoSessionParametersUpdateInfoKHR
andVkVideoSessionParametersUpdateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkViewport
andVkViewport.Ptr
operations.Auxiliary interface for unifyingVkViewportSwizzleNV
andVkViewportSwizzleNV.Ptr
operations.Auxiliary interface for unifyingVkViewportWScalingNV
andVkViewportWScalingNV.Ptr
operations.Auxiliary interface for unifyingVkViSurfaceCreateInfoNN
andVkViSurfaceCreateInfoNN.Ptr
operations.Auxiliary interface for unifyingVkWaylandSurfaceCreateInfoKHR
andVkWaylandSurfaceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkWin32KeyedMutexAcquireReleaseInfoKHR
andVkWin32KeyedMutexAcquireReleaseInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkWin32KeyedMutexAcquireReleaseInfoNV
andVkWin32KeyedMutexAcquireReleaseInfoNV.Ptr
operations.Auxiliary interface for unifyingVkWin32SurfaceCreateInfoKHR
andVkWin32SurfaceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkWriteDescriptorSet
andVkWriteDescriptorSet.Ptr
operations.Auxiliary interface for unifyingVkWriteDescriptorSetAccelerationStructureKHR
andVkWriteDescriptorSetAccelerationStructureKHR.Ptr
operations.Auxiliary interface for unifyingVkWriteDescriptorSetAccelerationStructureNV
andVkWriteDescriptorSetAccelerationStructureNV.Ptr
operations.Auxiliary interface for unifyingVkWriteDescriptorSetInlineUniformBlock
andVkWriteDescriptorSetInlineUniformBlock.Ptr
operations.Auxiliary interface for unifyingVkWriteDescriptorSetPartitionedAccelerationStructureNV
andVkWriteDescriptorSetPartitionedAccelerationStructureNV.Ptr
operations.Auxiliary interface for unifyingVkWriteIndirectExecutionSetPipelineEXT
andVkWriteIndirectExecutionSetPipelineEXT.Ptr
operations.Auxiliary interface for unifyingVkWriteIndirectExecutionSetShaderEXT
andVkWriteIndirectExecutionSetShaderEXT.Ptr
operations.Auxiliary interface for unifyingVkXcbSurfaceCreateInfoKHR
andVkXcbSurfaceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkXlibSurfaceCreateInfoKHR
andVkXlibSurfaceCreateInfoKHR.Ptr
operations.Auxiliary interface for unifyingVkXYColorEXT
andVkXYColorEXT.Ptr
operations.Represents a pointer to aNvSciSyncFence
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1CDEF
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1ColorConfig
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1ColorConfigFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1FilmGrain
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1FilmGrainFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1GlobalMotion
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1LoopFilter
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1LoopFilterFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1LoopRestoration
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1Quantization
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1QuantizationFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1Segmentation
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1SequenceHeader
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1SequenceHeaderFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TileInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TileInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TimingInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoAV1TimingInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1PictureInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1PictureInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1ReferenceInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeAV1ReferenceInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264PictureInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264PictureInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264ReferenceInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH264ReferenceInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265PictureInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265PictureInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265ReferenceInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoDecodeH265ReferenceInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1DecoderModelInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1ExtensionHeader
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1OperatingPointInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1OperatingPointInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1PictureInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1PictureInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1ReferenceInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeAV1ReferenceInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264PictureInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264PictureInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceListsInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264ReferenceListsInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264RefListModEntry
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264RefPicMarkingEntry
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264SliceHeader
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264SliceHeaderFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264WeightTable
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH264WeightTableFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265LongTermRefPics
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265PictureInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265PictureInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceListsInfo
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265ReferenceListsInfoFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265SliceSegmentHeader
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265SliceSegmentHeaderFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265WeightTable
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoEncodeH265WeightTableFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264HrdParameters
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264PictureParameterSet
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264PpsFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264ScalingLists
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SequenceParameterSet
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SequenceParameterSetVui
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SpsFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH264SpsVuiFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265DecPicBufMgr
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265HrdFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265HrdParameters
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265LongTermRefPicsSps
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265PictureParameterSet
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265PpsFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265PredictorPaletteEntries
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ProfileTierLevel
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ProfileTierLevelFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ScalingLists
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SequenceParameterSet
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SequenceParameterSetVui
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ShortTermRefPicSet
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265ShortTermRefPicSetFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SpsFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SpsVuiFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265SubLayerHrdParameters
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265VideoParameterSet
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aStdVideoH265VpsFlags
structure in native memory.Represents a pointer to / an array of null structure(s) in native memory.Represents a pointer to aVkAabbPositionsKHR
structure in native memory.Represents a pointer to / an array ofVkAabbPositionsKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureBuildGeometryInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureBuildGeometryInfoKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureBuildRangeInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureBuildRangeInfoKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureBuildSizesInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureBuildSizesInfoKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureCaptureDescriptorDataInfoEXT
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureCaptureDescriptorDataInfoEXT
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureDeviceAddressInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureDeviceAddressInfoKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryAabbsDataKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryAabbsDataKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryDataKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryDataKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryInstancesDataKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryInstancesDataKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryLinearSweptSpheresDataNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryLinearSweptSpheresDataNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryMotionTrianglesDataNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryMotionTrianglesDataNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometrySpheresDataNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometrySpheresDataNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureGeometryTrianglesDataKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureGeometryTrianglesDataKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureInfoNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureInfoNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureInstanceKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureInstanceKHR
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureMatrixMotionInstanceNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMatrixMotionInstanceNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureMemoryRequirementsInfoNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMemoryRequirementsInfoNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureMotionInfoNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMotionInfoNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureMotionInstanceDataNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMotionInstanceDataNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureMotionInstanceNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureMotionInstanceNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureSRTMotionInstanceNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureSRTMotionInstanceNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureTrianglesDisplacementMicromapNV
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureTrianglesDisplacementMicromapNV
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureTrianglesOpacityMicromapEXT
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureTrianglesOpacityMicromapEXT
structure(s) in native memory.Represents a pointer to aVkAccelerationStructureVersionInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAccelerationStructureVersionInfoKHR
structure(s) in native memory.Represents a pointer to aVkAcquireNextImageInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAcquireNextImageInfoKHR
structure(s) in native memory.Represents a pointer to aVkAcquireProfilingLockInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAcquireProfilingLockInfoKHR
structure(s) in native memory.Represents a pointer to aVkAllocationCallbacks
structure in native memory.Represents a pointer to / an array ofVkAllocationCallbacks
structure(s) in native memory.Represents a pointer to aVkAmigoProfilingSubmitInfoSEC
structure in native memory.Represents a pointer to / an array ofVkAmigoProfilingSubmitInfoSEC
structure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferFormatProperties2ANDROID
structure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferFormatProperties2ANDROID
structure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferFormatPropertiesANDROID
structure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferFormatPropertiesANDROID
structure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferFormatResolvePropertiesANDROID
structure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferFormatResolvePropertiesANDROID
structure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferPropertiesANDROID
structure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferPropertiesANDROID
structure(s) in native memory.Represents a pointer to aVkAndroidHardwareBufferUsageANDROID
structure in native memory.Represents a pointer to / an array ofVkAndroidHardwareBufferUsageANDROID
structure(s) in native memory.Represents a pointer to aVkAndroidSurfaceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkAndroidSurfaceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkAntiLagDataAMD
structure in native memory.Represents a pointer to / an array ofVkAntiLagDataAMD
structure(s) in native memory.Represents a pointer to aVkAntiLagPresentationInfoAMD
structure in native memory.Represents a pointer to / an array ofVkAntiLagPresentationInfoAMD
structure(s) in native memory.Represents a pointer to aVkApplicationInfo
structure in native memory.Represents a pointer to / an array ofVkApplicationInfo
structure(s) in native memory.Represents a pointer to aVkApplicationParametersEXT
structure in native memory.Represents a pointer to / an array ofVkApplicationParametersEXT
structure(s) in native memory.Represents a pointer to aVkAttachmentDescription
structure in native memory.Represents a pointer to / an array ofVkAttachmentDescription
structure(s) in native memory.Represents a pointer to aVkAttachmentDescription2
structure in native memory.Represents a pointer to / an array ofVkAttachmentDescription2
structure(s) in native memory.Represents a pointer to aVkAttachmentDescriptionStencilLayout
structure in native memory.Represents a pointer to / an array ofVkAttachmentDescriptionStencilLayout
structure(s) in native memory.Represents a pointer to aVkAttachmentReference
structure in native memory.Represents a pointer to / an array ofVkAttachmentReference
structure(s) in native memory.Represents a pointer to aVkAttachmentReference2
structure in native memory.Represents a pointer to / an array ofVkAttachmentReference2
structure(s) in native memory.Represents a pointer to aVkAttachmentReferenceStencilLayout
structure in native memory.Represents a pointer to / an array ofVkAttachmentReferenceStencilLayout
structure(s) in native memory.Represents a pointer to aVkAttachmentSampleCountInfoAMD
structure in native memory.Represents a pointer to / an array ofVkAttachmentSampleCountInfoAMD
structure(s) in native memory.Represents a pointer to aVkAttachmentSampleLocationsEXT
structure in native memory.Represents a pointer to / an array ofVkAttachmentSampleLocationsEXT
structure(s) in native memory.Represents a pointer to aVkBaseInStructure
structure in native memory.Represents a pointer to / an array ofVkBaseInStructure
structure(s) in native memory.Represents a pointer to aVkBaseOutStructure
structure in native memory.Represents a pointer to / an array ofVkBaseOutStructure
structure(s) in native memory.Represents a pointer to aVkBindAccelerationStructureMemoryInfoNV
structure in native memory.Represents a pointer to / an array ofVkBindAccelerationStructureMemoryInfoNV
structure(s) in native memory.Represents a pointer to aVkBindBufferMemoryDeviceGroupInfo
structure in native memory.Represents a pointer to / an array ofVkBindBufferMemoryDeviceGroupInfo
structure(s) in native memory.Represents a pointer to aVkBindBufferMemoryInfo
structure in native memory.Represents a pointer to / an array ofVkBindBufferMemoryInfo
structure(s) in native memory.Represents a pointer to aVkBindDescriptorBufferEmbeddedSamplersInfoEXT
structure in native memory.Represents a pointer to / an array ofVkBindDescriptorBufferEmbeddedSamplersInfoEXT
structure(s) in native memory.Represents a pointer to aVkBindDescriptorSetsInfo
structure in native memory.Represents a pointer to / an array ofVkBindDescriptorSetsInfo
structure(s) in native memory.Represents a pointer to aVkBindImageMemoryDeviceGroupInfo
structure in native memory.Represents a pointer to / an array ofVkBindImageMemoryDeviceGroupInfo
structure(s) in native memory.Represents a pointer to aVkBindImageMemoryInfo
structure in native memory.Represents a pointer to / an array ofVkBindImageMemoryInfo
structure(s) in native memory.Represents a pointer to aVkBindImageMemorySwapchainInfoKHR
structure in native memory.Represents a pointer to / an array ofVkBindImageMemorySwapchainInfoKHR
structure(s) in native memory.Represents a pointer to aVkBindImagePlaneMemoryInfo
structure in native memory.Represents a pointer to / an array ofVkBindImagePlaneMemoryInfo
structure(s) in native memory.Represents a pointer to aVkBindIndexBufferIndirectCommandEXT
structure in native memory.Represents a pointer to / an array ofVkBindIndexBufferIndirectCommandEXT
structure(s) in native memory.Represents a pointer to aVkBindIndexBufferIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkBindIndexBufferIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkBindMemoryStatus
structure in native memory.Represents a pointer to / an array ofVkBindMemoryStatus
structure(s) in native memory.Represents a pointer to aVkBindPipelineIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkBindPipelineIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkBindShaderGroupIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkBindShaderGroupIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkBindSparseInfo
structure in native memory.Represents a pointer to / an array ofVkBindSparseInfo
structure(s) in native memory.Represents a pointer to aVkBindVertexBufferIndirectCommandEXT
structure in native memory.Represents a pointer to / an array ofVkBindVertexBufferIndirectCommandEXT
structure(s) in native memory.Represents a pointer to aVkBindVertexBufferIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkBindVertexBufferIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkBindVideoSessionMemoryInfoKHR
structure in native memory.Represents a pointer to / an array ofVkBindVideoSessionMemoryInfoKHR
structure(s) in native memory.Represents a pointer to aVkBlitImageCubicWeightsInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkBlitImageCubicWeightsInfoQCOM
structure(s) in native memory.Represents a pointer to aVkBlitImageInfo2
structure in native memory.Represents a pointer to / an array ofVkBlitImageInfo2
structure(s) in native memory.Represents a pointer to aVkBufferCaptureDescriptorDataInfoEXT
structure in native memory.Represents a pointer to / an array ofVkBufferCaptureDescriptorDataInfoEXT
structure(s) in native memory.Represents a pointer to aVkBufferCollectionBufferCreateInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkBufferCollectionBufferCreateInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkBufferCollectionConstraintsInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkBufferCollectionConstraintsInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkBufferCollectionCreateInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkBufferCollectionCreateInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkBufferCollectionImageCreateInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkBufferCollectionImageCreateInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkBufferCollectionPropertiesFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkBufferCollectionPropertiesFUCHSIA
structure(s) in native memory.Represents a pointer to aVkBufferConstraintsInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkBufferConstraintsInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkBufferCopy
structure in native memory.Represents a pointer to / an array ofVkBufferCopy
structure(s) in native memory.Represents a pointer to aVkBufferCopy2
structure in native memory.Represents a pointer to / an array ofVkBufferCopy2
structure(s) in native memory.Represents a pointer to aVkBufferCreateInfo
structure in native memory.Represents a pointer to / an array ofVkBufferCreateInfo
structure(s) in native memory.Represents a pointer to aVkBufferDeviceAddressCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkBufferDeviceAddressCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkBufferDeviceAddressInfo
structure in native memory.Represents a pointer to / an array ofVkBufferDeviceAddressInfo
structure(s) in native memory.Represents a pointer to aVkBufferImageCopy
structure in native memory.Represents a pointer to / an array ofVkBufferImageCopy
structure(s) in native memory.Represents a pointer to aVkBufferImageCopy2
structure in native memory.Represents a pointer to / an array ofVkBufferImageCopy2
structure(s) in native memory.Represents a pointer to aVkBufferMemoryBarrier
structure in native memory.Represents a pointer to / an array ofVkBufferMemoryBarrier
structure(s) in native memory.Represents a pointer to aVkBufferMemoryBarrier2
structure in native memory.Represents a pointer to / an array ofVkBufferMemoryBarrier2
structure(s) in native memory.Represents a pointer to aVkBufferMemoryRequirementsInfo2
structure in native memory.Represents a pointer to / an array ofVkBufferMemoryRequirementsInfo2
structure(s) in native memory.Represents a pointer to aVkBufferOpaqueCaptureAddressCreateInfo
structure in native memory.Represents a pointer to / an array ofVkBufferOpaqueCaptureAddressCreateInfo
structure(s) in native memory.Represents a pointer to aVkBufferUsageFlags2CreateInfo
structure in native memory.Represents a pointer to / an array ofVkBufferUsageFlags2CreateInfo
structure(s) in native memory.Represents a pointer to aVkBufferViewCreateInfo
structure in native memory.Represents a pointer to / an array ofVkBufferViewCreateInfo
structure(s) in native memory.Represents a pointer to aVkBuildPartitionedAccelerationStructureIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkBuildPartitionedAccelerationStructureIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkBuildPartitionedAccelerationStructureInfoNV
structure in native memory.Represents a pointer to / an array ofVkBuildPartitionedAccelerationStructureInfoNV
structure(s) in native memory.Represents a pointer to aVkCalibratedTimestampInfoKHR
structure in native memory.Represents a pointer to / an array ofVkCalibratedTimestampInfoKHR
structure(s) in native memory.Represents a pointer to aVkCheckpointData2NV
structure in native memory.Represents a pointer to / an array ofVkCheckpointData2NV
structure(s) in native memory.Represents a pointer to aVkCheckpointDataNV
structure in native memory.Represents a pointer to / an array ofVkCheckpointDataNV
structure(s) in native memory.Represents a pointer to aVkClearAttachment
structure in native memory.Represents a pointer to / an array ofVkClearAttachment
structure(s) in native memory.Represents a pointer to aVkClearColorValue
structure in native memory.Represents a pointer to / an array ofVkClearColorValue
structure(s) in native memory.Represents a pointer to aVkClearDepthStencilValue
structure in native memory.Represents a pointer to / an array ofVkClearDepthStencilValue
structure(s) in native memory.Represents a pointer to aVkClearRect
structure in native memory.Represents a pointer to / an array ofVkClearRect
structure(s) in native memory.Represents a pointer to aVkClearValue
structure in native memory.Represents a pointer to / an array ofVkClearValue
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureBuildClustersBottomLevelInfoNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureBuildClustersBottomLevelInfoNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureBuildTriangleClusterInfoNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureBuildTriangleClusterInfoNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureBuildTriangleClusterTemplateInfoNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureClustersBottomLevelInputNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureClustersBottomLevelInputNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureCommandsInfoNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureCommandsInfoNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureGeometryIndexAndGeometryFlagsNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureInputInfoNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureInputInfoNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureInstantiateClusterInfoNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureInstantiateClusterInfoNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureMoveObjectsInfoNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureMoveObjectsInfoNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureMoveObjectsInputNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureMoveObjectsInputNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureOpInputNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureOpInputNV
structure(s) in native memory.Represents a pointer to aVkClusterAccelerationStructureTriangleClusterInputNV
structure in native memory.Represents a pointer to / an array ofVkClusterAccelerationStructureTriangleClusterInputNV
structure(s) in native memory.Represents a pointer to aVkCoarseSampleLocationNV
structure in native memory.Represents a pointer to / an array ofVkCoarseSampleLocationNV
structure(s) in native memory.Represents a pointer to aVkCoarseSampleOrderCustomNV
structure in native memory.Represents a pointer to / an array ofVkCoarseSampleOrderCustomNV
structure(s) in native memory.Represents a pointer to aVkColorBlendAdvancedEXT
structure in native memory.Represents a pointer to / an array ofVkColorBlendAdvancedEXT
structure(s) in native memory.Represents a pointer to aVkColorBlendEquationEXT
structure in native memory.Represents a pointer to / an array ofVkColorBlendEquationEXT
structure(s) in native memory.Represents a pointer to aVkCommandBufferAllocateInfo
structure in native memory.Represents a pointer to / an array ofVkCommandBufferAllocateInfo
structure(s) in native memory.Represents a pointer to aVkCommandBufferBeginInfo
structure in native memory.Represents a pointer to / an array ofVkCommandBufferBeginInfo
structure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceConditionalRenderingInfoEXT
structure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceConditionalRenderingInfoEXT
structure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceInfo
structure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceInfo
structure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceRenderingInfo
structure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceRenderingInfo
structure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceRenderPassTransformInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceRenderPassTransformInfoQCOM
structure(s) in native memory.Represents a pointer to aVkCommandBufferInheritanceViewportScissorInfoNV
structure in native memory.Represents a pointer to / an array ofVkCommandBufferInheritanceViewportScissorInfoNV
structure(s) in native memory.Represents a pointer to aVkCommandBufferSubmitInfo
structure in native memory.Represents a pointer to / an array ofVkCommandBufferSubmitInfo
structure(s) in native memory.Represents a pointer to aVkCommandPoolCreateInfo
structure in native memory.Represents a pointer to / an array ofVkCommandPoolCreateInfo
structure(s) in native memory.Represents a pointer to aVkComponentMapping
structure in native memory.Represents a pointer to / an array ofVkComponentMapping
structure(s) in native memory.Represents a pointer to aVkComputePipelineCreateInfo
structure in native memory.Represents a pointer to / an array ofVkComputePipelineCreateInfo
structure(s) in native memory.Represents a pointer to aVkComputePipelineIndirectBufferInfoNV
structure in native memory.Represents a pointer to / an array ofVkComputePipelineIndirectBufferInfoNV
structure(s) in native memory.Represents a pointer to aVkConditionalRenderingBeginInfoEXT
structure in native memory.Represents a pointer to / an array ofVkConditionalRenderingBeginInfoEXT
structure(s) in native memory.Represents a pointer to aVkConformanceVersion
structure in native memory.Represents a pointer to / an array ofVkConformanceVersion
structure(s) in native memory.Represents a pointer to aVkConvertCooperativeVectorMatrixInfoNV
structure in native memory.Represents a pointer to / an array ofVkConvertCooperativeVectorMatrixInfoNV
structure(s) in native memory.Represents a pointer to aVkCooperativeMatrixFlexibleDimensionsPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkCooperativeMatrixFlexibleDimensionsPropertiesNV
structure(s) in native memory.Represents a pointer to aVkCooperativeMatrixPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkCooperativeMatrixPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkCooperativeMatrixPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkCooperativeMatrixPropertiesNV
structure(s) in native memory.Represents a pointer to aVkCooperativeVectorPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkCooperativeVectorPropertiesNV
structure(s) in native memory.Represents a pointer to aVkCopyAccelerationStructureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkCopyAccelerationStructureInfoKHR
structure(s) in native memory.Represents a pointer to aVkCopyAccelerationStructureToMemoryInfoKHR
structure in native memory.Represents a pointer to / an array ofVkCopyAccelerationStructureToMemoryInfoKHR
structure(s) in native memory.Represents a pointer to aVkCopyBufferInfo2
structure in native memory.Represents a pointer to / an array ofVkCopyBufferInfo2
structure(s) in native memory.Represents a pointer to aVkCopyBufferToImageInfo2
structure in native memory.Represents a pointer to / an array ofVkCopyBufferToImageInfo2
structure(s) in native memory.Represents a pointer to aVkCopyCommandTransformInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkCopyCommandTransformInfoQCOM
structure(s) in native memory.Represents a pointer to aVkCopyDescriptorSet
structure in native memory.Represents a pointer to / an array ofVkCopyDescriptorSet
structure(s) in native memory.Represents a pointer to aVkCopyImageInfo2
structure in native memory.Represents a pointer to / an array ofVkCopyImageInfo2
structure(s) in native memory.Represents a pointer to aVkCopyImageToBufferInfo2
structure in native memory.Represents a pointer to / an array ofVkCopyImageToBufferInfo2
structure(s) in native memory.Represents a pointer to aVkCopyImageToImageInfo
structure in native memory.Represents a pointer to / an array ofVkCopyImageToImageInfo
structure(s) in native memory.Represents a pointer to aVkCopyImageToMemoryInfo
structure in native memory.Represents a pointer to / an array ofVkCopyImageToMemoryInfo
structure(s) in native memory.Represents a pointer to aVkCopyMemoryIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkCopyMemoryIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkCopyMemoryToAccelerationStructureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkCopyMemoryToAccelerationStructureInfoKHR
structure(s) in native memory.Represents a pointer to aVkCopyMemoryToImageIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkCopyMemoryToImageIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkCopyMemoryToImageInfo
structure in native memory.Represents a pointer to / an array ofVkCopyMemoryToImageInfo
structure(s) in native memory.Represents a pointer to aVkCopyMemoryToMicromapInfoEXT
structure in native memory.Represents a pointer to / an array ofVkCopyMemoryToMicromapInfoEXT
structure(s) in native memory.Represents a pointer to aVkCopyMicromapInfoEXT
structure in native memory.Represents a pointer to / an array ofVkCopyMicromapInfoEXT
structure(s) in native memory.Represents a pointer to aVkCopyMicromapToMemoryInfoEXT
structure in native memory.Represents a pointer to / an array ofVkCopyMicromapToMemoryInfoEXT
structure(s) in native memory.Represents a pointer to aVkCudaFunctionCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkCudaFunctionCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkCudaLaunchInfoNV
structure in native memory.Represents a pointer to / an array ofVkCudaLaunchInfoNV
structure(s) in native memory.Represents a pointer to aVkCudaModuleCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkCudaModuleCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkCuFunctionCreateInfoNVX
structure in native memory.Represents a pointer to / an array ofVkCuFunctionCreateInfoNVX
structure(s) in native memory.Represents a pointer to aVkCuLaunchInfoNVX
structure in native memory.Represents a pointer to / an array ofVkCuLaunchInfoNVX
structure(s) in native memory.Represents a pointer to aVkCuModuleCreateInfoNVX
structure in native memory.Represents a pointer to / an array ofVkCuModuleCreateInfoNVX
structure(s) in native memory.Represents a pointer to aVkCuModuleTexturingModeCreateInfoNVX
structure in native memory.Represents a pointer to / an array ofVkCuModuleTexturingModeCreateInfoNVX
structure(s) in native memory.Represents a pointer to aVkD3D12FenceSubmitInfoKHR
structure in native memory.Represents a pointer to / an array ofVkD3D12FenceSubmitInfoKHR
structure(s) in native memory.Represents a pointer to aVkDebugMarkerMarkerInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDebugMarkerMarkerInfoEXT
structure(s) in native memory.Represents a pointer to aVkDebugMarkerObjectNameInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDebugMarkerObjectNameInfoEXT
structure(s) in native memory.Represents a pointer to aVkDebugMarkerObjectTagInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDebugMarkerObjectTagInfoEXT
structure(s) in native memory.Represents a pointer to aVkDebugReportCallbackCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDebugReportCallbackCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkDebugUtilsLabelEXT
structure in native memory.Represents a pointer to / an array ofVkDebugUtilsLabelEXT
structure(s) in native memory.Represents a pointer to aVkDebugUtilsMessengerCallbackDataEXT
structure in native memory.Represents a pointer to / an array ofVkDebugUtilsMessengerCallbackDataEXT
structure(s) in native memory.Represents a pointer to aVkDebugUtilsMessengerCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDebugUtilsMessengerCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkDebugUtilsObjectNameInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDebugUtilsObjectNameInfoEXT
structure(s) in native memory.Represents a pointer to aVkDebugUtilsObjectTagInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDebugUtilsObjectTagInfoEXT
structure(s) in native memory.Represents a pointer to aVkDecompressMemoryRegionNV
structure in native memory.Represents a pointer to / an array ofVkDecompressMemoryRegionNV
structure(s) in native memory.Represents a pointer to aVkDedicatedAllocationBufferCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkDedicatedAllocationBufferCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkDedicatedAllocationImageCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkDedicatedAllocationImageCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkDedicatedAllocationMemoryAllocateInfoNV
structure in native memory.Represents a pointer to / an array ofVkDedicatedAllocationMemoryAllocateInfoNV
structure(s) in native memory.Represents a pointer to aVkDependencyInfo
structure in native memory.Represents a pointer to / an array ofVkDependencyInfo
structure(s) in native memory.Represents a pointer to aVkDepthBiasInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDepthBiasInfoEXT
structure(s) in native memory.Represents a pointer to aVkDepthBiasRepresentationInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDepthBiasRepresentationInfoEXT
structure(s) in native memory.Represents a pointer to aVkDepthClampRangeEXT
structure in native memory.Represents a pointer to / an array ofVkDepthClampRangeEXT
structure(s) in native memory.Represents a pointer to aVkDescriptorAddressInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDescriptorAddressInfoEXT
structure(s) in native memory.Represents a pointer to aVkDescriptorBufferBindingInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDescriptorBufferBindingInfoEXT
structure(s) in native memory.Represents a pointer to aVkDescriptorBufferBindingPushDescriptorBufferHandleEXT
structure in native memory.Represents a pointer to / an array ofVkDescriptorBufferBindingPushDescriptorBufferHandleEXT
structure(s) in native memory.Represents a pointer to aVkDescriptorBufferInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorBufferInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorDataEXT
structure in native memory.Represents a pointer to / an array ofVkDescriptorDataEXT
structure(s) in native memory.Represents a pointer to aVkDescriptorGetInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDescriptorGetInfoEXT
structure(s) in native memory.Represents a pointer to aVkDescriptorImageInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorImageInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorPoolCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorPoolCreateInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorPoolInlineUniformBlockCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorPoolInlineUniformBlockCreateInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorPoolSize
structure in native memory.Represents a pointer to / an array ofVkDescriptorPoolSize
structure(s) in native memory.Represents a pointer to aVkDescriptorSetAllocateInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetAllocateInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorSetBindingReferenceVALVE
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetBindingReferenceVALVE
structure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutBinding
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutBinding
structure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutBindingFlagsCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutBindingFlagsCreateInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutCreateInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutHostMappingInfoVALVE
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutHostMappingInfoVALVE
structure(s) in native memory.Represents a pointer to aVkDescriptorSetLayoutSupport
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetLayoutSupport
structure(s) in native memory.Represents a pointer to aVkDescriptorSetVariableDescriptorCountAllocateInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetVariableDescriptorCountAllocateInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorSetVariableDescriptorCountLayoutSupport
structure in native memory.Represents a pointer to / an array ofVkDescriptorSetVariableDescriptorCountLayoutSupport
structure(s) in native memory.Represents a pointer to aVkDescriptorUpdateTemplateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDescriptorUpdateTemplateCreateInfo
structure(s) in native memory.Represents a pointer to aVkDescriptorUpdateTemplateEntry
structure in native memory.Represents a pointer to / an array ofVkDescriptorUpdateTemplateEntry
structure(s) in native memory.Represents a pointer to aVkDeviceAddressBindingCallbackDataEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceAddressBindingCallbackDataEXT
structure(s) in native memory.Represents a pointer to aVkDeviceBufferMemoryRequirements
structure in native memory.Represents a pointer to / an array ofVkDeviceBufferMemoryRequirements
structure(s) in native memory.Represents a pointer to aVkDeviceCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceCreateInfo
structure(s) in native memory.Represents a pointer to aVkDeviceDeviceMemoryReportCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceDeviceMemoryReportCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkDeviceDiagnosticsConfigCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkDeviceDiagnosticsConfigCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkDeviceEventInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceEventInfoEXT
structure(s) in native memory.Represents a pointer to aVkDeviceFaultAddressInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceFaultAddressInfoEXT
structure(s) in native memory.Represents a pointer to aVkDeviceFaultCountsEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceFaultCountsEXT
structure(s) in native memory.Represents a pointer to aVkDeviceFaultInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceFaultInfoEXT
structure(s) in native memory.Represents a pointer to aVkDeviceFaultVendorBinaryHeaderVersionOneEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceFaultVendorBinaryHeaderVersionOneEXT
structure(s) in native memory.Represents a pointer to aVkDeviceFaultVendorInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceFaultVendorInfoEXT
structure(s) in native memory.Represents a pointer to aVkDeviceGroupBindSparseInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupBindSparseInfo
structure(s) in native memory.Represents a pointer to aVkDeviceGroupCommandBufferBeginInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupCommandBufferBeginInfo
structure(s) in native memory.Represents a pointer to aVkDeviceGroupDeviceCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupDeviceCreateInfo
structure(s) in native memory.Represents a pointer to aVkDeviceGroupPresentCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupPresentCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkDeviceGroupPresentInfoKHR
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupPresentInfoKHR
structure(s) in native memory.Represents a pointer to aVkDeviceGroupRenderPassBeginInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupRenderPassBeginInfo
structure(s) in native memory.Represents a pointer to aVkDeviceGroupSubmitInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupSubmitInfo
structure(s) in native memory.Represents a pointer to aVkDeviceGroupSwapchainCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkDeviceGroupSwapchainCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkDeviceImageMemoryRequirements
structure in native memory.Represents a pointer to / an array ofVkDeviceImageMemoryRequirements
structure(s) in native memory.Represents a pointer to aVkDeviceImageSubresourceInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceImageSubresourceInfo
structure(s) in native memory.Represents a pointer to aVkDeviceMemoryOpaqueCaptureAddressInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceMemoryOpaqueCaptureAddressInfo
structure(s) in native memory.Represents a pointer to aVkDeviceMemoryOverallocationCreateInfoAMD
structure in native memory.Represents a pointer to / an array ofVkDeviceMemoryOverallocationCreateInfoAMD
structure(s) in native memory.Represents a pointer to aVkDeviceMemoryReportCallbackDataEXT
structure in native memory.Represents a pointer to / an array ofVkDeviceMemoryReportCallbackDataEXT
structure(s) in native memory.Represents a pointer to aVkDeviceOrHostAddressConstAMDX
structure in native memory.Represents a pointer to / an array ofVkDeviceOrHostAddressConstAMDX
structure(s) in native memory.Represents a pointer to aVkDeviceOrHostAddressConstKHR
structure in native memory.Represents a pointer to / an array ofVkDeviceOrHostAddressConstKHR
structure(s) in native memory.Represents a pointer to aVkDeviceOrHostAddressKHR
structure in native memory.Represents a pointer to / an array ofVkDeviceOrHostAddressKHR
structure(s) in native memory.Represents a pointer to aVkDevicePipelineBinaryInternalCacheControlKHR
structure in native memory.Represents a pointer to / an array ofVkDevicePipelineBinaryInternalCacheControlKHR
structure(s) in native memory.Represents a pointer to aVkDevicePrivateDataCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDevicePrivateDataCreateInfo
structure(s) in native memory.Represents a pointer to aVkDeviceQueueCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceQueueCreateInfo
structure(s) in native memory.Represents a pointer to aVkDeviceQueueGlobalPriorityCreateInfo
structure in native memory.Represents a pointer to / an array ofVkDeviceQueueGlobalPriorityCreateInfo
structure(s) in native memory.Represents a pointer to aVkDeviceQueueInfo2
structure in native memory.Represents a pointer to / an array ofVkDeviceQueueInfo2
structure(s) in native memory.Represents a pointer to aVkDeviceQueueShaderCoreControlCreateInfoARM
structure in native memory.Represents a pointer to / an array ofVkDeviceQueueShaderCoreControlCreateInfoARM
structure(s) in native memory.Represents a pointer to aVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkDeviceSemaphoreSciSyncPoolReservationCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkDirectDriverLoadingInfoLUNARG
structure in native memory.Represents a pointer to / an array ofVkDirectDriverLoadingInfoLUNARG
structure(s) in native memory.Represents a pointer to aVkDirectDriverLoadingListLUNARG
structure in native memory.Represents a pointer to / an array ofVkDirectDriverLoadingListLUNARG
structure(s) in native memory.Represents a pointer to aVkDirectFBSurfaceCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDirectFBSurfaceCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkDispatchGraphCountInfoAMDX
structure in native memory.Represents a pointer to / an array ofVkDispatchGraphCountInfoAMDX
structure(s) in native memory.Represents a pointer to aVkDispatchGraphInfoAMDX
structure in native memory.Represents a pointer to / an array ofVkDispatchGraphInfoAMDX
structure(s) in native memory.Represents a pointer to aVkDispatchIndirectCommand
structure in native memory.Represents a pointer to / an array ofVkDispatchIndirectCommand
structure(s) in native memory.Represents a pointer to aVkDispatchTileInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkDispatchTileInfoQCOM
structure(s) in native memory.Represents a pointer to aVkDisplayEventInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDisplayEventInfoEXT
structure(s) in native memory.Represents a pointer to aVkDisplayModeCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkDisplayModeCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkDisplayModeParametersKHR
structure in native memory.Represents a pointer to / an array ofVkDisplayModeParametersKHR
structure(s) in native memory.Represents a pointer to aVkDisplayModeProperties2KHR
structure in native memory.Represents a pointer to / an array ofVkDisplayModeProperties2KHR
structure(s) in native memory.Represents a pointer to aVkDisplayModePropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkDisplayModePropertiesKHR
structure(s) in native memory.Represents a pointer to aVkDisplayModeStereoPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkDisplayModeStereoPropertiesNV
structure(s) in native memory.Represents a pointer to aVkDisplayNativeHdrSurfaceCapabilitiesAMD
structure in native memory.Represents a pointer to / an array ofVkDisplayNativeHdrSurfaceCapabilitiesAMD
structure(s) in native memory.Represents a pointer to aVkDisplayPlaneCapabilities2KHR
structure in native memory.Represents a pointer to / an array ofVkDisplayPlaneCapabilities2KHR
structure(s) in native memory.Represents a pointer to aVkDisplayPlaneCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkDisplayPlaneCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkDisplayPlaneInfo2KHR
structure in native memory.Represents a pointer to / an array ofVkDisplayPlaneInfo2KHR
structure(s) in native memory.Represents a pointer to aVkDisplayPlaneProperties2KHR
structure in native memory.Represents a pointer to / an array ofVkDisplayPlaneProperties2KHR
structure(s) in native memory.Represents a pointer to aVkDisplayPlanePropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkDisplayPlanePropertiesKHR
structure(s) in native memory.Represents a pointer to aVkDisplayPowerInfoEXT
structure in native memory.Represents a pointer to / an array ofVkDisplayPowerInfoEXT
structure(s) in native memory.Represents a pointer to aVkDisplayPresentInfoKHR
structure in native memory.Represents a pointer to / an array ofVkDisplayPresentInfoKHR
structure(s) in native memory.Represents a pointer to aVkDisplayProperties2KHR
structure in native memory.Represents a pointer to / an array ofVkDisplayProperties2KHR
structure(s) in native memory.Represents a pointer to aVkDisplayPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkDisplayPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkDisplaySurfaceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkDisplaySurfaceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkDisplaySurfaceStereoCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkDisplaySurfaceStereoCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkDrawIndexedIndirectCommand
structure in native memory.Represents a pointer to / an array ofVkDrawIndexedIndirectCommand
structure(s) in native memory.Represents a pointer to aVkDrawIndirectCommand
structure in native memory.Represents a pointer to / an array ofVkDrawIndirectCommand
structure(s) in native memory.Represents a pointer to aVkDrawIndirectCountIndirectCommandEXT
structure in native memory.Represents a pointer to / an array ofVkDrawIndirectCountIndirectCommandEXT
structure(s) in native memory.Represents a pointer to aVkDrawMeshTasksIndirectCommandEXT
structure in native memory.Represents a pointer to / an array ofVkDrawMeshTasksIndirectCommandEXT
structure(s) in native memory.Represents a pointer to aVkDrawMeshTasksIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkDrawMeshTasksIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkDrmFormatModifierProperties2EXT
structure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierProperties2EXT
structure(s) in native memory.Represents a pointer to aVkDrmFormatModifierPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkDrmFormatModifierPropertiesList2EXT
structure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierPropertiesList2EXT
structure(s) in native memory.Represents a pointer to aVkDrmFormatModifierPropertiesListEXT
structure in native memory.Represents a pointer to / an array ofVkDrmFormatModifierPropertiesListEXT
structure(s) in native memory.Represents a pointer to aVkEventCreateInfo
structure in native memory.Represents a pointer to / an array ofVkEventCreateInfo
structure(s) in native memory.Represents a pointer to aVkExecutionGraphPipelineCreateInfoAMDX
structure in native memory.Represents a pointer to / an array ofVkExecutionGraphPipelineCreateInfoAMDX
structure(s) in native memory.Represents a pointer to aVkExecutionGraphPipelineScratchSizeAMDX
structure in native memory.Represents a pointer to / an array ofVkExecutionGraphPipelineScratchSizeAMDX
structure(s) in native memory.Represents a pointer to aVkExportFenceCreateInfo
structure in native memory.Represents a pointer to / an array ofVkExportFenceCreateInfo
structure(s) in native memory.Represents a pointer to aVkExportFenceSciSyncInfoNV
structure in native memory.Represents a pointer to / an array ofVkExportFenceSciSyncInfoNV
structure(s) in native memory.Represents a pointer to aVkExportFenceWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkExportFenceWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkExportMemoryAllocateInfo
structure in native memory.Represents a pointer to / an array ofVkExportMemoryAllocateInfo
structure(s) in native memory.Represents a pointer to aVkExportMemoryAllocateInfoNV
structure in native memory.Represents a pointer to / an array ofVkExportMemoryAllocateInfoNV
structure(s) in native memory.Represents a pointer to aVkExportMemorySciBufInfoNV
structure in native memory.Represents a pointer to / an array ofVkExportMemorySciBufInfoNV
structure(s) in native memory.Represents a pointer to aVkExportMemoryWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkExportMemoryWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkExportMemoryWin32HandleInfoNV
structure in native memory.Represents a pointer to / an array ofVkExportMemoryWin32HandleInfoNV
structure(s) in native memory.Represents a pointer to aVkExportMetalBufferInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalBufferInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportMetalCommandQueueInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalCommandQueueInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportMetalDeviceInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalDeviceInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportMetalIOSurfaceInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalIOSurfaceInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportMetalObjectCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalObjectCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportMetalObjectsInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalObjectsInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportMetalSharedEventInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalSharedEventInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportMetalTextureInfoEXT
structure in native memory.Represents a pointer to / an array ofVkExportMetalTextureInfoEXT
structure(s) in native memory.Represents a pointer to aVkExportSemaphoreCreateInfo
structure in native memory.Represents a pointer to / an array ofVkExportSemaphoreCreateInfo
structure(s) in native memory.Represents a pointer to aVkExportSemaphoreSciSyncInfoNV
structure in native memory.Represents a pointer to / an array ofVkExportSemaphoreSciSyncInfoNV
structure(s) in native memory.Represents a pointer to aVkExportSemaphoreWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkExportSemaphoreWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkExtensionProperties
structure in native memory.Represents a pointer to / an array ofVkExtensionProperties
structure(s) in native memory.Represents a pointer to aVkExtent2D
structure in native memory.Represents a pointer to / an array ofVkExtent2D
structure(s) in native memory.Represents a pointer to aVkExtent3D
structure in native memory.Represents a pointer to / an array ofVkExtent3D
structure(s) in native memory.Represents a pointer to aVkExternalBufferProperties
structure in native memory.Represents a pointer to / an array ofVkExternalBufferProperties
structure(s) in native memory.Represents a pointer to aVkExternalComputeQueueCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkExternalComputeQueueCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkExternalComputeQueueDataParamsNV
structure in native memory.Represents a pointer to / an array ofVkExternalComputeQueueDataParamsNV
structure(s) in native memory.Represents a pointer to aVkExternalComputeQueueDeviceCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkExternalComputeQueueDeviceCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkExternalFenceProperties
structure in native memory.Represents a pointer to / an array ofVkExternalFenceProperties
structure(s) in native memory.Represents a pointer to aVkExternalFormatANDROID
structure in native memory.Represents a pointer to / an array ofVkExternalFormatANDROID
structure(s) in native memory.Represents a pointer to aVkExternalFormatQNX
structure in native memory.Represents a pointer to / an array ofVkExternalFormatQNX
structure(s) in native memory.Represents a pointer to aVkExternalImageFormatProperties
structure in native memory.Represents a pointer to / an array ofVkExternalImageFormatProperties
structure(s) in native memory.Represents a pointer to aVkExternalImageFormatPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkExternalImageFormatPropertiesNV
structure(s) in native memory.Represents a pointer to aVkExternalMemoryAcquireUnmodifiedEXT
structure in native memory.Represents a pointer to / an array ofVkExternalMemoryAcquireUnmodifiedEXT
structure(s) in native memory.Represents a pointer to aVkExternalMemoryBufferCreateInfo
structure in native memory.Represents a pointer to / an array ofVkExternalMemoryBufferCreateInfo
structure(s) in native memory.Represents a pointer to aVkExternalMemoryImageCreateInfo
structure in native memory.Represents a pointer to / an array ofVkExternalMemoryImageCreateInfo
structure(s) in native memory.Represents a pointer to aVkExternalMemoryImageCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkExternalMemoryImageCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkExternalMemoryProperties
structure in native memory.Represents a pointer to / an array ofVkExternalMemoryProperties
structure(s) in native memory.Represents a pointer to aVkExternalSemaphoreProperties
structure in native memory.Represents a pointer to / an array ofVkExternalSemaphoreProperties
structure(s) in native memory.Represents a pointer to aVkFenceCreateInfo
structure in native memory.Represents a pointer to / an array ofVkFenceCreateInfo
structure(s) in native memory.Represents a pointer to aVkFenceGetFdInfoKHR
structure in native memory.Represents a pointer to / an array ofVkFenceGetFdInfoKHR
structure(s) in native memory.Represents a pointer to aVkFenceGetSciSyncInfoNV
structure in native memory.Represents a pointer to / an array ofVkFenceGetSciSyncInfoNV
structure(s) in native memory.Represents a pointer to aVkFenceGetWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkFenceGetWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkFilterCubicImageViewImageFormatPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkFilterCubicImageViewImageFormatPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkFormatProperties
structure in native memory.Represents a pointer to / an array ofVkFormatProperties
structure(s) in native memory.Represents a pointer to aVkFormatProperties2
structure in native memory.Represents a pointer to / an array ofVkFormatProperties2
structure(s) in native memory.Represents a pointer to aVkFormatProperties3
structure in native memory.Represents a pointer to / an array ofVkFormatProperties3
structure(s) in native memory.Represents a pointer to aVkFragmentShadingRateAttachmentInfoKHR
structure in native memory.Represents a pointer to / an array ofVkFragmentShadingRateAttachmentInfoKHR
structure(s) in native memory.Represents a pointer to aVkFrameBoundaryEXT
structure in native memory.Represents a pointer to / an array ofVkFrameBoundaryEXT
structure(s) in native memory.Represents a pointer to aVkFramebufferAttachmentImageInfo
structure in native memory.Represents a pointer to / an array ofVkFramebufferAttachmentImageInfo
structure(s) in native memory.Represents a pointer to aVkFramebufferAttachmentsCreateInfo
structure in native memory.Represents a pointer to / an array ofVkFramebufferAttachmentsCreateInfo
structure(s) in native memory.Represents a pointer to aVkFramebufferCreateInfo
structure in native memory.Represents a pointer to / an array ofVkFramebufferCreateInfo
structure(s) in native memory.Represents a pointer to aVkFramebufferMixedSamplesCombinationNV
structure in native memory.Represents a pointer to / an array ofVkFramebufferMixedSamplesCombinationNV
structure(s) in native memory.Represents a pointer to aVkGeneratedCommandsInfoEXT
structure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsInfoEXT
structure(s) in native memory.Represents a pointer to aVkGeneratedCommandsInfoNV
structure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsInfoNV
structure(s) in native memory.Represents a pointer to aVkGeneratedCommandsMemoryRequirementsInfoEXT
structure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsMemoryRequirementsInfoEXT
structure(s) in native memory.Represents a pointer to aVkGeneratedCommandsMemoryRequirementsInfoNV
structure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsMemoryRequirementsInfoNV
structure(s) in native memory.Represents a pointer to aVkGeneratedCommandsPipelineInfoEXT
structure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsPipelineInfoEXT
structure(s) in native memory.Represents a pointer to aVkGeneratedCommandsShaderInfoEXT
structure in native memory.Represents a pointer to / an array ofVkGeneratedCommandsShaderInfoEXT
structure(s) in native memory.Represents a pointer to aVkGeometryAABBNV
structure in native memory.Represents a pointer to / an array ofVkGeometryAABBNV
structure(s) in native memory.Represents a pointer to aVkGeometryDataNV
structure in native memory.Represents a pointer to / an array ofVkGeometryDataNV
structure(s) in native memory.Represents a pointer to aVkGeometryNV
structure in native memory.Represents a pointer to / an array ofVkGeometryNV
structure(s) in native memory.Represents a pointer to aVkGeometryTrianglesNV
structure in native memory.Represents a pointer to / an array ofVkGeometryTrianglesNV
structure(s) in native memory.Represents a pointer to aVkGetLatencyMarkerInfoNV
structure in native memory.Represents a pointer to / an array ofVkGetLatencyMarkerInfoNV
structure(s) in native memory.Represents a pointer to aVkGraphicsPipelineCreateInfo
structure in native memory.Represents a pointer to / an array ofVkGraphicsPipelineCreateInfo
structure(s) in native memory.Represents a pointer to aVkGraphicsPipelineLibraryCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkGraphicsPipelineLibraryCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkGraphicsPipelineShaderGroupsCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkGraphicsPipelineShaderGroupsCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkGraphicsShaderGroupCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkGraphicsShaderGroupCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkHdrMetadataEXT
structure in native memory.Represents a pointer to / an array ofVkHdrMetadataEXT
structure(s) in native memory.Represents a pointer to aVkHdrVividDynamicMetadataHUAWEI
structure in native memory.Represents a pointer to / an array ofVkHdrVividDynamicMetadataHUAWEI
structure(s) in native memory.Represents a pointer to aVkHeadlessSurfaceCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkHeadlessSurfaceCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkHostImageCopyDevicePerformanceQuery
structure in native memory.Represents a pointer to / an array ofVkHostImageCopyDevicePerformanceQuery
structure(s) in native memory.Represents a pointer to aVkHostImageLayoutTransitionInfo
structure in native memory.Represents a pointer to / an array ofVkHostImageLayoutTransitionInfo
structure(s) in native memory.Represents a pointer to aVkImageAlignmentControlCreateInfoMESA
structure in native memory.Represents a pointer to / an array ofVkImageAlignmentControlCreateInfoMESA
structure(s) in native memory.Represents a pointer to aVkImageBlit
structure in native memory.Represents a pointer to / an array ofVkImageBlit
structure(s) in native memory.Represents a pointer to aVkImageBlit2
structure in native memory.Represents a pointer to / an array ofVkImageBlit2
structure(s) in native memory.Represents a pointer to aVkImageCaptureDescriptorDataInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImageCaptureDescriptorDataInfoEXT
structure(s) in native memory.Represents a pointer to aVkImageCompressionControlEXT
structure in native memory.Represents a pointer to / an array ofVkImageCompressionControlEXT
structure(s) in native memory.Represents a pointer to aVkImageCompressionPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkImageCompressionPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkImageConstraintsInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkImageConstraintsInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkImageCopy
structure in native memory.Represents a pointer to / an array ofVkImageCopy
structure(s) in native memory.Represents a pointer to aVkImageCopy2
structure in native memory.Represents a pointer to / an array ofVkImageCopy2
structure(s) in native memory.Represents a pointer to aVkImageCreateInfo
structure in native memory.Represents a pointer to / an array ofVkImageCreateInfo
structure(s) in native memory.Represents a pointer to aVkImageDrmFormatModifierExplicitCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImageDrmFormatModifierExplicitCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkImageDrmFormatModifierListCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImageDrmFormatModifierListCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkImageDrmFormatModifierPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkImageDrmFormatModifierPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkImageFormatConstraintsInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkImageFormatConstraintsInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkImageFormatListCreateInfo
structure in native memory.Represents a pointer to / an array ofVkImageFormatListCreateInfo
structure(s) in native memory.Represents a pointer to aVkImageFormatProperties
structure in native memory.Represents a pointer to / an array ofVkImageFormatProperties
structure(s) in native memory.Represents a pointer to aVkImageFormatProperties2
structure in native memory.Represents a pointer to / an array ofVkImageFormatProperties2
structure(s) in native memory.Represents a pointer to aVkImageMemoryBarrier
structure in native memory.Represents a pointer to / an array ofVkImageMemoryBarrier
structure(s) in native memory.Represents a pointer to aVkImageMemoryBarrier2
structure in native memory.Represents a pointer to / an array ofVkImageMemoryBarrier2
structure(s) in native memory.Represents a pointer to aVkImageMemoryRequirementsInfo2
structure in native memory.Represents a pointer to / an array ofVkImageMemoryRequirementsInfo2
structure(s) in native memory.Represents a pointer to aVkImagePipeSurfaceCreateInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkImagePipeSurfaceCreateInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkImagePlaneMemoryRequirementsInfo
structure in native memory.Represents a pointer to / an array ofVkImagePlaneMemoryRequirementsInfo
structure(s) in native memory.Represents a pointer to aVkImageResolve
structure in native memory.Represents a pointer to / an array ofVkImageResolve
structure(s) in native memory.Represents a pointer to aVkImageResolve2
structure in native memory.Represents a pointer to / an array ofVkImageResolve2
structure(s) in native memory.Represents a pointer to aVkImageSparseMemoryRequirementsInfo2
structure in native memory.Represents a pointer to / an array ofVkImageSparseMemoryRequirementsInfo2
structure(s) in native memory.Represents a pointer to aVkImageStencilUsageCreateInfo
structure in native memory.Represents a pointer to / an array ofVkImageStencilUsageCreateInfo
structure(s) in native memory.Represents a pointer to aVkImageSubresource
structure in native memory.Represents a pointer to / an array ofVkImageSubresource
structure(s) in native memory.Represents a pointer to aVkImageSubresource2
structure in native memory.Represents a pointer to / an array ofVkImageSubresource2
structure(s) in native memory.Represents a pointer to aVkImageSubresourceLayers
structure in native memory.Represents a pointer to / an array ofVkImageSubresourceLayers
structure(s) in native memory.Represents a pointer to aVkImageSubresourceRange
structure in native memory.Represents a pointer to / an array ofVkImageSubresourceRange
structure(s) in native memory.Represents a pointer to aVkImageSwapchainCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkImageSwapchainCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkImageToMemoryCopy
structure in native memory.Represents a pointer to / an array ofVkImageToMemoryCopy
structure(s) in native memory.Represents a pointer to aVkImageViewAddressPropertiesNVX
structure in native memory.Represents a pointer to / an array ofVkImageViewAddressPropertiesNVX
structure(s) in native memory.Represents a pointer to aVkImageViewASTCDecodeModeEXT
structure in native memory.Represents a pointer to / an array ofVkImageViewASTCDecodeModeEXT
structure(s) in native memory.Represents a pointer to aVkImageViewCaptureDescriptorDataInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImageViewCaptureDescriptorDataInfoEXT
structure(s) in native memory.Represents a pointer to aVkImageViewCreateInfo
structure in native memory.Represents a pointer to / an array ofVkImageViewCreateInfo
structure(s) in native memory.Represents a pointer to aVkImageViewHandleInfoNVX
structure in native memory.Represents a pointer to / an array ofVkImageViewHandleInfoNVX
structure(s) in native memory.Represents a pointer to aVkImageViewMinLodCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImageViewMinLodCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkImageViewSampleWeightCreateInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkImageViewSampleWeightCreateInfoQCOM
structure(s) in native memory.Represents a pointer to aVkImageViewSlicedCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImageViewSlicedCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkImageViewUsageCreateInfo
structure in native memory.Represents a pointer to / an array ofVkImageViewUsageCreateInfo
structure(s) in native memory.Represents a pointer to aVkImportAndroidHardwareBufferInfoANDROID
structure in native memory.Represents a pointer to / an array ofVkImportAndroidHardwareBufferInfoANDROID
structure(s) in native memory.Represents a pointer to aVkImportFenceFdInfoKHR
structure in native memory.Represents a pointer to / an array ofVkImportFenceFdInfoKHR
structure(s) in native memory.Represents a pointer to aVkImportFenceSciSyncInfoNV
structure in native memory.Represents a pointer to / an array ofVkImportFenceSciSyncInfoNV
structure(s) in native memory.Represents a pointer to aVkImportFenceWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkImportFenceWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkImportMemoryBufferCollectionFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkImportMemoryBufferCollectionFUCHSIA
structure(s) in native memory.Represents a pointer to aVkImportMemoryFdInfoKHR
structure in native memory.Represents a pointer to / an array ofVkImportMemoryFdInfoKHR
structure(s) in native memory.Represents a pointer to aVkImportMemoryHostPointerInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImportMemoryHostPointerInfoEXT
structure(s) in native memory.Represents a pointer to aVkImportMemoryMetalHandleInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImportMemoryMetalHandleInfoEXT
structure(s) in native memory.Represents a pointer to aVkImportMemorySciBufInfoNV
structure in native memory.Represents a pointer to / an array ofVkImportMemorySciBufInfoNV
structure(s) in native memory.Represents a pointer to aVkImportMemoryWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkImportMemoryWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkImportMemoryWin32HandleInfoNV
structure in native memory.Represents a pointer to / an array ofVkImportMemoryWin32HandleInfoNV
structure(s) in native memory.Represents a pointer to aVkImportMemoryZirconHandleInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkImportMemoryZirconHandleInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkImportMetalBufferInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImportMetalBufferInfoEXT
structure(s) in native memory.Represents a pointer to aVkImportMetalIOSurfaceInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImportMetalIOSurfaceInfoEXT
structure(s) in native memory.Represents a pointer to aVkImportMetalSharedEventInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImportMetalSharedEventInfoEXT
structure(s) in native memory.Represents a pointer to aVkImportMetalTextureInfoEXT
structure in native memory.Represents a pointer to / an array ofVkImportMetalTextureInfoEXT
structure(s) in native memory.Represents a pointer to aVkImportScreenBufferInfoQNX
structure in native memory.Represents a pointer to / an array ofVkImportScreenBufferInfoQNX
structure(s) in native memory.Represents a pointer to aVkImportSemaphoreFdInfoKHR
structure in native memory.Represents a pointer to / an array ofVkImportSemaphoreFdInfoKHR
structure(s) in native memory.Represents a pointer to aVkImportSemaphoreSciSyncInfoNV
structure in native memory.Represents a pointer to / an array ofVkImportSemaphoreSciSyncInfoNV
structure(s) in native memory.Represents a pointer to aVkImportSemaphoreWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkImportSemaphoreWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkImportSemaphoreZirconHandleInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkImportSemaphoreZirconHandleInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsExecutionSetTokenEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsExecutionSetTokenEXT
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsIndexBufferTokenEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsIndexBufferTokenEXT
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutTokenEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutTokenEXT
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsLayoutTokenNV
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsLayoutTokenNV
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsPushConstantTokenEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsPushConstantTokenEXT
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsStreamNV
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsStreamNV
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsTokenDataEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsTokenDataEXT
structure(s) in native memory.Represents a pointer to aVkIndirectCommandsVertexBufferTokenEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectCommandsVertexBufferTokenEXT
structure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetInfoEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetInfoEXT
structure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetPipelineInfoEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetPipelineInfoEXT
structure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetShaderInfoEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetShaderInfoEXT
structure(s) in native memory.Represents a pointer to aVkIndirectExecutionSetShaderLayoutInfoEXT
structure in native memory.Represents a pointer to / an array ofVkIndirectExecutionSetShaderLayoutInfoEXT
structure(s) in native memory.Represents a pointer to aVkInitializePerformanceApiInfoINTEL
structure in native memory.Represents a pointer to / an array ofVkInitializePerformanceApiInfoINTEL
structure(s) in native memory.Represents a pointer to aVkInputAttachmentAspectReference
structure in native memory.Represents a pointer to / an array ofVkInputAttachmentAspectReference
structure(s) in native memory.Represents a pointer to aVkInstanceCreateInfo
structure in native memory.Represents a pointer to / an array ofVkInstanceCreateInfo
structure(s) in native memory.Represents a pointer to aVkIOSSurfaceCreateInfoMVK
structure in native memory.Represents a pointer to / an array ofVkIOSSurfaceCreateInfoMVK
structure(s) in native memory.Represents a pointer to aVkLatencySleepInfoNV
structure in native memory.Represents a pointer to / an array ofVkLatencySleepInfoNV
structure(s) in native memory.Represents a pointer to aVkLatencySleepModeInfoNV
structure in native memory.Represents a pointer to / an array ofVkLatencySleepModeInfoNV
structure(s) in native memory.Represents a pointer to aVkLatencySubmissionPresentIdNV
structure in native memory.Represents a pointer to / an array ofVkLatencySubmissionPresentIdNV
structure(s) in native memory.Represents a pointer to aVkLatencySurfaceCapabilitiesNV
structure in native memory.Represents a pointer to / an array ofVkLatencySurfaceCapabilitiesNV
structure(s) in native memory.Represents a pointer to aVkLatencyTimingsFrameReportNV
structure in native memory.Represents a pointer to / an array ofVkLatencyTimingsFrameReportNV
structure(s) in native memory.Represents a pointer to aVkLayerProperties
structure in native memory.Represents a pointer to / an array ofVkLayerProperties
structure(s) in native memory.Represents a pointer to aVkLayerSettingEXT
structure in native memory.Represents a pointer to / an array ofVkLayerSettingEXT
structure(s) in native memory.Represents a pointer to aVkLayerSettingsCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkLayerSettingsCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkMacOSSurfaceCreateInfoMVK
structure in native memory.Represents a pointer to / an array ofVkMacOSSurfaceCreateInfoMVK
structure(s) in native memory.Represents a pointer to aVkMappedMemoryRange
structure in native memory.Represents a pointer to / an array ofVkMappedMemoryRange
structure(s) in native memory.Represents a pointer to aVkMemoryAllocateFlagsInfo
structure in native memory.Represents a pointer to / an array ofVkMemoryAllocateFlagsInfo
structure(s) in native memory.Represents a pointer to aVkMemoryAllocateInfo
structure in native memory.Represents a pointer to / an array ofVkMemoryAllocateInfo
structure(s) in native memory.Represents a pointer to aVkMemoryBarrier
structure in native memory.Represents a pointer to / an array ofVkMemoryBarrier
structure(s) in native memory.Represents a pointer to aVkMemoryBarrier2
structure in native memory.Represents a pointer to / an array ofVkMemoryBarrier2
structure(s) in native memory.Represents a pointer to aVkMemoryBarrierAccessFlags3KHR
structure in native memory.Represents a pointer to / an array ofVkMemoryBarrierAccessFlags3KHR
structure(s) in native memory.Represents a pointer to aVkMemoryDedicatedAllocateInfo
structure in native memory.Represents a pointer to / an array ofVkMemoryDedicatedAllocateInfo
structure(s) in native memory.Represents a pointer to aVkMemoryDedicatedRequirements
structure in native memory.Represents a pointer to / an array ofVkMemoryDedicatedRequirements
structure(s) in native memory.Represents a pointer to aVkMemoryFdPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkMemoryFdPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkMemoryGetAndroidHardwareBufferInfoANDROID
structure in native memory.Represents a pointer to / an array ofVkMemoryGetAndroidHardwareBufferInfoANDROID
structure(s) in native memory.Represents a pointer to aVkMemoryGetFdInfoKHR
structure in native memory.Represents a pointer to / an array ofVkMemoryGetFdInfoKHR
structure(s) in native memory.Represents a pointer to aVkMemoryGetMetalHandleInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMemoryGetMetalHandleInfoEXT
structure(s) in native memory.Represents a pointer to aVkMemoryGetRemoteAddressInfoNV
structure in native memory.Represents a pointer to / an array ofVkMemoryGetRemoteAddressInfoNV
structure(s) in native memory.Represents a pointer to aVkMemoryGetSciBufInfoNV
structure in native memory.Represents a pointer to / an array ofVkMemoryGetSciBufInfoNV
structure(s) in native memory.Represents a pointer to aVkMemoryGetWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkMemoryGetWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkMemoryGetZirconHandleInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkMemoryGetZirconHandleInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkMemoryHeap
structure in native memory.Represents a pointer to / an array ofVkMemoryHeap
structure(s) in native memory.Represents a pointer to aVkMemoryHostPointerPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkMemoryHostPointerPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkMemoryMapInfo
structure in native memory.Represents a pointer to / an array ofVkMemoryMapInfo
structure(s) in native memory.Represents a pointer to aVkMemoryMapPlacedInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMemoryMapPlacedInfoEXT
structure(s) in native memory.Represents a pointer to aVkMemoryMetalHandlePropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkMemoryMetalHandlePropertiesEXT
structure(s) in native memory.Represents a pointer to aVkMemoryOpaqueCaptureAddressAllocateInfo
structure in native memory.Represents a pointer to / an array ofVkMemoryOpaqueCaptureAddressAllocateInfo
structure(s) in native memory.Represents a pointer to aVkMemoryPriorityAllocateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMemoryPriorityAllocateInfoEXT
structure(s) in native memory.Represents a pointer to aVkMemoryRequirements
structure in native memory.Represents a pointer to / an array ofVkMemoryRequirements
structure(s) in native memory.Represents a pointer to aVkMemoryRequirements2
structure in native memory.Represents a pointer to / an array ofVkMemoryRequirements2
structure(s) in native memory.Represents a pointer to aVkMemorySciBufPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkMemorySciBufPropertiesNV
structure(s) in native memory.Represents a pointer to aVkMemoryToImageCopy
structure in native memory.Represents a pointer to / an array ofVkMemoryToImageCopy
structure(s) in native memory.Represents a pointer to aVkMemoryType
structure in native memory.Represents a pointer to / an array ofVkMemoryType
structure(s) in native memory.Represents a pointer to aVkMemoryUnmapInfo
structure in native memory.Represents a pointer to / an array ofVkMemoryUnmapInfo
structure(s) in native memory.Represents a pointer to aVkMemoryWin32HandlePropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkMemoryWin32HandlePropertiesKHR
structure(s) in native memory.Represents a pointer to aVkMemoryZirconHandlePropertiesFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkMemoryZirconHandlePropertiesFUCHSIA
structure(s) in native memory.Represents a pointer to aVkMetalSurfaceCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMetalSurfaceCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkMicromapBuildInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMicromapBuildInfoEXT
structure(s) in native memory.Represents a pointer to aVkMicromapBuildSizesInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMicromapBuildSizesInfoEXT
structure(s) in native memory.Represents a pointer to aVkMicromapCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMicromapCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkMicromapTriangleEXT
structure in native memory.Represents a pointer to / an array ofVkMicromapTriangleEXT
structure(s) in native memory.Represents a pointer to aVkMicromapUsageEXT
structure in native memory.Represents a pointer to / an array ofVkMicromapUsageEXT
structure(s) in native memory.Represents a pointer to aVkMicromapVersionInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMicromapVersionInfoEXT
structure(s) in native memory.Represents a pointer to aVkMultiDrawIndexedInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMultiDrawIndexedInfoEXT
structure(s) in native memory.Represents a pointer to aVkMultiDrawInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMultiDrawInfoEXT
structure(s) in native memory.Represents a pointer to aVkMultisampledRenderToSingleSampledInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMultisampledRenderToSingleSampledInfoEXT
structure(s) in native memory.Represents a pointer to aVkMultisamplePropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkMultisamplePropertiesEXT
structure(s) in native memory.Represents a pointer to aVkMultiviewPerViewAttributesInfoNVX
structure in native memory.Represents a pointer to / an array ofVkMultiviewPerViewAttributesInfoNVX
structure(s) in native memory.Represents a pointer to aVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkMultiviewPerViewRenderAreasRenderPassBeginInfoQCOM
structure(s) in native memory.Represents a pointer to aVkMutableDescriptorTypeCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkMutableDescriptorTypeCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkMutableDescriptorTypeListEXT
structure in native memory.Represents a pointer to / an array ofVkMutableDescriptorTypeListEXT
structure(s) in native memory.Represents a pointer to aVkOffset2D
structure in native memory.Represents a pointer to / an array ofVkOffset2D
structure(s) in native memory.Represents a pointer to aVkOffset3D
structure in native memory.Represents a pointer to / an array ofVkOffset3D
structure(s) in native memory.Represents a pointer to aVkOpaqueCaptureDescriptorDataCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkOpaqueCaptureDescriptorDataCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkOpticalFlowExecuteInfoNV
structure in native memory.Represents a pointer to / an array ofVkOpticalFlowExecuteInfoNV
structure(s) in native memory.Represents a pointer to aVkOpticalFlowImageFormatInfoNV
structure in native memory.Represents a pointer to / an array ofVkOpticalFlowImageFormatInfoNV
structure(s) in native memory.Represents a pointer to aVkOpticalFlowImageFormatPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkOpticalFlowImageFormatPropertiesNV
structure(s) in native memory.Represents a pointer to aVkOpticalFlowSessionCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkOpticalFlowSessionCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkOpticalFlowSessionCreatePrivateDataInfoNV
structure in native memory.Represents a pointer to / an array ofVkOpticalFlowSessionCreatePrivateDataInfoNV
structure(s) in native memory.Represents a pointer to aVkOutOfBandQueueTypeInfoNV
structure in native memory.Represents a pointer to / an array ofVkOutOfBandQueueTypeInfoNV
structure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureFlagsNV
structure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureFlagsNV
structure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureInstancesInputNV
structure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureInstancesInputNV
structure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureUpdateInstanceDataNV
structure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureUpdateInstanceDataNV
structure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureWriteInstanceDataNV
structure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureWriteInstanceDataNV
structure(s) in native memory.Represents a pointer to aVkPartitionedAccelerationStructureWritePartitionTranslationDataNV
structure in native memory.Represents a pointer to / an array ofVkPartitionedAccelerationStructureWritePartitionTranslationDataNV
structure(s) in native memory.Represents a pointer to aVkPastPresentationTimingGOOGLE
structure in native memory.Represents a pointer to / an array ofVkPastPresentationTimingGOOGLE
structure(s) in native memory.Represents a pointer to aVkPerformanceConfigurationAcquireInfoINTEL
structure in native memory.Represents a pointer to / an array ofVkPerformanceConfigurationAcquireInfoINTEL
structure(s) in native memory.Represents a pointer to aVkPerformanceCounterDescriptionKHR
structure in native memory.Represents a pointer to / an array ofVkPerformanceCounterDescriptionKHR
structure(s) in native memory.Represents a pointer to aVkPerformanceCounterKHR
structure in native memory.Represents a pointer to / an array ofVkPerformanceCounterKHR
structure(s) in native memory.Represents a pointer to aVkPerformanceCounterResultKHR
structure in native memory.Represents a pointer to / an array ofVkPerformanceCounterResultKHR
structure(s) in native memory.Represents a pointer to aVkPerformanceMarkerInfoINTEL
structure in native memory.Represents a pointer to / an array ofVkPerformanceMarkerInfoINTEL
structure(s) in native memory.Represents a pointer to aVkPerformanceOverrideInfoINTEL
structure in native memory.Represents a pointer to / an array ofVkPerformanceOverrideInfoINTEL
structure(s) in native memory.Represents a pointer to aVkPerformanceQueryReservationInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPerformanceQueryReservationInfoKHR
structure(s) in native memory.Represents a pointer to aVkPerformanceQuerySubmitInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPerformanceQuerySubmitInfoKHR
structure(s) in native memory.Represents a pointer to aVkPerformanceStreamMarkerInfoINTEL
structure in native memory.Represents a pointer to / an array ofVkPerformanceStreamMarkerInfoINTEL
structure(s) in native memory.Represents a pointer to aVkPerformanceValueDataINTEL
structure in native memory.Represents a pointer to / an array ofVkPerformanceValueDataINTEL
structure(s) in native memory.Represents a pointer to aVkPerformanceValueINTEL
structure in native memory.Represents a pointer to / an array ofVkPerformanceValueINTEL
structure(s) in native memory.Represents a pointer to aVkPerTileBeginInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkPerTileBeginInfoQCOM
structure(s) in native memory.Represents a pointer to aVkPerTileEndInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkPerTileEndInfoQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDevice16BitStorageFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevice16BitStorageFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDevice4444FormatsFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevice4444FormatsFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevice8BitStorageFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevice8BitStorageFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAccelerationStructureFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAccelerationStructureFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAccelerationStructurePropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAccelerationStructurePropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAddressBindingReportFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAddressBindingReportFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAmigoProfilingFeaturesSEC
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAmigoProfilingFeaturesSEC
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAntiLagFeaturesAMD
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAntiLagFeaturesAMD
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceASTCDecodeFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceASTCDecodeFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceAttachmentFeedbackLoopLayoutFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBlendOperationAdvancedFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBlendOperationAdvancedFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBlendOperationAdvancedPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBlendOperationAdvancedPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBorderColorSwizzleFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBorderColorSwizzleFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBufferDeviceAddressFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBufferDeviceAddressFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceBufferDeviceAddressFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceBufferDeviceAddressFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterAccelerationStructureFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterAccelerationStructureFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterAccelerationStructurePropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterAccelerationStructurePropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEI
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterCullingShaderFeaturesHUAWEI
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEI
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterCullingShaderPropertiesHUAWEI
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEI
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceClusterCullingShaderVrsFeaturesHUAWEI
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCoherentMemoryFeaturesAMD
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCoherentMemoryFeaturesAMD
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceColorWriteEnableFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceColorWriteEnableFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCommandBufferInheritanceFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCommandBufferInheritanceFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceComputeShaderDerivativesFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceComputeShaderDerivativesFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceComputeShaderDerivativesPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceComputeShaderDerivativesPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceConditionalRenderingFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceConditionalRenderingFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceConservativeRasterizationPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceConservativeRasterizationPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrix2FeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrix2FeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrix2PropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrix2PropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeMatrixPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeMatrixPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeVectorFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeVectorFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCooperativeVectorPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCooperativeVectorPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCopyMemoryIndirectFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCopyMemoryIndirectFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCopyMemoryIndirectPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCopyMemoryIndirectPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCornerSampledImageFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCornerSampledImageFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCoverageReductionModeFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCoverageReductionModeFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCubicClampFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCubicClampFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCubicWeightsFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCubicWeightsFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCudaKernelLaunchFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCudaKernelLaunchFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCudaKernelLaunchPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCudaKernelLaunchPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCustomBorderColorFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCustomBorderColorFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceCustomBorderColorPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceCustomBorderColorPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthBiasControlFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthBiasControlFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClampControlFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClampControlFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClampZeroOneFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClampZeroOneFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClipControlFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClipControlFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthClipEnableFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthClipEnableFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDepthStencilResolveProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDepthStencilResolveProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorBufferDensityMapPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorBufferFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorBufferFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorBufferPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorBufferPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorIndexingFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorIndexingFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorIndexingProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorIndexingProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorPoolOverallocationFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsComputeFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDeviceMemoryReportFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDeviceMemoryReportFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDiagnosticsConfigFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDiagnosticsConfigFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDiscardRectanglePropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDiscardRectanglePropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDisplacementMicromapFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDisplacementMicromapFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDisplacementMicromapPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDisplacementMicromapPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDriverProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDriverProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDrmPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDrmPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDynamicRenderingFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDynamicRenderingFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDynamicRenderingLocalReadFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDynamicRenderingLocalReadFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExclusiveScissorFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExclusiveScissorFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicState2FeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicState2FeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicState3FeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicState3FeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicState3PropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicState3PropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedDynamicStateFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedDynamicStateFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedSparseAddressSpaceFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExtendedSparseAddressSpacePropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalBufferInfo
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalBufferInfo
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalComputeQueuePropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalComputeQueuePropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalFenceInfo
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalFenceInfo
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalFormatResolveFeaturesANDROID
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalFormatResolveFeaturesANDROID
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalFormatResolvePropertiesANDROID
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalFormatResolvePropertiesANDROID
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalImageFormatInfo
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalImageFormatInfo
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemoryHostPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemoryHostPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemoryRDMAFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemoryRDMAFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemorySciBufFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemorySciBufFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNX
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalMemoryScreenBufferFeaturesQNX
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalSciSync2FeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalSciSync2FeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalSciSyncFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalSciSyncFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceExternalSemaphoreInfo
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceExternalSemaphoreInfo
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFaultFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFaultFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFeatures2
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFeatures2
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFloatControlsProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFloatControlsProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMap2FeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMap2FeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMap2PropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMap2PropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapOffsetFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapOffsetPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentDensityMapPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentDensityMapPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShaderBarycentricFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShaderInterlockFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShaderInterlockFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRateKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRateKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFragmentShadingRatePropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFragmentShadingRatePropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceFrameBoundaryFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceFrameBoundaryFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGlobalPriorityQueryFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGlobalPriorityQueryFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceGroupProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceGroupProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHdrVividFeaturesHUAWEI
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHdrVividFeaturesHUAWEI
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHostImageCopyFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHostImageCopyFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHostImageCopyProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHostImageCopyProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceHostQueryResetFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceHostQueryResetFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceIDProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceIDProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImage2DViewOf3DFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImage2DViewOf3DFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageAlignmentControlFeaturesMESA
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageAlignmentControlFeaturesMESA
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageAlignmentControlPropertiesMESA
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageAlignmentControlPropertiesMESA
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageCompressionControlFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageCompressionControlFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageCompressionControlSwapchainFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageDrmFormatModifierInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageDrmFormatModifierInfoEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageFormatInfo2
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageFormatInfo2
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImagelessFramebufferFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImagelessFramebufferFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessing2FeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessing2FeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessing2PropertiesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessing2PropertiesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessingFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessingFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageProcessingPropertiesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageProcessingPropertiesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageRobustnessFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageRobustnessFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageSlicedViewOf3DFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageViewImageFormatInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageViewImageFormatInfoEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceImageViewMinLodFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceImageViewMinLodFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceIndexTypeUint8Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceIndexTypeUint8Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInheritedViewportScissorFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInheritedViewportScissorFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInlineUniformBlockFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInlineUniformBlockFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInlineUniformBlockProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInlineUniformBlockProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceInvocationMaskFeaturesHUAWEI
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceInvocationMaskFeaturesHUAWEI
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredApiPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredApiPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredApiPropertiesListKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredApiPropertiesListKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredApiVulkanPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredApiVulkanPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLayeredDriverPropertiesMSFT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLayeredDriverPropertiesMSFT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLegacyDitheringFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLegacyDitheringFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLegacyVertexAttributesFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLegacyVertexAttributesFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLegacyVertexAttributesPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLegacyVertexAttributesPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLimits
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLimits
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLinearColorAttachmentFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLinearColorAttachmentFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLineRasterizationFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLineRasterizationFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceLineRasterizationProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceLineRasterizationProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance3Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance3Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance4Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance4Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance4Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance4Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance5Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance5Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance5Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance5Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance6Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance6Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance6Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance6Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance7FeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance7FeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance7PropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance7PropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMaintenance8FeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMaintenance8FeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMapMemoryPlacedFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMapMemoryPlacedFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMapMemoryPlacedPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMapMemoryPlacedPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryBudgetPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryBudgetPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryDecompressionFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryDecompressionFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryDecompressionPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryDecompressionPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryPriorityFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryPriorityFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMemoryProperties2
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMemoryProperties2
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMeshShaderPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMeshShaderPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiDrawFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiDrawFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiDrawPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiDrawPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultisampledRenderToSingleSampledFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewPerViewViewportsFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMultiviewProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMultiviewProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceMutableDescriptorTypeFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceMutableDescriptorTypeFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceNestedCommandBufferFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceNestedCommandBufferFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceNestedCommandBufferPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceNestedCommandBufferPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceNonSeamlessCubeMapFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpacityMicromapFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpacityMicromapFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpacityMicromapPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpacityMicromapPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpticalFlowFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpticalFlowFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceOpticalFlowPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceOpticalFlowPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePageableDeviceLocalMemoryFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePartitionedAccelerationStructureFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePartitionedAccelerationStructureFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePartitionedAccelerationStructurePropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePartitionedAccelerationStructurePropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePCIBusInfoPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePCIBusInfoPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePerformanceQueryFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePerformanceQueryFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePerformanceQueryPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePerformanceQueryPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePerStageDescriptorSetFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePerStageDescriptorSetFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineBinaryFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineBinaryFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineBinaryPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineBinaryPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineCreationCacheControlFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineCreationCacheControlFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineOpacityMicromapFeaturesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineOpacityMicromapFeaturesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelinePropertiesFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelinePropertiesFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineProtectedAccessFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineProtectedAccessFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineRobustnessFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineRobustnessFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePipelineRobustnessProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePipelineRobustnessProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePointClippingProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePointClippingProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePortabilitySubsetFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePortabilitySubsetFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePortabilitySubsetPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePortabilitySubsetPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentBarrierFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentBarrierFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentIdFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentIdFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentMeteringFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentMeteringFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentModeFifoLatestReadyFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePresentWaitFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePresentWaitFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePrimitivesGeneratedQueryFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePrimitiveTopologyListRestartFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePrivateDataFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePrivateDataFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProperties2
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProperties2
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProtectedMemoryFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProtectedMemoryFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProtectedMemoryProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProtectedMemoryProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProvokingVertexFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProvokingVertexFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceProvokingVertexPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceProvokingVertexPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDevicePushDescriptorProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDevicePushDescriptorProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRasterizationOrderAttachmentAccessFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRawAccessChainsFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRawAccessChainsFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayQueryFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayQueryFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingInvocationReorderFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingInvocationReorderFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingInvocationReorderPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingInvocationReorderPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingLinearSweptSpheresFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingMaintenance1FeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingMaintenance1FeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingMotionBlurFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingMotionBlurFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPipelineFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPipelineFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPipelinePropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPipelinePropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPositionFetchFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPositionFetchFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRayTracingValidationFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRayTracingValidationFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMG
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRelaxedLineRasterizationFeaturesIMG
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRenderPassStripedFeaturesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRenderPassStripedFeaturesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRenderPassStripedPropertiesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRenderPassStripedPropertiesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRepresentativeFragmentTestFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRepresentativeFragmentTestFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRGBA10X6FormatsFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRGBA10X6FormatsFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRobustness2FeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRobustness2FeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceRobustness2PropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceRobustness2PropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSampleLocationsPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSampleLocationsPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSamplerFilterMinmaxProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSamplerFilterMinmaxProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSamplerYcbcrConversionFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSamplerYcbcrConversionFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceScalarBlockLayoutFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceScalarBlockLayoutFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSchedulingControlsFeaturesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSchedulingControlsFeaturesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSchedulingControlsPropertiesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSchedulingControlsPropertiesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSeparateDepthStencilLayoutsFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSeparateDepthStencilLayoutsFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicFloat16VectorFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicFloat2FeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicFloatFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicFloatFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderAtomicInt64Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderAtomicInt64Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderBfloat16FeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderBfloat16FeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderClockFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderClockFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCoreBuiltinsFeaturesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCoreBuiltinsFeaturesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCoreBuiltinsPropertiesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCoreBuiltinsPropertiesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCoreProperties2AMD
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCoreProperties2AMD
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCorePropertiesAMD
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCorePropertiesAMD
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderCorePropertiesARM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderCorePropertiesARM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderDemoteToHelperInvocationFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderDemoteToHelperInvocationFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderDrawParametersFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderDrawParametersFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderEnqueueFeaturesAMDX
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderEnqueueFeaturesAMDX
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderEnqueuePropertiesAMDX
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderEnqueuePropertiesAMDX
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderExpectAssumeFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderExpectAssumeFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderFloat16Int8Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderFloat16Int8Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderFloatControls2Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderFloatControls2Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderImageFootprintFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderImageFootprintFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderIntegerDotProductFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderIntegerDotProductFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderIntegerDotProductProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderIntegerDotProductProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderMaximalReconvergenceFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderModuleIdentifierFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderModuleIdentifierFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderModuleIdentifierPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderModuleIdentifierPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderObjectFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderObjectFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderObjectPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderObjectPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderQuadControlFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderQuadControlFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderRelaxedExtendedInstructionFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderReplicatedCompositesFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSMBuiltinsFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSMBuiltinsFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSMBuiltinsPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSMBuiltinsPropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSubgroupExtendedTypesFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSubgroupExtendedTypesFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSubgroupRotateFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSubgroupRotateFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderSubgroupUniformControlFlowFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderTerminateInvocationFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderTerminateInvocationFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderTileImageFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderTileImageFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShaderTileImagePropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShaderTileImagePropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShadingRateImageFeaturesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShadingRateImageFeaturesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceShadingRateImagePropertiesNV
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceShadingRateImagePropertiesNV
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSparseImageFormatInfo2
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSparseImageFormatInfo2
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSparseProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSparseProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubgroupProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubgroupProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubgroupSizeControlFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubgroupSizeControlFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubgroupSizeControlProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubgroupSizeControlProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubpassMergeFeedbackFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubpassShadingFeaturesHUAWEI
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubpassShadingFeaturesHUAWEI
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSubpassShadingPropertiesHUAWEI
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSubpassShadingPropertiesHUAWEI
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSurfaceInfo2KHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSurfaceInfo2KHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSwapchainMaintenance1FeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSwapchainMaintenance1FeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceSynchronization2Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceSynchronization2Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTexelBufferAlignmentFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTexelBufferAlignmentFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTexelBufferAlignmentProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTexelBufferAlignmentProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTextureCompressionASTCHDRFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTextureCompressionASTCHDRFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileMemoryHeapFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileMemoryHeapFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileMemoryHeapPropertiesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileMemoryHeapPropertiesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTilePropertiesFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTilePropertiesFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileShadingFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileShadingFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTileShadingPropertiesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTileShadingPropertiesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTimelineSemaphoreFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTimelineSemaphoreFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTimelineSemaphoreProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTimelineSemaphoreProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceToolProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceToolProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTransformFeedbackFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTransformFeedbackFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceTransformFeedbackPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceTransformFeedbackPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceUniformBufferStandardLayoutFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceUniformBufferStandardLayoutFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVariablePointersFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVariablePointersFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeDivisorFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeDivisorFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeDivisorProperties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeDivisorProperties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeDivisorPropertiesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeDivisorPropertiesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexAttributeRobustnessFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVertexInputDynamicStateFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVertexInputDynamicStateFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoEncodeAV1FeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoEncodeAV1FeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoEncodeQualityLevelInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoEncodeQualityLevelInfoKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoEncodeQuantizationMapFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoFormatInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoFormatInfoKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoMaintenance1FeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoMaintenance1FeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVideoMaintenance2FeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVideoMaintenance2FeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan11Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan11Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan11Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan11Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan12Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan12Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan12Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan12Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan13Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan13Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan13Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan13Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan14Features
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan14Features
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkan14Properties
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkan14Properties
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceVulkanMemoryModelFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceVulkanMemoryModelFeatures
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceYcbcrDegammaFeaturesQCOM
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceYcbcrDegammaFeaturesQCOM
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceYcbcrImageArraysFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceYcbcrImageArraysFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures
structure in native memory.Represents a pointer to / an array ofVkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures
structure(s) in native memory.Represents a pointer to aVkPipelineBinaryCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineBinaryCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineBinaryDataInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineBinaryDataInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineBinaryDataKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineBinaryDataKHR
structure(s) in native memory.Represents a pointer to aVkPipelineBinaryHandlesInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineBinaryHandlesInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineBinaryInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineBinaryInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineBinaryKeyKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineBinaryKeyKHR
structure(s) in native memory.Represents a pointer to aVkPipelineBinaryKeysAndDataKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineBinaryKeysAndDataKHR
structure(s) in native memory.Represents a pointer to aVkPipelineCacheCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineCacheCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineCacheHeaderVersionOne
structure in native memory.Represents a pointer to / an array ofVkPipelineCacheHeaderVersionOne
structure(s) in native memory.Represents a pointer to aVkPipelineColorBlendAdvancedStateCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineColorBlendAdvancedStateCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineColorBlendAttachmentState
structure in native memory.Represents a pointer to / an array ofVkPipelineColorBlendAttachmentState
structure(s) in native memory.Represents a pointer to aVkPipelineColorBlendStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineColorBlendStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineColorWriteCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineColorWriteCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineCompilerControlCreateInfoAMD
structure in native memory.Represents a pointer to / an array ofVkPipelineCompilerControlCreateInfoAMD
structure(s) in native memory.Represents a pointer to aVkPipelineCoverageModulationStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineCoverageModulationStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineCoverageReductionStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineCoverageReductionStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineCoverageToColorStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineCoverageToColorStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineCreateFlags2CreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineCreateFlags2CreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineCreationFeedback
structure in native memory.Represents a pointer to / an array ofVkPipelineCreationFeedback
structure(s) in native memory.Represents a pointer to aVkPipelineCreationFeedbackCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineCreationFeedbackCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineDepthStencilStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineDepthStencilStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineDiscardRectangleStateCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineDiscardRectangleStateCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineDynamicStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineDynamicStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineExecutableInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineExecutableInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineExecutableInternalRepresentationKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineExecutableInternalRepresentationKHR
structure(s) in native memory.Represents a pointer to aVkPipelineExecutablePropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineExecutablePropertiesKHR
structure(s) in native memory.Represents a pointer to aVkPipelineExecutableStatisticKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineExecutableStatisticKHR
structure(s) in native memory.Represents a pointer to aVkPipelineExecutableStatisticValueKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineExecutableStatisticValueKHR
structure(s) in native memory.Represents a pointer to aVkPipelineFragmentShadingRateEnumStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineFragmentShadingRateEnumStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineFragmentShadingRateStateCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineFragmentShadingRateStateCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineIndirectDeviceAddressInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineIndirectDeviceAddressInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineInputAssemblyStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineInputAssemblyStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineLayoutCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineLayoutCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineLibraryCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPipelineLibraryCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkPipelineMultisampleStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineMultisampleStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelinePropertiesIdentifierEXT
structure in native memory.Represents a pointer to / an array ofVkPipelinePropertiesIdentifierEXT
structure(s) in native memory.Represents a pointer to aVkPipelineRasterizationConservativeStateCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationConservativeStateCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineRasterizationDepthClipStateCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationDepthClipStateCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineRasterizationLineStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationLineStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineRasterizationProvokingVertexStateCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationProvokingVertexStateCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineRasterizationStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineRasterizationStateRasterizationOrderAMD
structure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationStateRasterizationOrderAMD
structure(s) in native memory.Represents a pointer to aVkPipelineRasterizationStateStreamCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineRasterizationStateStreamCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineRenderingCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineRenderingCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineRepresentativeFragmentTestStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineRepresentativeFragmentTestStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineRobustnessCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineRobustnessCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineSampleLocationsStateCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineSampleLocationsStateCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineShaderStageCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineShaderStageModuleIdentifierCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageModuleIdentifierCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineShaderStageNodeCreateInfoAMDX
structure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageNodeCreateInfoAMDX
structure(s) in native memory.Represents a pointer to aVkPipelineShaderStageRequiredSubgroupSizeCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineShaderStageRequiredSubgroupSizeCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineTessellationDomainOriginStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineTessellationDomainOriginStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineTessellationStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineTessellationStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineVertexInputDivisorStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineVertexInputDivisorStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineVertexInputStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineVertexInputStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineViewportCoarseSampleOrderStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportCoarseSampleOrderStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineViewportDepthClampControlCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportDepthClampControlCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineViewportDepthClipControlCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportDepthClipControlCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkPipelineViewportExclusiveScissorStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportExclusiveScissorStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineViewportShadingRateImageStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportShadingRateImageStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineViewportStateCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportStateCreateInfo
structure(s) in native memory.Represents a pointer to aVkPipelineViewportSwizzleStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportSwizzleStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPipelineViewportWScalingStateCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkPipelineViewportWScalingStateCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkPresentFrameTokenGGP
structure in native memory.Represents a pointer to / an array ofVkPresentFrameTokenGGP
structure(s) in native memory.Represents a pointer to aVkPresentIdKHR
structure in native memory.Represents a pointer to / an array ofVkPresentIdKHR
structure(s) in native memory.Represents a pointer to aVkPresentInfoKHR
structure in native memory.Represents a pointer to / an array ofVkPresentInfoKHR
structure(s) in native memory.Represents a pointer to aVkPresentRegionKHR
structure in native memory.Represents a pointer to / an array ofVkPresentRegionKHR
structure(s) in native memory.Represents a pointer to aVkPresentRegionsKHR
structure in native memory.Represents a pointer to / an array ofVkPresentRegionsKHR
structure(s) in native memory.Represents a pointer to aVkPresentTimeGOOGLE
structure in native memory.Represents a pointer to / an array ofVkPresentTimeGOOGLE
structure(s) in native memory.Represents a pointer to aVkPresentTimesInfoGOOGLE
structure in native memory.Represents a pointer to / an array ofVkPresentTimesInfoGOOGLE
structure(s) in native memory.Represents a pointer to aVkPrivateDataSlotCreateInfo
structure in native memory.Represents a pointer to / an array ofVkPrivateDataSlotCreateInfo
structure(s) in native memory.Represents a pointer to aVkProtectedSubmitInfo
structure in native memory.Represents a pointer to / an array ofVkProtectedSubmitInfo
structure(s) in native memory.Represents a pointer to aVkPushConstantRange
structure in native memory.Represents a pointer to / an array ofVkPushConstantRange
structure(s) in native memory.Represents a pointer to aVkPushConstantsInfo
structure in native memory.Represents a pointer to / an array ofVkPushConstantsInfo
structure(s) in native memory.Represents a pointer to aVkPushDescriptorSetInfo
structure in native memory.Represents a pointer to / an array ofVkPushDescriptorSetInfo
structure(s) in native memory.Represents a pointer to aVkPushDescriptorSetWithTemplateInfo
structure in native memory.Represents a pointer to / an array ofVkPushDescriptorSetWithTemplateInfo
structure(s) in native memory.Represents a pointer to aVkQueryLowLatencySupportNV
structure in native memory.Represents a pointer to / an array ofVkQueryLowLatencySupportNV
structure(s) in native memory.Represents a pointer to aVkQueryPoolCreateInfo
structure in native memory.Represents a pointer to / an array ofVkQueryPoolCreateInfo
structure(s) in native memory.Represents a pointer to aVkQueryPoolPerformanceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkQueryPoolPerformanceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkQueryPoolPerformanceQueryCreateInfoINTEL
structure in native memory.Represents a pointer to / an array ofVkQueryPoolPerformanceQueryCreateInfoINTEL
structure(s) in native memory.Represents a pointer to aVkQueryPoolVideoEncodeFeedbackCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkQueryPoolVideoEncodeFeedbackCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkQueueFamilyCheckpointProperties2NV
structure in native memory.Represents a pointer to / an array ofVkQueueFamilyCheckpointProperties2NV
structure(s) in native memory.Represents a pointer to aVkQueueFamilyCheckpointPropertiesNV
structure in native memory.Represents a pointer to / an array ofVkQueueFamilyCheckpointPropertiesNV
structure(s) in native memory.Represents a pointer to aVkQueueFamilyGlobalPriorityProperties
structure in native memory.Represents a pointer to / an array ofVkQueueFamilyGlobalPriorityProperties
structure(s) in native memory.Represents a pointer to aVkQueueFamilyProperties
structure in native memory.Represents a pointer to / an array ofVkQueueFamilyProperties
structure(s) in native memory.Represents a pointer to aVkQueueFamilyProperties2
structure in native memory.Represents a pointer to / an array ofVkQueueFamilyProperties2
structure(s) in native memory.Represents a pointer to aVkQueueFamilyQueryResultStatusPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkQueueFamilyQueryResultStatusPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkQueueFamilyVideoPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkQueueFamilyVideoPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkRayTracingPipelineClusterAccelerationStructureCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineClusterAccelerationStructureCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkRayTracingPipelineCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkRayTracingPipelineCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkRayTracingPipelineInterfaceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkRayTracingPipelineInterfaceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkRayTracingShaderGroupCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkRayTracingShaderGroupCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkRayTracingShaderGroupCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkRayTracingShaderGroupCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkRect2D
structure in native memory.Represents a pointer to / an array ofVkRect2D
structure(s) in native memory.Represents a pointer to aVkRectLayerKHR
structure in native memory.Represents a pointer to / an array ofVkRectLayerKHR
structure(s) in native memory.Represents a pointer to aVkRefreshCycleDurationGOOGLE
structure in native memory.Represents a pointer to / an array ofVkRefreshCycleDurationGOOGLE
structure(s) in native memory.Represents a pointer to aVkRefreshObjectKHR
structure in native memory.Represents a pointer to / an array ofVkRefreshObjectKHR
structure(s) in native memory.Represents a pointer to aVkRefreshObjectListKHR
structure in native memory.Represents a pointer to / an array ofVkRefreshObjectListKHR
structure(s) in native memory.Represents a pointer to aVkReleaseCapturedPipelineDataInfoKHR
structure in native memory.Represents a pointer to / an array ofVkReleaseCapturedPipelineDataInfoKHR
structure(s) in native memory.Represents a pointer to aVkReleaseSwapchainImagesInfoEXT
structure in native memory.Represents a pointer to / an array ofVkReleaseSwapchainImagesInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderingAreaInfo
structure in native memory.Represents a pointer to / an array ofVkRenderingAreaInfo
structure(s) in native memory.Represents a pointer to aVkRenderingAttachmentInfo
structure in native memory.Represents a pointer to / an array ofVkRenderingAttachmentInfo
structure(s) in native memory.Represents a pointer to aVkRenderingAttachmentLocationInfo
structure in native memory.Represents a pointer to / an array ofVkRenderingAttachmentLocationInfo
structure(s) in native memory.Represents a pointer to aVkRenderingEndInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderingEndInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderingFragmentDensityMapAttachmentInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderingFragmentDensityMapAttachmentInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderingFragmentShadingRateAttachmentInfoKHR
structure in native memory.Represents a pointer to / an array ofVkRenderingFragmentShadingRateAttachmentInfoKHR
structure(s) in native memory.Represents a pointer to aVkRenderingInfo
structure in native memory.Represents a pointer to / an array ofVkRenderingInfo
structure(s) in native memory.Represents a pointer to aVkRenderingInputAttachmentIndexInfo
structure in native memory.Represents a pointer to / an array ofVkRenderingInputAttachmentIndexInfo
structure(s) in native memory.Represents a pointer to aVkRenderPassAttachmentBeginInfo
structure in native memory.Represents a pointer to / an array ofVkRenderPassAttachmentBeginInfo
structure(s) in native memory.Represents a pointer to aVkRenderPassBeginInfo
structure in native memory.Represents a pointer to / an array ofVkRenderPassBeginInfo
structure(s) in native memory.Represents a pointer to aVkRenderPassCreateInfo
structure in native memory.Represents a pointer to / an array ofVkRenderPassCreateInfo
structure(s) in native memory.Represents a pointer to aVkRenderPassCreateInfo2
structure in native memory.Represents a pointer to / an array ofVkRenderPassCreateInfo2
structure(s) in native memory.Represents a pointer to aVkRenderPassCreationControlEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassCreationControlEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassCreationFeedbackCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassCreationFeedbackCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassCreationFeedbackInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassCreationFeedbackInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassFragmentDensityMapCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassFragmentDensityMapCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassFragmentDensityMapOffsetEndInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassFragmentDensityMapOffsetEndInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassInputAttachmentAspectCreateInfo
structure in native memory.Represents a pointer to / an array ofVkRenderPassInputAttachmentAspectCreateInfo
structure(s) in native memory.Represents a pointer to aVkRenderPassMultiviewCreateInfo
structure in native memory.Represents a pointer to / an array ofVkRenderPassMultiviewCreateInfo
structure(s) in native memory.Represents a pointer to aVkRenderPassSampleLocationsBeginInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassSampleLocationsBeginInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassStripeBeginInfoARM
structure in native memory.Represents a pointer to / an array ofVkRenderPassStripeBeginInfoARM
structure(s) in native memory.Represents a pointer to aVkRenderPassStripeInfoARM
structure in native memory.Represents a pointer to / an array ofVkRenderPassStripeInfoARM
structure(s) in native memory.Represents a pointer to aVkRenderPassStripeSubmitInfoARM
structure in native memory.Represents a pointer to / an array ofVkRenderPassStripeSubmitInfoARM
structure(s) in native memory.Represents a pointer to aVkRenderPassSubpassFeedbackCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassSubpassFeedbackCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassSubpassFeedbackInfoEXT
structure in native memory.Represents a pointer to / an array ofVkRenderPassSubpassFeedbackInfoEXT
structure(s) in native memory.Represents a pointer to aVkRenderPassTileShadingCreateInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkRenderPassTileShadingCreateInfoQCOM
structure(s) in native memory.Represents a pointer to aVkRenderPassTransformBeginInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkRenderPassTransformBeginInfoQCOM
structure(s) in native memory.Represents a pointer to aVkResolveImageInfo2
structure in native memory.Represents a pointer to / an array ofVkResolveImageInfo2
structure(s) in native memory.Represents a pointer to aVkSampleLocationEXT
structure in native memory.Represents a pointer to / an array ofVkSampleLocationEXT
structure(s) in native memory.Represents a pointer to aVkSampleLocationsInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSampleLocationsInfoEXT
structure(s) in native memory.Represents a pointer to aVkSamplerBlockMatchWindowCreateInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkSamplerBlockMatchWindowCreateInfoQCOM
structure(s) in native memory.Represents a pointer to aVkSamplerBorderColorComponentMappingCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSamplerBorderColorComponentMappingCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkSamplerCaptureDescriptorDataInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSamplerCaptureDescriptorDataInfoEXT
structure(s) in native memory.Represents a pointer to aVkSamplerCreateInfo
structure in native memory.Represents a pointer to / an array ofVkSamplerCreateInfo
structure(s) in native memory.Represents a pointer to aVkSamplerCubicWeightsCreateInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkSamplerCubicWeightsCreateInfoQCOM
structure(s) in native memory.Represents a pointer to aVkSamplerCustomBorderColorCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSamplerCustomBorderColorCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkSamplerReductionModeCreateInfo
structure in native memory.Represents a pointer to / an array ofVkSamplerReductionModeCreateInfo
structure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionCreateInfo
structure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionCreateInfo
structure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionImageFormatProperties
structure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionImageFormatProperties
structure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionInfo
structure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionInfo
structure(s) in native memory.Represents a pointer to aVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkSamplerYcbcrConversionYcbcrDegammaCreateInfoQCOM
structure(s) in native memory.Represents a pointer to aVkSciSyncAttributesInfoNV
structure in native memory.Represents a pointer to / an array ofVkSciSyncAttributesInfoNV
structure(s) in native memory.Represents a pointer to aVkScreenBufferFormatPropertiesQNX
structure in native memory.Represents a pointer to / an array ofVkScreenBufferFormatPropertiesQNX
structure(s) in native memory.Represents a pointer to aVkScreenBufferPropertiesQNX
structure in native memory.Represents a pointer to / an array ofVkScreenBufferPropertiesQNX
structure(s) in native memory.Represents a pointer to aVkScreenSurfaceCreateInfoQNX
structure in native memory.Represents a pointer to / an array ofVkScreenSurfaceCreateInfoQNX
structure(s) in native memory.Represents a pointer to aVkSemaphoreCreateInfo
structure in native memory.Represents a pointer to / an array ofVkSemaphoreCreateInfo
structure(s) in native memory.Represents a pointer to aVkSemaphoreGetFdInfoKHR
structure in native memory.Represents a pointer to / an array ofVkSemaphoreGetFdInfoKHR
structure(s) in native memory.Represents a pointer to aVkSemaphoreGetSciSyncInfoNV
structure in native memory.Represents a pointer to / an array ofVkSemaphoreGetSciSyncInfoNV
structure(s) in native memory.Represents a pointer to aVkSemaphoreGetWin32HandleInfoKHR
structure in native memory.Represents a pointer to / an array ofVkSemaphoreGetWin32HandleInfoKHR
structure(s) in native memory.Represents a pointer to aVkSemaphoreGetZirconHandleInfoFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkSemaphoreGetZirconHandleInfoFUCHSIA
structure(s) in native memory.Represents a pointer to aVkSemaphoreSciSyncCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkSemaphoreSciSyncCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkSemaphoreSciSyncPoolCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkSemaphoreSciSyncPoolCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkSemaphoreSignalInfo
structure in native memory.Represents a pointer to / an array ofVkSemaphoreSignalInfo
structure(s) in native memory.Represents a pointer to aVkSemaphoreSubmitInfo
structure in native memory.Represents a pointer to / an array ofVkSemaphoreSubmitInfo
structure(s) in native memory.Represents a pointer to aVkSemaphoreTypeCreateInfo
structure in native memory.Represents a pointer to / an array ofVkSemaphoreTypeCreateInfo
structure(s) in native memory.Represents a pointer to aVkSemaphoreWaitInfo
structure in native memory.Represents a pointer to / an array ofVkSemaphoreWaitInfo
structure(s) in native memory.Represents a pointer to aVkSetDescriptorBufferOffsetsInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSetDescriptorBufferOffsetsInfoEXT
structure(s) in native memory.Represents a pointer to aVkSetLatencyMarkerInfoNV
structure in native memory.Represents a pointer to / an array ofVkSetLatencyMarkerInfoNV
structure(s) in native memory.Represents a pointer to aVkSetPresentConfigNV
structure in native memory.Represents a pointer to / an array ofVkSetPresentConfigNV
structure(s) in native memory.Represents a pointer to aVkSetStateFlagsIndirectCommandNV
structure in native memory.Represents a pointer to / an array ofVkSetStateFlagsIndirectCommandNV
structure(s) in native memory.Represents a pointer to aVkShaderCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkShaderCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkShaderModuleCreateInfo
structure in native memory.Represents a pointer to / an array ofVkShaderModuleCreateInfo
structure(s) in native memory.Represents a pointer to aVkShaderModuleIdentifierEXT
structure in native memory.Represents a pointer to / an array ofVkShaderModuleIdentifierEXT
structure(s) in native memory.Represents a pointer to aVkShaderModuleValidationCacheCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkShaderModuleValidationCacheCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkShaderResourceUsageAMD
structure in native memory.Represents a pointer to / an array ofVkShaderResourceUsageAMD
structure(s) in native memory.Represents a pointer to aVkShaderStatisticsInfoAMD
structure in native memory.Represents a pointer to / an array ofVkShaderStatisticsInfoAMD
structure(s) in native memory.Represents a pointer to aVkShadingRatePaletteNV
structure in native memory.Represents a pointer to / an array ofVkShadingRatePaletteNV
structure(s) in native memory.Represents a pointer to aVkSharedPresentSurfaceCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkSharedPresentSurfaceCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkSparseBufferMemoryBindInfo
structure in native memory.Represents a pointer to / an array ofVkSparseBufferMemoryBindInfo
structure(s) in native memory.Represents a pointer to aVkSparseImageFormatProperties
structure in native memory.Represents a pointer to / an array ofVkSparseImageFormatProperties
structure(s) in native memory.Represents a pointer to aVkSparseImageFormatProperties2
structure in native memory.Represents a pointer to / an array ofVkSparseImageFormatProperties2
structure(s) in native memory.Represents a pointer to aVkSparseImageMemoryBind
structure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryBind
structure(s) in native memory.Represents a pointer to aVkSparseImageMemoryBindInfo
structure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryBindInfo
structure(s) in native memory.Represents a pointer to aVkSparseImageMemoryRequirements
structure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryRequirements
structure(s) in native memory.Represents a pointer to aVkSparseImageMemoryRequirements2
structure in native memory.Represents a pointer to / an array ofVkSparseImageMemoryRequirements2
structure(s) in native memory.Represents a pointer to aVkSparseImageOpaqueMemoryBindInfo
structure in native memory.Represents a pointer to / an array ofVkSparseImageOpaqueMemoryBindInfo
structure(s) in native memory.Represents a pointer to aVkSparseMemoryBind
structure in native memory.Represents a pointer to / an array ofVkSparseMemoryBind
structure(s) in native memory.Represents a pointer to aVkSpecializationInfo
structure in native memory.Represents a pointer to / an array ofVkSpecializationInfo
structure(s) in native memory.Represents a pointer to aVkSpecializationMapEntry
structure in native memory.Represents a pointer to / an array ofVkSpecializationMapEntry
structure(s) in native memory.Represents a pointer to aVkSRTDataNV
structure in native memory.Represents a pointer to / an array ofVkSRTDataNV
structure(s) in native memory.Represents a pointer to aVkStencilOpState
structure in native memory.Represents a pointer to / an array ofVkStencilOpState
structure(s) in native memory.Represents a pointer to aVkStreamDescriptorSurfaceCreateInfoGGP
structure in native memory.Represents a pointer to / an array ofVkStreamDescriptorSurfaceCreateInfoGGP
structure(s) in native memory.Represents a pointer to aVkStridedDeviceAddressNV
structure in native memory.Represents a pointer to / an array ofVkStridedDeviceAddressNV
structure(s) in native memory.Represents a pointer to aVkStridedDeviceAddressRegionKHR
structure in native memory.Represents a pointer to / an array ofVkStridedDeviceAddressRegionKHR
structure(s) in native memory.Represents a pointer to aVkSubmitInfo
structure in native memory.Represents a pointer to / an array ofVkSubmitInfo
structure(s) in native memory.Represents a pointer to aVkSubmitInfo2
structure in native memory.Represents a pointer to / an array ofVkSubmitInfo2
structure(s) in native memory.Represents a pointer to aVkSubpassBeginInfo
structure in native memory.Represents a pointer to / an array ofVkSubpassBeginInfo
structure(s) in native memory.Represents a pointer to aVkSubpassDependency
structure in native memory.Represents a pointer to / an array ofVkSubpassDependency
structure(s) in native memory.Represents a pointer to aVkSubpassDependency2
structure in native memory.Represents a pointer to / an array ofVkSubpassDependency2
structure(s) in native memory.Represents a pointer to aVkSubpassDescription
structure in native memory.Represents a pointer to / an array ofVkSubpassDescription
structure(s) in native memory.Represents a pointer to aVkSubpassDescription2
structure in native memory.Represents a pointer to / an array ofVkSubpassDescription2
structure(s) in native memory.Represents a pointer to aVkSubpassDescriptionDepthStencilResolve
structure in native memory.Represents a pointer to / an array ofVkSubpassDescriptionDepthStencilResolve
structure(s) in native memory.Represents a pointer to aVkSubpassEndInfo
structure in native memory.Represents a pointer to / an array ofVkSubpassEndInfo
structure(s) in native memory.Represents a pointer to aVkSubpassResolvePerformanceQueryEXT
structure in native memory.Represents a pointer to / an array ofVkSubpassResolvePerformanceQueryEXT
structure(s) in native memory.Represents a pointer to aVkSubpassSampleLocationsEXT
structure in native memory.Represents a pointer to / an array ofVkSubpassSampleLocationsEXT
structure(s) in native memory.Represents a pointer to aVkSubpassShadingPipelineCreateInfoHUAWEI
structure in native memory.Represents a pointer to / an array ofVkSubpassShadingPipelineCreateInfoHUAWEI
structure(s) in native memory.Represents a pointer to aVkSubresourceHostMemcpySize
structure in native memory.Represents a pointer to / an array ofVkSubresourceHostMemcpySize
structure(s) in native memory.Represents a pointer to aVkSubresourceLayout
structure in native memory.Represents a pointer to / an array ofVkSubresourceLayout
structure(s) in native memory.Represents a pointer to aVkSubresourceLayout2
structure in native memory.Represents a pointer to / an array ofVkSubresourceLayout2
structure(s) in native memory.Represents a pointer to aVkSurfaceCapabilities2EXT
structure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilities2EXT
structure(s) in native memory.Represents a pointer to aVkSurfaceCapabilities2KHR
structure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilities2KHR
structure(s) in native memory.Represents a pointer to aVkSurfaceCapabilitiesFullScreenExclusiveEXT
structure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilitiesFullScreenExclusiveEXT
structure(s) in native memory.Represents a pointer to aVkSurfaceCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkSurfaceCapabilitiesPresentBarrierNV
structure in native memory.Represents a pointer to / an array ofVkSurfaceCapabilitiesPresentBarrierNV
structure(s) in native memory.Represents a pointer to aVkSurfaceFormat2KHR
structure in native memory.Represents a pointer to / an array ofVkSurfaceFormat2KHR
structure(s) in native memory.Represents a pointer to aVkSurfaceFormatKHR
structure in native memory.Represents a pointer to / an array ofVkSurfaceFormatKHR
structure(s) in native memory.Represents a pointer to aVkSurfaceFullScreenExclusiveInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSurfaceFullScreenExclusiveInfoEXT
structure(s) in native memory.Represents a pointer to aVkSurfaceFullScreenExclusiveWin32InfoEXT
structure in native memory.Represents a pointer to / an array ofVkSurfaceFullScreenExclusiveWin32InfoEXT
structure(s) in native memory.Represents a pointer to aVkSurfacePresentModeCompatibilityEXT
structure in native memory.Represents a pointer to / an array ofVkSurfacePresentModeCompatibilityEXT
structure(s) in native memory.Represents a pointer to aVkSurfacePresentModeEXT
structure in native memory.Represents a pointer to / an array ofVkSurfacePresentModeEXT
structure(s) in native memory.Represents a pointer to aVkSurfacePresentScalingCapabilitiesEXT
structure in native memory.Represents a pointer to / an array ofVkSurfacePresentScalingCapabilitiesEXT
structure(s) in native memory.Represents a pointer to aVkSurfaceProtectedCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkSurfaceProtectedCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkSwapchainCounterCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSwapchainCounterCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkSwapchainCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkSwapchainCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkSwapchainDisplayNativeHdrCreateInfoAMD
structure in native memory.Represents a pointer to / an array ofVkSwapchainDisplayNativeHdrCreateInfoAMD
structure(s) in native memory.Represents a pointer to aVkSwapchainLatencyCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkSwapchainLatencyCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkSwapchainPresentBarrierCreateInfoNV
structure in native memory.Represents a pointer to / an array ofVkSwapchainPresentBarrierCreateInfoNV
structure(s) in native memory.Represents a pointer to aVkSwapchainPresentFenceInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSwapchainPresentFenceInfoEXT
structure(s) in native memory.Represents a pointer to aVkSwapchainPresentModeInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSwapchainPresentModeInfoEXT
structure(s) in native memory.Represents a pointer to aVkSwapchainPresentModesCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSwapchainPresentModesCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkSwapchainPresentScalingCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkSwapchainPresentScalingCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkSysmemColorSpaceFUCHSIA
structure in native memory.Represents a pointer to / an array ofVkSysmemColorSpaceFUCHSIA
structure(s) in native memory.Represents a pointer to aVkTextureLODGatherFormatPropertiesAMD
structure in native memory.Represents a pointer to / an array ofVkTextureLODGatherFormatPropertiesAMD
structure(s) in native memory.Represents a pointer to aVkTileMemoryBindInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkTileMemoryBindInfoQCOM
structure(s) in native memory.Represents a pointer to aVkTileMemoryRequirementsQCOM
structure in native memory.Represents a pointer to / an array ofVkTileMemoryRequirementsQCOM
structure(s) in native memory.Represents a pointer to aVkTileMemorySizeInfoQCOM
structure in native memory.Represents a pointer to / an array ofVkTileMemorySizeInfoQCOM
structure(s) in native memory.Represents a pointer to aVkTilePropertiesQCOM
structure in native memory.Represents a pointer to / an array ofVkTilePropertiesQCOM
structure(s) in native memory.Represents a pointer to aVkTimelineSemaphoreSubmitInfo
structure in native memory.Represents a pointer to / an array ofVkTimelineSemaphoreSubmitInfo
structure(s) in native memory.Represents a pointer to aVkTraceRaysIndirectCommand2KHR
structure in native memory.Represents a pointer to / an array ofVkTraceRaysIndirectCommand2KHR
structure(s) in native memory.Represents a pointer to aVkTraceRaysIndirectCommandKHR
structure in native memory.Represents a pointer to / an array ofVkTraceRaysIndirectCommandKHR
structure(s) in native memory.Represents a pointer to aVkTransformMatrixKHR
structure in native memory.Represents a pointer to / an array ofVkTransformMatrixKHR
structure(s) in native memory.Represents a pointer to aVkValidationCacheCreateInfoEXT
structure in native memory.Represents a pointer to / an array ofVkValidationCacheCreateInfoEXT
structure(s) in native memory.Represents a pointer to aVkValidationFeaturesEXT
structure in native memory.Represents a pointer to / an array ofVkValidationFeaturesEXT
structure(s) in native memory.Represents a pointer to aVkValidationFlagsEXT
structure in native memory.Represents a pointer to / an array ofVkValidationFlagsEXT
structure(s) in native memory.Represents a pointer to aVkVertexInputAttributeDescription
structure in native memory.Represents a pointer to / an array ofVkVertexInputAttributeDescription
structure(s) in native memory.Represents a pointer to aVkVertexInputAttributeDescription2EXT
structure in native memory.Represents a pointer to / an array ofVkVertexInputAttributeDescription2EXT
structure(s) in native memory.Represents a pointer to aVkVertexInputBindingDescription
structure in native memory.Represents a pointer to / an array ofVkVertexInputBindingDescription
structure(s) in native memory.Represents a pointer to aVkVertexInputBindingDescription2EXT
structure in native memory.Represents a pointer to / an array ofVkVertexInputBindingDescription2EXT
structure(s) in native memory.Represents a pointer to aVkVertexInputBindingDivisorDescription
structure in native memory.Represents a pointer to / an array ofVkVertexInputBindingDivisorDescription
structure(s) in native memory.Represents a pointer to aVkVideoBeginCodingInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoBeginCodingInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoCodingControlInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoCodingControlInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1CapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1CapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1DpbSlotInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1DpbSlotInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1InlineSessionParametersInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1InlineSessionParametersInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1PictureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1PictureInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1ProfileInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1ProfileInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeAV1SessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeAV1SessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH264CapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264CapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH264DpbSlotInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264DpbSlotInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH264InlineSessionParametersInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264InlineSessionParametersInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH264PictureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264PictureInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH264ProfileInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264ProfileInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH264SessionParametersAddInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264SessionParametersAddInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH264SessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH264SessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH265CapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265CapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH265DpbSlotInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265DpbSlotInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH265InlineSessionParametersInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265InlineSessionParametersInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH265PictureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265PictureInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH265ProfileInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265ProfileInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH265SessionParametersAddInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265SessionParametersAddInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeH265SessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeH265SessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoDecodeUsageInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoDecodeUsageInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1CapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1CapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1DpbSlotInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1DpbSlotInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1FrameSizeKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1FrameSizeKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1GopRemainingFrameInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1GopRemainingFrameInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1PictureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1PictureInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1ProfileInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1ProfileInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1QIndexKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1QIndexKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1QualityLevelPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1QualityLevelPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1QuantizationMapCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1QuantizationMapCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1RateControlInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1RateControlInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1RateControlLayerInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1RateControlLayerInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1SessionCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1SessionCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeAV1SessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeAV1SessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264CapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264CapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264DpbSlotInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264DpbSlotInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264FrameSizeKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264FrameSizeKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264GopRemainingFrameInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264GopRemainingFrameInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264NaluSliceInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264NaluSliceInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264PictureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264PictureInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264ProfileInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264ProfileInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264QpKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264QpKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264QualityLevelPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264QualityLevelPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264QuantizationMapCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264QuantizationMapCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264RateControlInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264RateControlInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264RateControlLayerInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264RateControlLayerInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersAddInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersAddInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersFeedbackInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersFeedbackInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH264SessionParametersGetInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH264SessionParametersGetInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265CapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265CapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265DpbSlotInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265DpbSlotInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265FrameSizeKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265FrameSizeKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265GopRemainingFrameInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265GopRemainingFrameInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265NaluSliceSegmentInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265NaluSliceSegmentInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265PictureInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265PictureInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265ProfileInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265ProfileInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265QpKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265QpKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265QualityLevelPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265QualityLevelPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265QuantizationMapCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265QuantizationMapCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265RateControlInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265RateControlInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265RateControlLayerInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265RateControlLayerInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersAddInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersAddInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersFeedbackInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersFeedbackInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeH265SessionParametersGetInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeH265SessionParametersGetInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeQualityLevelInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeQualityLevelInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeQualityLevelPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeQualityLevelPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeQuantizationMapCapabilitiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeQuantizationMapCapabilitiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeQuantizationMapInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeQuantizationMapInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeQuantizationMapSessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeRateControlInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeRateControlInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeRateControlLayerInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeRateControlLayerInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeSessionParametersFeedbackInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeSessionParametersFeedbackInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeSessionParametersGetInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeSessionParametersGetInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEncodeUsageInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEncodeUsageInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoEndCodingInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoEndCodingInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoFormatAV1QuantizationMapPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoFormatAV1QuantizationMapPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoFormatH265QuantizationMapPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoFormatH265QuantizationMapPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoFormatPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoFormatPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoFormatQuantizationMapPropertiesKHR
structure in native memory.Represents a pointer to / an array ofVkVideoFormatQuantizationMapPropertiesKHR
structure(s) in native memory.Represents a pointer to aVkVideoInlineQueryInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoInlineQueryInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoPictureResourceInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoPictureResourceInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoProfileInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoProfileInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoProfileListInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoProfileListInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoReferenceSlotInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoReferenceSlotInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoSessionCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoSessionCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoSessionMemoryRequirementsKHR
structure in native memory.Represents a pointer to / an array ofVkVideoSessionMemoryRequirementsKHR
structure(s) in native memory.Represents a pointer to aVkVideoSessionParametersCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoSessionParametersCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkVideoSessionParametersUpdateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkVideoSessionParametersUpdateInfoKHR
structure(s) in native memory.Represents a pointer to aVkViewport
structure in native memory.Represents a pointer to / an array ofVkViewport
structure(s) in native memory.Represents a pointer to aVkViewportSwizzleNV
structure in native memory.Represents a pointer to / an array ofVkViewportSwizzleNV
structure(s) in native memory.Represents a pointer to aVkViewportWScalingNV
structure in native memory.Represents a pointer to / an array ofVkViewportWScalingNV
structure(s) in native memory.Represents a pointer to aVkViSurfaceCreateInfoNN
structure in native memory.Represents a pointer to / an array ofVkViSurfaceCreateInfoNN
structure(s) in native memory.Represents a pointer to aVkWaylandSurfaceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkWaylandSurfaceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkWin32KeyedMutexAcquireReleaseInfoKHR
structure in native memory.Represents a pointer to / an array ofVkWin32KeyedMutexAcquireReleaseInfoKHR
structure(s) in native memory.Represents a pointer to aVkWin32KeyedMutexAcquireReleaseInfoNV
structure in native memory.Represents a pointer to / an array ofVkWin32KeyedMutexAcquireReleaseInfoNV
structure(s) in native memory.Represents a pointer to aVkWin32SurfaceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkWin32SurfaceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkWriteDescriptorSet
structure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSet
structure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetAccelerationStructureKHR
structure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetAccelerationStructureKHR
structure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetAccelerationStructureNV
structure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetAccelerationStructureNV
structure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetInlineUniformBlock
structure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetInlineUniformBlock
structure(s) in native memory.Represents a pointer to aVkWriteDescriptorSetPartitionedAccelerationStructureNV
structure in native memory.Represents a pointer to / an array ofVkWriteDescriptorSetPartitionedAccelerationStructureNV
structure(s) in native memory.Represents a pointer to aVkWriteIndirectExecutionSetPipelineEXT
structure in native memory.Represents a pointer to / an array ofVkWriteIndirectExecutionSetPipelineEXT
structure(s) in native memory.Represents a pointer to aVkWriteIndirectExecutionSetShaderEXT
structure in native memory.Represents a pointer to / an array ofVkWriteIndirectExecutionSetShaderEXT
structure(s) in native memory.Represents a pointer to aVkXcbSurfaceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkXcbSurfaceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkXlibSurfaceCreateInfoKHR
structure in native memory.Represents a pointer to / an array ofVkXlibSurfaceCreateInfoKHR
structure(s) in native memory.Represents a pointer to aVkXYColorEXT
structure in native memory.Represents a pointer to / an array ofVkXYColorEXT
structure(s) in native memory.