VkGpaDeviceGetClockInfoAMD(3)
C Specification
The VkGpaDeviceGetClockInfoAMD structure is defined as:
// Provided by VK_AMD_gpa_interface
typedef struct VkGpaDeviceGetClockInfoAMD {
VkStructureType sType;
void* pNext;
float memoryClockRatioToPeak;
float engineClockRatioToPeak;
uint32_t memoryClockFrequency;
uint32_t engineClockFrequency;
} VkGpaDeviceGetClockInfoAMD;
Members
-
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.
Document Notes
For more information, see the Vulkan Specification.
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.