Structures
VkPerformanceCounterARM
Structure providing information about a counter
The VkPerformanceCounterARM structure is defined as:
typedef struct VkPerformanceCounterARM {
VkStructureType sType;
void* pNext;
uint32_t counterID;
} VkPerformanceCounterARM;
pub struct PerformanceCounterARM {
s_type: vk::StructureType,
p_next: *mut c_void,
counter_id: u32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.counterIDis an identifier for the counter of the physical device.
Valid Usage (Implicit)
VUID-VkPerformanceCounterARM-sType-sType
sType must be VK_STRUCTURE_TYPE_PERFORMANCE_COUNTER_ARM
VUID-VkPerformanceCounterARM-pNext-pNext
pNext must be NULL
Type
Structures