Structures
VkInitializePerformanceApiInfoINTEL
Structure specifying parameters of initialize of the device
The VkInitializePerformanceApiInfoINTEL structure is defined as :
typedef struct VkInitializePerformanceApiInfoINTEL {
VkStructureType sType;
const void* pNext;
void* pUserData;
} VkInitializePerformanceApiInfoINTEL;
pub struct InitializePerformanceApiInfoINTEL {
s_type: vk::StructureType,
p_next: *const c_void,
p_user_data: *mut c_void,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.pUserDatais NULL or a pointer for application data.
Valid Usage (Implicit)
VUID-VkInitializePerformanceApiInfoINTEL-sType-sType
sType must be VK_STRUCTURE_TYPE_INITIALIZE_PERFORMANCE_API_INFO_INTEL
VUID-VkInitializePerformanceApiInfoINTEL-pNext-pNext
pNext must be NULL
Type
Structures