Function Prototype
vkGetPhysicalDeviceProperties
Returns properties of a physical device
To query general properties of physical devices once enumerated, call:
void vkGetPhysicalDeviceProperties(
VkPhysicalDevice physicalDevice,
VkPhysicalDeviceProperties* pProperties);
physicalDeviceis the handle to the physical device whose properties will be queried.pPropertiesis a pointer to a VkPhysicalDeviceProperties structure in which properties are returned.
Valid Usage (Implicit)
VUID-vkGetPhysicalDeviceProperties-physicalDevice-parameter
physicalDevice must be a valid VkPhysicalDevice handle
VUID-vkGetPhysicalDeviceProperties-pProperties-parameter
pProperties must be a valid pointer to a VkPhysicalDeviceProperties structure