Structures
VkPipelinePropertiesIdentifierEXT
Structure used to retrieve pipeline properties
The VkPipelinePropertiesIdentifierEXT structure is defined as:
typedef struct VkPipelinePropertiesIdentifierEXT {
VkStructureType sType;
void* pNext;
uint8_t pipelineIdentifier[VK_UUID_SIZE];
} VkPipelinePropertiesIdentifierEXT;
pub struct PipelinePropertiesIdentifierEXT {
s_type: vk::StructureType,
p_next: *mut c_void,
pipeline_identifier: [u8; VK_UUID_SIZE],
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.pipelineIdentifieris an array ofVK_UUID_SIZEuint8_tvalues into which the pipeline identifier will be written.
Valid Usage (Implicit)
VUID-VkPipelinePropertiesIdentifierEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_PIPELINE_PROPERTIES_IDENTIFIER_EXT
VUID-VkPipelinePropertiesIdentifierEXT-pNext-pNext
pNext must be NULL
Type
Structures