Structures
VkPerformanceOverrideInfoINTEL
Performance override information
The VkPerformanceOverrideInfoINTEL structure is defined as:
typedef struct VkPerformanceOverrideInfoINTEL {
VkStructureType sType;
const void* pNext;
VkPerformanceOverrideTypeINTEL type;
VkBool32 enable;
uint64_t parameter;
} VkPerformanceOverrideInfoINTEL;
pub struct PerformanceOverrideInfoINTEL {
s_type: vk::StructureType,
p_next: *const c_void,
type: vk::PerformanceOverrideTypeINTEL,
enable: vk::Bool32,
parameter: u64,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.typeis the particular VkPerformanceOverrideTypeINTEL to set.enabledefines whether the override is enabled.parameteris a potential required parameter for the override.
Valid Usage (Implicit)
VUID-VkPerformanceOverrideInfoINTEL-sType-sType
sType must be VK_STRUCTURE_TYPE_PERFORMANCE_OVERRIDE_INFO_INTEL
VUID-VkPerformanceOverrideInfoINTEL-pNext-pNext
pNext must be NULL
VUID-VkPerformanceOverrideInfoINTEL-type-parameter
type must be a valid VkPerformanceOverrideTypeINTEL value
Type
Structures