Structures
VkPipelineCreationFeedback
Feedback about the creation of a pipeline or pipeline stage
The VkPipelineCreationFeedback structure is defined as:
typedef struct VkPipelineCreationFeedback {
VkPipelineCreationFeedbackFlags flags;
uint64_t duration;
} VkPipelineCreationFeedback;
pub struct PipelineCreationFeedback {
flags: vk::PipelineCreationFeedbackFlags,
duration: u64,
}
typedef VkPipelineCreationFeedback VkPipelineCreationFeedbackEXT;
type PipelineCreationFeedbackEXT = vk::PipelineCreationFeedback;
flagsis a bitmask of VkPipelineCreationFeedbackFlagBits providing feedback about the creation of a pipeline or of a pipeline stage.durationis the duration spent creating a pipeline or pipeline stage in nanoseconds.
If the VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT is not set in
flags, an implementation must not set any other bits in flags,
and the values of all other VkPipelineCreationFeedback data members
are undefined.
Parent
VK_VERSION_1_3Type
Structures