Structures
VkGpaDeviceGetClockInfoAMD
Structure containing returned clock ratios or clock mode to set
The VkGpaDeviceGetClockInfoAMD structure is defined as:
typedef struct VkGpaDeviceGetClockInfoAMD {
VkStructureType sType;
void* pNext;
float memoryClockRatioToPeak;
float engineClockRatioToPeak;
uint32_t memoryClockFrequency;
uint32_t engineClockFrequency;
} VkGpaDeviceGetClockInfoAMD;
pub struct GpaDeviceGetClockInfoAMD {
s_type: vk::StructureType,
p_next: *mut c_void,
memory_clock_ratio_to_peak: f32,
engine_clock_ratio_to_peak: f32,
memory_clock_frequency: u32,
engine_clock_frequency: u32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.memoryClockRatioToPeakis the returned ratio of the current memory clock to the maximum memory clock.engineClockRatioToPeakis the returned ratio of the current engine clock to the maximum engine clock.memoryClockFrequencyis the current memory clock frequency in MHz.engineClockFrequencyis the current engine clock frequency in MHz.
Valid Usage (Implicit)
VUID-VkGpaDeviceGetClockInfoAMD-sType-sType
sType must be VK_STRUCTURE_TYPE_GPA_DEVICE_GET_CLOCK_INFO_AMD
VUID-VkGpaDeviceGetClockInfoAMD-pNext-pNext
pNext must be NULL
Parent
VK_AMD_gpa_interfaceType
Structures