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;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • memoryClockRatioToPeak is the returned ratio of the current memory clock to the maximum memory clock.
  • engineClockRatioToPeak is the returned ratio of the current engine clock to the maximum engine clock.
  • memoryClockFrequency is the current memory clock frequency in MHz.
  • engineClockFrequency is 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